From f2caa9234728fbf13523fb7c0647397f7147c5bd Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Mon, 7 Mar 2016 23:28:56 +0100 Subject: [PATCH] scripts/apple/: added Info.plist and module.modulemap (improves #34) --- scripts/apple/Info.plist | 28 ++++++++++++++++++++++++++++ scripts/apple/Modules/module.modulemap | 6 ++++++ 2 files changed, 34 insertions(+) create mode 100644 scripts/apple/Info.plist create mode 100644 scripts/apple/Modules/module.modulemap diff --git a/scripts/apple/Info.plist b/scripts/apple/Info.plist new file mode 100644 index 00000000..e5ac0ba1 --- /dev/null +++ b/scripts/apple/Info.plist @@ -0,0 +1,28 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + org.aubio.$(PRODUCT_NAME:rfc1034identifier) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSHumanReadableCopyright + Copyright © 2015 Paul Brossier. All rights reserved. + NSPrincipalClass + + + diff --git a/scripts/apple/Modules/module.modulemap b/scripts/apple/Modules/module.modulemap new file mode 100644 index 00000000..0fba24cb --- /dev/null +++ b/scripts/apple/Modules/module.modulemap @@ -0,0 +1,6 @@ +framework module aubio { + umbrella header "aubio.h" + + export * + module * { export * } +} -- 2.11.0