From: Paul Brossier Date: Mon, 7 Mar 2016 22:28:56 +0000 (+0100) Subject: scripts/apple/: added Info.plist and module.modulemap (improves #34) X-Git-Tag: 0.4.4~300^2~326 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=f2caa9234728fbf13523fb7c0647397f7147c5bd;p=aubio.git scripts/apple/: added Info.plist and module.modulemap (improves #34) --- 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 * } +}