commit
90f34bd7ec
5 changed files with 33 additions and 1 deletions
|
|
@ -16,6 +16,17 @@ else()
|
||||||
set(PUREDATA_SUFFIX ".pd_linux")
|
set(PUREDATA_SUFFIX ".pd_linux")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
if(APPLE)
|
||||||
|
set(PDPLUGIN_INSTALL_DIR "$ENV{HOME}/Library/Pd" CACHE STRING
|
||||||
|
"Install destination for Puredata bundle [default: $ENV{HOME}/Library/Pd]")
|
||||||
|
elseif(MSVC)
|
||||||
|
set(PDPLUGIN_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/Pd/extra" CACHE STRING
|
||||||
|
"Install destination for Puredata bundle [default: ${CMAKE_INSTALL_PREFIX}/Pd/extra]")
|
||||||
|
else()
|
||||||
|
set(PDPLUGIN_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/lib/pd/extra" CACHE STRING
|
||||||
|
"Install destination for Puredata bundle [default: ${CMAKE_INSTALL_PREFIX}/lib/pd/extra]")
|
||||||
|
endif()
|
||||||
|
|
||||||
if(WIN32)
|
if(WIN32)
|
||||||
add_library(pdex-implib STATIC IMPORTED)
|
add_library(pdex-implib STATIC IMPORTED)
|
||||||
if(MSVC)
|
if(MSVC)
|
||||||
|
|
|
||||||
|
|
@ -36,6 +36,16 @@ if(MINGW)
|
||||||
PROPERTY LINK_FLAGS " -static")
|
PROPERTY LINK_FLAGS " -static")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
# Copy resources
|
||||||
copy_puredata_resources(sfizz_puredata
|
copy_puredata_resources(sfizz_puredata
|
||||||
"${CMAKE_CURRENT_SOURCE_DIR}"
|
"${CMAKE_CURRENT_SOURCE_DIR}"
|
||||||
"${PUREDATA_BINARY_DIR}")
|
"${PUREDATA_BINARY_DIR}")
|
||||||
|
|
||||||
|
# Installation
|
||||||
|
if(NOT MSVC)
|
||||||
|
install(DIRECTORY "${PUREDATA_BINARY_DIR}" DESTINATION "${PDPLUGIN_INSTALL_DIR}"
|
||||||
|
COMPONENT "puredata")
|
||||||
|
bundle_dylibs(puredata
|
||||||
|
"${PDPLUGIN_INSTALL_DIR}/sfizz/sfizz${PUREDATA_SUFFIX}"
|
||||||
|
COMPONENT "puredata")
|
||||||
|
endif()
|
||||||
|
|
|
||||||
|
|
@ -31,6 +31,13 @@ else
|
||||||
codesign --sign "${CODESIGN_IDENTITY}" --keychain build.keychain --force --verbose \
|
codesign --sign "${CODESIGN_IDENTITY}" --keychain build.keychain --force --verbose \
|
||||||
"${INSTALL_DIR}"/sfizz.lv2/Contents/Frameworks/*.dylib
|
"${INSTALL_DIR}"/sfizz.lv2/Contents/Frameworks/*.dylib
|
||||||
fi
|
fi
|
||||||
|
# code-sign Puredata and dylibs
|
||||||
|
codesign --sign "${CODESIGN_IDENTITY}" --keychain build.keychain --force --verbose \
|
||||||
|
"${INSTALL_DIR}"/Puredata/*/*.pd_darwin
|
||||||
|
if ls "${INSTALL_DIR}"/Puredata/*/*.dylib &> /dev/null; then
|
||||||
|
codesign --sign "${CODESIGN_IDENTITY}" --keychain build.keychain --force --verbose \
|
||||||
|
"${INSTALL_DIR}"/Puredata/*/*.dylib
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Create the DMG
|
# Create the DMG
|
||||||
|
|
@ -39,12 +46,13 @@ cat > sfizz-dmg.json << EOF
|
||||||
"title": "sfizz",
|
"title": "sfizz",
|
||||||
"background": "${APPVEYOR_BUILD_FOLDER}/mac/dmg-back.png",
|
"background": "${APPVEYOR_BUILD_FOLDER}/mac/dmg-back.png",
|
||||||
"window": {
|
"window": {
|
||||||
"size": { "width": 500, "height": 500 }
|
"size": { "width": 650, "height": 500 }
|
||||||
},
|
},
|
||||||
"contents": [
|
"contents": [
|
||||||
{ "x": 100, "y": 50, "type": "file", "path": "${INSTALL_DIR}/sfizz.vst3" },
|
{ "x": 100, "y": 50, "type": "file", "path": "${INSTALL_DIR}/sfizz.vst3" },
|
||||||
{ "x": 250, "y": 50, "type": "file", "path": "${INSTALL_DIR}/sfizz.component" },
|
{ "x": 250, "y": 50, "type": "file", "path": "${INSTALL_DIR}/sfizz.component" },
|
||||||
{ "x": 400, "y": 50, "type": "file", "path": "${INSTALL_DIR}/sfizz.lv2" },
|
{ "x": 400, "y": 50, "type": "file", "path": "${INSTALL_DIR}/sfizz.lv2" },
|
||||||
|
{ "x": 550, "y": 50, "type": "file", "path": "${INSTALL_DIR}/Puredata" },
|
||||||
{ "x": 100, "y": 400, "type": "link", "path": "/Library/Audio/Plug-Ins/VST3" },
|
{ "x": 100, "y": 400, "type": "link", "path": "/Library/Audio/Plug-Ins/VST3" },
|
||||||
{ "x": 250, "y": 400, "type": "link", "path": "/Library/Audio/Plug-Ins/Components" },
|
{ "x": 250, "y": 400, "type": "link", "path": "/Library/Audio/Plug-Ins/Components" },
|
||||||
{ "x": 400, "y": 400, "type": "link", "path": "/Library/Audio/Plug-Ins/LV2" }
|
{ "x": 400, "y": 400, "type": "link", "path": "/Library/Audio/Plug-Ins/LV2" }
|
||||||
|
|
|
||||||
|
|
@ -15,4 +15,5 @@ cmake -DCMAKE_BUILD_TYPE=Release \
|
||||||
-DLV2PLUGIN_INSTALL_DIR=/ \
|
-DLV2PLUGIN_INSTALL_DIR=/ \
|
||||||
-DVSTPLUGIN_INSTALL_DIR=/ \
|
-DVSTPLUGIN_INSTALL_DIR=/ \
|
||||||
-DAUPLUGIN_INSTALL_DIR=/ \
|
-DAUPLUGIN_INSTALL_DIR=/ \
|
||||||
|
-DPDPLUGIN_INSTALL_DIR=/Puredata \
|
||||||
..
|
..
|
||||||
|
|
|
||||||
|
|
@ -46,6 +46,7 @@ Name: "english"; MessagesFile: "compiler:Default.isl"
|
||||||
Name: "main"; Description: "Shared files"; Types: full custom; Flags: fixed
|
Name: "main"; Description: "Shared files"; Types: full custom; Flags: fixed
|
||||||
Name: "lv2"; Description: "LV2 plugin"; Types: full custom;
|
Name: "lv2"; Description: "LV2 plugin"; Types: full custom;
|
||||||
Name: "vst3"; Description: "VST3 plugin"; Types: full custom;
|
Name: "vst3"; Description: "VST3 plugin"; Types: full custom;
|
||||||
|
Name: "puredata"; Description: "Puredata external"; Types: full custom;
|
||||||
|
|
||||||
[Files]
|
[Files]
|
||||||
Source: "sfizz.lv2\Contents\Binary\sfizz.dll"; Components: lv2; DestDir: "{commoncf}\LV2\sfizz.lv2\Contents\Binary"; Flags: ignoreversion
|
Source: "sfizz.lv2\Contents\Binary\sfizz.dll"; Components: lv2; DestDir: "{commoncf}\LV2\sfizz.lv2\Contents\Binary"; Flags: ignoreversion
|
||||||
|
|
@ -61,6 +62,7 @@ Source: "sfizz.vst3\Contents\@VST3_PACKAGE_ARCHITECTURE@-win\sfizz.vst3"; Compon
|
||||||
Source: "sfizz.vst3\Contents\Resources\*"; Components: vst3; DestDir: "{commoncf}\VST3\sfizz.vst3\Contents\Resources"; Flags: recursesubdirs
|
Source: "sfizz.vst3\Contents\Resources\*"; Components: vst3; DestDir: "{commoncf}\VST3\sfizz.vst3\Contents\Resources"; Flags: recursesubdirs
|
||||||
Source: "sfizz.vst3\Plugin.ico"; Components: vst3; DestDir: "{commoncf}\VST3\sfizz.vst3"
|
Source: "sfizz.vst3\Plugin.ico"; Components: vst3; DestDir: "{commoncf}\VST3\sfizz.vst3"
|
||||||
Source: "sfizz.vst3\gpl-3.0.txt"; Components: main; DestDir: "{app}"
|
Source: "sfizz.vst3\gpl-3.0.txt"; Components: main; DestDir: "{app}"
|
||||||
|
Source: "pd\*"; Components: puredata; DestDir: "{commoncf}\Pd"; Flags: recursesubdirs
|
||||||
; Note(sfizz): OS older than Windows 10 require UI fonts to be installed system-wide
|
; Note(sfizz): OS older than Windows 10 require UI fonts to be installed system-wide
|
||||||
Source: "sfizz.vst3\Contents\Resources\Fonts\sfizz-fluentui-system-r20.ttf"; DestDir: "{fonts}"; FontInstall: "Sfizz Fluent System R20"; Flags: uninsneveruninstall; OnlyBelowVersion: 6.4
|
Source: "sfizz.vst3\Contents\Resources\Fonts\sfizz-fluentui-system-r20.ttf"; DestDir: "{fonts}"; FontInstall: "Sfizz Fluent System R20"; Flags: uninsneveruninstall; OnlyBelowVersion: 6.4
|
||||||
Source: "sfizz.vst3\Contents\Resources\Fonts\sfizz-fluentui-system-f20.ttf"; DestDir: "{fonts}"; FontInstall: "Sfizz Fluent System F20"; Flags: uninsneveruninstall; OnlyBelowVersion: 6.4
|
Source: "sfizz.vst3\Contents\Resources\Fonts\sfizz-fluentui-system-f20.ttf"; DestDir: "{fonts}"; FontInstall: "Sfizz Fluent System F20"; Flags: uninsneveruninstall; OnlyBelowVersion: 6.4
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue