mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-25 21:31:25 +00:00
build script: add missing frameworks to fluidsynth .pc file
This commit is contained in:
parent
ec686a78a8
commit
78d2998b4c
1 changed files with 3 additions and 0 deletions
3
build.py
3
build.py
|
@ -803,6 +803,9 @@ class FluidSynthTarget(CMakeStaticDependencyTarget):
|
||||||
if line.startswith('Version:'):
|
if line.startswith('Version:'):
|
||||||
# Add instpatch as private dependency which pulls all necessary libraries
|
# Add instpatch as private dependency which pulls all necessary libraries
|
||||||
return line + 'Requires.private: libinstpatch-1.0' + os.linesep
|
return line + 'Requires.private: libinstpatch-1.0' + os.linesep
|
||||||
|
elif line.startswith('Libs:'):
|
||||||
|
# Add missing system frameworks to link with
|
||||||
|
return line + 'Libs.private: -framework AudioUnit -framework CoreAudio -framework CoreMIDI' + os.linesep
|
||||||
|
|
||||||
return line
|
return line
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue