migrating to the latest JUCE version
This commit is contained in:
31
deps/clap-juce-extensions/cmake/macos_bundle/CLAP_Info.plist.in
vendored
Normal file
31
deps/clap-juce-extensions/cmake/macos_bundle/CLAP_Info.plist.in
vendored
Normal file
@ -0,0 +1,31 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist>
|
||||
<dict>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>${MACOSX_BUNDLE_EXECUTABLE_NAME}</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>${MACOSX_BUNDLE_INFO_STRING}</string>
|
||||
<key>CFBundleIconFile</key>
|
||||
<string>clap.icns</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>${MACOSX_BUNDLE_GUI_IDENTIFIER}</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>${MACOSX_BUNDLE_BUNDLE_NAME}</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>BNDL</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>${MACOSX_BUNDLE_SHORT_VERSION_STRING}</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>${MACOSX_BUNDLE_BUNDLE_VERSION}</string>
|
||||
<key>CSResourcesFileMapped</key>
|
||||
<true/>
|
||||
<key>NSHumanReadableCopyright</key>
|
||||
<string>${MACOSX_BUNDLE_COPYRIGHT}</string>
|
||||
</dict>
|
||||
</plist>
|
1
deps/clap-juce-extensions/cmake/macos_bundle/PkgInfo
vendored
Normal file
1
deps/clap-juce-extensions/cmake/macos_bundle/PkgInfo
vendored
Normal file
@ -0,0 +1 @@
|
||||
BNDL????
|
BIN
deps/clap-juce-extensions/cmake/macos_bundle/clap.icns
vendored
Normal file
BIN
deps/clap-juce-extensions/cmake/macos_bundle/clap.icns
vendored
Normal file
Binary file not shown.
24
deps/clap-juce-extensions/cmake/macos_bundle/make-icns.sh
vendored
Normal file
24
deps/clap-juce-extensions/cmake/macos_bundle/make-icns.sh
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
# This generates the clap.icns file from the artwork PNG
|
||||
|
||||
IN=../../clap-libs/clap/artwork/clap-simple-logo-black.png
|
||||
|
||||
mkdir OUT
|
||||
mkdir OUT/PNG
|
||||
convert -geometry 512 $IN OUT/PNG/icon_512.png
|
||||
convert -geometry 256 $IN OUT/PNG/icon_256.png
|
||||
convert -geometry 128 $IN OUT/PNG/icon_128.png
|
||||
convert -geometry 64 $IN OUT/PNG/icon_64.png
|
||||
|
||||
|
||||
identify OUT/PNG/*png
|
||||
|
||||
|
||||
mkdir OUT/SET.iconset
|
||||
sips -z 512 512 OUT/PNG/icon_512.png --out OUT/SET.iconset/icon_512x512.png
|
||||
sips -z 256 256 OUT/PNG/icon_512.png --out OUT/SET.iconset/icon_256x256.png
|
||||
sips -z 128 128 OUT/PNG/icon_512.png --out OUT/SET.iconset/icon_128x128.png
|
||||
sips -z 64 64 OUT/PNG/icon_512.png --out OUT/SET.iconset/icon_64x64.png
|
||||
|
||||
iconutil -c icns -o clap.icns OUT/SET.iconset
|
||||
|
||||
rm -rf OUT
|
Reference in New Issue
Block a user