apple: build static library

Move build rules from src/output/plugins/meson.build
This commit is contained in:
Max Kellermann
2020-07-02 13:39:15 +02:00
parent b1fba8d3d7
commit 756f0b8027
3 changed files with 30 additions and 12 deletions

27
src/apple/meson.build Normal file
View File

@@ -0,0 +1,27 @@
if not is_darwin
apple_dep = dependency('', required: false)
subdir_done()
endif
audiounit_dep = declare_dependency(
link_args: ['-framework', 'AudioUnit', '-framework', 'CoreAudio', '-framework', 'CoreServices'],
dependencies: [
boost_dep,
],
)
apple = static_library(
'apple',
'Throw.cxx',
include_directories: inc,
dependencies: [
audiounit_dep,
],
)
apple_dep = declare_dependency(
link_with: apple,
dependencies: [
audiounit_dep,
],
)