commit
9d477b4462
16 changed files with 178 additions and 119 deletions
78
.appveyor.yml
Normal file
78
.appveyor.yml
Normal file
|
|
@ -0,0 +1,78 @@
|
||||||
|
version: build-{build}
|
||||||
|
configuration: Release
|
||||||
|
|
||||||
|
environment:
|
||||||
|
matrix:
|
||||||
|
- job_name: macOS Mojave
|
||||||
|
appveyor_build_worker_image: macos-mojave
|
||||||
|
INSTALL_DIR: sfizz-$(APPVEYOR_REPO_TAG_NAME)-macos
|
||||||
|
|
||||||
|
- job_name: Windows x86
|
||||||
|
appveyor_build_worker_image: Visual Studio 2019
|
||||||
|
platform: x86
|
||||||
|
VCPKG_TRIPLET: x86-windows-static
|
||||||
|
PATH: C:\Program Files (x86)\Inno Setup 6;%PATH%
|
||||||
|
|
||||||
|
- job_name: Windows x64
|
||||||
|
appveyor_build_worker_image: Visual Studio 2019
|
||||||
|
platform: x64
|
||||||
|
VCPKG_TRIPLET: x64-windows-static
|
||||||
|
PATH: C:\Program Files (x86)\Inno Setup 6;%PATH%
|
||||||
|
|
||||||
|
for:
|
||||||
|
- matrix:
|
||||||
|
only:
|
||||||
|
- job_name: macOS Mojave
|
||||||
|
init:
|
||||||
|
- system_profiler SPSoftwareDataType
|
||||||
|
- cmake --version
|
||||||
|
- gcc -v
|
||||||
|
install:
|
||||||
|
- brew install jack
|
||||||
|
- brew install dylibbundler
|
||||||
|
before_build:
|
||||||
|
- chmod +x ${APPVEYOR_BUILD_FOLDER}/scripts/appveyor/before_build.sh
|
||||||
|
- ${APPVEYOR_BUILD_FOLDER}/scripts/appveyor/before_build.sh
|
||||||
|
build_script: cd build && make -j2
|
||||||
|
after_build:
|
||||||
|
- chmod +x ${APPVEYOR_BUILD_FOLDER}/scripts/appveyor/after_build.sh
|
||||||
|
- ${APPVEYOR_BUILD_FOLDER}/scripts/appveyor/after_build.sh
|
||||||
|
test: off
|
||||||
|
artifacts:
|
||||||
|
- name: macOS Tarball
|
||||||
|
path: "sfizz-*.tar.gz"
|
||||||
|
|
||||||
|
- matrix:
|
||||||
|
only:
|
||||||
|
- job_name: Windows x86
|
||||||
|
cache: c:\tools\vcpkg\installed\ -> appveyor.yml
|
||||||
|
install: call %APPVEYOR_BUILD_FOLDER%\scripts\appveyor\install.cmd
|
||||||
|
before_build: call %APPVEYOR_BUILD_FOLDER%\scripts\appveyor\before_build.cmd
|
||||||
|
build_script: call %APPVEYOR_BUILD_FOLDER%\scripts\appveyor\build.cmd
|
||||||
|
after_build: call %APPVEYOR_BUILD_FOLDER%\scripts\appveyor\after_build.cmd
|
||||||
|
artifacts:
|
||||||
|
- name: x86 Setup
|
||||||
|
path: "sfizz-*.exe"
|
||||||
|
|
||||||
|
- matrix:
|
||||||
|
only:
|
||||||
|
- job_name: Windows x64
|
||||||
|
cache: c:\tools\vcpkg\installed\ -> appveyor.yml
|
||||||
|
install: call %APPVEYOR_BUILD_FOLDER%\scripts\appveyor\install.cmd
|
||||||
|
before_build: call %APPVEYOR_BUILD_FOLDER%\scripts\appveyor\before_build.cmd
|
||||||
|
build_script: call %APPVEYOR_BUILD_FOLDER%\scripts\appveyor\build.cmd
|
||||||
|
after_build: call %APPVEYOR_BUILD_FOLDER%\scripts\appveyor\after_build.cmd
|
||||||
|
artifacts:
|
||||||
|
- name: x64 Setup
|
||||||
|
path: "sfizz-*.exe"
|
||||||
|
|
||||||
|
deploy:
|
||||||
|
- provider: GitHub
|
||||||
|
auth_token:
|
||||||
|
secure: xOugGAynvnZdc0DXaL3rlgMf4CICFLkdO8JxoRfLQMKJhkj/kZ4d8h7NCFneDzXG
|
||||||
|
artifact: macOS Tarball,x86 Setup,x64 Setup
|
||||||
|
draft: false
|
||||||
|
prerelease: false
|
||||||
|
force_update: true
|
||||||
|
on:
|
||||||
|
APPVEYOR_REPO_TAG: true
|
||||||
1
.gitattributes
vendored
1
.gitattributes
vendored
|
|
@ -1,3 +1,4 @@
|
||||||
.* export-ignore
|
.* export-ignore
|
||||||
.*/** export-ignore
|
.*/** export-ignore
|
||||||
appveyor.yml export-ignore
|
appveyor.yml export-ignore
|
||||||
|
/scripts/appveyor/** export-ignore
|
||||||
|
|
|
||||||
13
.gitignore
vendored
13
.gitignore
vendored
|
|
@ -1,4 +1,4 @@
|
||||||
build*
|
build*/*
|
||||||
docs
|
docs
|
||||||
.vscode
|
.vscode
|
||||||
perf.data
|
perf.data
|
||||||
|
|
@ -23,17 +23,6 @@ clients/sfzprint
|
||||||
|
|
||||||
/editor/external/fluentui-system-icons/
|
/editor/external/fluentui-system-icons/
|
||||||
|
|
||||||
# gh-pages unstaged files:
|
|
||||||
_api/
|
|
||||||
_site/
|
|
||||||
.bundle/
|
|
||||||
api/
|
|
||||||
assets/
|
|
||||||
node_modules/
|
|
||||||
.jekyll-cache
|
|
||||||
.jekyll-metadata
|
|
||||||
.sass-cache
|
|
||||||
*.lock
|
|
||||||
*.sublime-*
|
*.sublime-*
|
||||||
*.code-*
|
*.code-*
|
||||||
.kak.tags.namecache
|
.kak.tags.namecache
|
||||||
|
|
|
||||||
72
.travis.yml
72
.travis.yml
|
|
@ -9,7 +9,6 @@ cache:
|
||||||
jobs:
|
jobs:
|
||||||
include:
|
include:
|
||||||
- name: "clang-tidy checks"
|
- name: "clang-tidy checks"
|
||||||
stage: "Tests"
|
|
||||||
addons:
|
addons:
|
||||||
apt:
|
apt:
|
||||||
packages:
|
packages:
|
||||||
|
|
@ -20,17 +19,26 @@ jobs:
|
||||||
install: .travis/download_vst_sdk.sh
|
install: .travis/download_vst_sdk.sh
|
||||||
script: scripts/run_clang_tidy.sh
|
script: scripts/run_clang_tidy.sh
|
||||||
|
|
||||||
- name: "Linux amd64 tests"
|
- name: "Linux amd64 test and build"
|
||||||
arch: amd64
|
arch: amd64
|
||||||
addons:
|
addons:
|
||||||
apt:
|
apt:
|
||||||
packages:
|
packages:
|
||||||
- libjack-jackd2-dev
|
- libjack-jackd2-dev
|
||||||
- libsndfile1-dev
|
- libsndfile1-dev
|
||||||
|
- libcairo2-dev
|
||||||
|
- libfontconfig1-dev
|
||||||
|
- libx11-xcb-dev
|
||||||
|
- libxcb-util-dev
|
||||||
|
- libxcb-cursor-dev
|
||||||
|
- libxcb-xkb-dev
|
||||||
|
- libxkbcommon-dev
|
||||||
|
- libxkbcommon-x11-dev
|
||||||
|
- libxcb-keysyms1-dev
|
||||||
install: .travis/download_cmake.sh
|
install: .travis/download_cmake.sh
|
||||||
script: .travis/script_test.sh
|
script: .travis/script_test_and_build.sh
|
||||||
|
|
||||||
- name: "Linux arm64 tests"
|
- name: "Linux arm64 test and build"
|
||||||
arch: arm64-graviton2
|
arch: arm64-graviton2
|
||||||
group: edge
|
group: edge
|
||||||
virt: lxd
|
virt: lxd
|
||||||
|
|
@ -39,30 +47,24 @@ jobs:
|
||||||
packages:
|
packages:
|
||||||
- libjack-jackd2-dev
|
- libjack-jackd2-dev
|
||||||
- libsndfile1-dev
|
- libsndfile1-dev
|
||||||
|
- libcairo2-dev
|
||||||
|
- libfontconfig1-dev
|
||||||
|
- libx11-xcb-dev
|
||||||
|
- libxcb-util-dev
|
||||||
|
- libxcb-cursor-dev
|
||||||
|
- libxcb-xkb-dev
|
||||||
|
- libxkbcommon-dev
|
||||||
|
- libxkbcommon-x11-dev
|
||||||
|
- libxcb-keysyms1-dev
|
||||||
install: .travis/download_cmake.sh
|
install: .travis/download_cmake.sh
|
||||||
script: .travis/script_test.sh
|
script: .travis/script_test_and_build.sh
|
||||||
|
|
||||||
- name: "macOS"
|
|
||||||
stage: "Build"
|
|
||||||
os: osx
|
|
||||||
osx_image: xcode11.3
|
|
||||||
addons:
|
|
||||||
homebrew:
|
|
||||||
packages:
|
|
||||||
- cmake
|
|
||||||
- libsndfile
|
|
||||||
- jack
|
|
||||||
- dylibbundler
|
|
||||||
env:
|
|
||||||
- INSTALL_DIR="sfizz-${TRAVIS_BRANCH}-${TRAVIS_OS_NAME}-${TRAVIS_CPU_ARCH}"
|
|
||||||
script: .travis/script_osx.sh
|
|
||||||
after_success: .travis/prepare_tarball.sh
|
|
||||||
|
|
||||||
- name: "MOD devices arm"
|
- name: "MOD devices arm"
|
||||||
env:
|
env:
|
||||||
- CONTAINER=jpcima/mod-plugin-builder
|
- CONTAINER=jpcima/mod-plugin-builder
|
||||||
- CROSS_COMPILE=moddevices-arm
|
- CROSS_COMPILE=moddevices-arm
|
||||||
- INSTALL_DIR="sfizz-${TRAVIS_BRANCH}-moddevices"
|
- INSTALL_DIR="sfizz-${TRAVIS_BRANCH}-moddevices"
|
||||||
|
- DEPLOY_BUILD=true
|
||||||
before_install: .travis/before_install_moddevices.sh
|
before_install: .travis/before_install_moddevices.sh
|
||||||
install: .travis/install_moddevices.sh
|
install: .travis/install_moddevices.sh
|
||||||
script: .travis/script_moddevices.sh
|
script: .travis/script_moddevices.sh
|
||||||
|
|
@ -88,34 +90,6 @@ jobs:
|
||||||
script: .travis/script_mingw.sh
|
script: .travis/script_mingw.sh
|
||||||
after_success: .travis/prepare_tarball.sh
|
after_success: .travis/prepare_tarball.sh
|
||||||
|
|
||||||
- name: "Linux amd64 library"
|
|
||||||
arch: amd64
|
|
||||||
env:
|
|
||||||
- INSTALL_DIR="sfizz-${TRAVIS_BRANCH}-${TRAVIS_OS_NAME}-${TRAVIS_CPU_ARCH}"
|
|
||||||
addons:
|
|
||||||
apt:
|
|
||||||
packages:
|
|
||||||
- libjack-jackd2-dev
|
|
||||||
- libsndfile1-dev
|
|
||||||
install: .travis/download_cmake.sh
|
|
||||||
script: .travis/script_library.sh
|
|
||||||
after_success: .travis/prepare_tarball.sh
|
|
||||||
|
|
||||||
- name: "Linux arm64 library"
|
|
||||||
arch: arm64-graviton2
|
|
||||||
group: edge
|
|
||||||
virt: lxd
|
|
||||||
env:
|
|
||||||
- INSTALL_DIR="sfizz-${TRAVIS_BRANCH}-${TRAVIS_OS_NAME}-${TRAVIS_CPU_ARCH}"
|
|
||||||
addons:
|
|
||||||
apt:
|
|
||||||
packages:
|
|
||||||
- libjack-jackd2-dev
|
|
||||||
- libsndfile1-dev
|
|
||||||
install: .travis/download_cmake.sh
|
|
||||||
script: .travis/script_library.sh
|
|
||||||
after_success: .travis/prepare_tarball.sh
|
|
||||||
|
|
||||||
- name: "Linux arm64 static plugins"
|
- name: "Linux arm64 static plugins"
|
||||||
arch: arm64-graviton2
|
arch: arm64-graviton2
|
||||||
group: edge
|
group: edge
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@ buildenv make DESTDIR=${PWD}/${INSTALL_DIR} install
|
||||||
tar -zcvf "${INSTALL_DIR}.tar.gz" ${INSTALL_DIR}
|
tar -zcvf "${INSTALL_DIR}.tar.gz" ${INSTALL_DIR}
|
||||||
|
|
||||||
# Only release a tarball if there is a tag
|
# Only release a tarball if there is a tag
|
||||||
if [[ ${TRAVIS_TAG} != "" ]]; then
|
if [[ ${TRAVIS_TAG} != "" ]] && [[ ${DEPLOY_BUILD} ]]; then
|
||||||
mv "${INSTALL_DIR}.tar.gz" ${TRAVIS_BUILD_DIR}
|
mv "${INSTALL_DIR}.tar.gz" ${TRAVIS_BUILD_DIR}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,12 +3,19 @@ set -ex
|
||||||
|
|
||||||
mkdir build && cd build
|
mkdir build && cd build
|
||||||
cmake -DCMAKE_BUILD_TYPE=Release \
|
cmake -DCMAKE_BUILD_TYPE=Release \
|
||||||
-DSFIZZ_JACK=OFF \
|
-DSFIZZ_JACK=ON \
|
||||||
|
-DSFIZZ_VST=ON \
|
||||||
|
-DSFIZZ_LV2_UI=ON \
|
||||||
-DSFIZZ_TESTS=ON \
|
-DSFIZZ_TESTS=ON \
|
||||||
-DSFIZZ_SHARED=OFF \
|
-DSFIZZ_SHARED=OFF \
|
||||||
-DSFIZZ_STATIC_DEPENDENCIES=OFF \
|
-DSFIZZ_STATIC_DEPENDENCIES=OFF \
|
||||||
-DSFIZZ_LV2=OFF \
|
-DSFIZZ_LV2=ON \
|
||||||
-DCMAKE_CXX_STANDARD=17 \
|
-DCMAKE_CXX_STANDARD=17 \
|
||||||
..
|
..
|
||||||
make -j2 sfizz_tests
|
make -j2 sfizz_tests
|
||||||
tests/sfizz_tests
|
tests/sfizz_tests
|
||||||
|
make -j2 sfizz_jack
|
||||||
|
make -j2 sfizz_render
|
||||||
|
make -j2 sfizz_lv2
|
||||||
|
make -j2 sfizz_lv2_ui
|
||||||
|
make -j2 sfizz_vst3
|
||||||
53
appveyor.yml
53
appveyor.yml
|
|
@ -1,53 +0,0 @@
|
||||||
version: build-{build}
|
|
||||||
image: Visual Studio 2019
|
|
||||||
configuration: Release
|
|
||||||
platform:
|
|
||||||
- Win32
|
|
||||||
- x64
|
|
||||||
cache:
|
|
||||||
- c:\tools\vcpkg\installed\ -> appveyor.yml
|
|
||||||
|
|
||||||
install:
|
|
||||||
- cmd: choco install -y innosetup
|
|
||||||
- cmd: set PATH=C:\Program Files (x86)\Inno Setup 6;%PATH%
|
|
||||||
- cmd: if %platform%==Win32 set VCPKG_TRIPLET=x86-windows-static
|
|
||||||
- cmd: if %platform%==x64 set VCPKG_TRIPLET=x64-windows-static
|
|
||||||
# - cmd: cd c:\tools\vcpkg\
|
|
||||||
# - cmd: git pull
|
|
||||||
# - cmd: .\bootstrap-vcpkg.bat
|
|
||||||
# - cmd: cd %APPVEYOR_BUILD_FOLDER%
|
|
||||||
- cmd: vcpkg install libsndfile:%VCPKG_TRIPLET%
|
|
||||||
|
|
||||||
before_build:
|
|
||||||
- cmd: git submodule update --init --recursive
|
|
||||||
- cmd: mkdir CMakeBuild
|
|
||||||
- cmd: cd CMakeBuild
|
|
||||||
- cmd: cmake .. -G"Visual Studio 16 2019" -A"%platform%" -DSFIZZ_JACK=OFF -DSFIZZ_BENCHMARKS=OFF -DSFIZZ_TESTS=OFF -DSFIZZ_LV2=ON -DSFIZZ_VST=ON -DCMAKE_BUILD_TYPE=Release -DVCPKG_TARGET_TRIPLET=%VCPKG_TRIPLET% -DCMAKE_TOOLCHAIN_FILE=C:/Tools/vcpkg/scripts/buildsystems/vcpkg.cmake
|
|
||||||
|
|
||||||
build_script:
|
|
||||||
- cmd: cmake --build . --config Release -j
|
|
||||||
|
|
||||||
after_build:
|
|
||||||
- cmd: if %platform%==Win32 set RELEASE_ARCH=x86
|
|
||||||
- cmd: if %platform%==x64 set RELEASE_ARCH=x64
|
|
||||||
- cmd: 7z a sfizz-lv2-%APPVEYOR_REPO_TAG_NAME%-%RELEASE_ARCH%-msvc.zip sfizz.lv2
|
|
||||||
- cmd: 7z a sfizz-vst3-%APPVEYOR_REPO_TAG_NAME%-%RELEASE_ARCH%-msvc.zip sfizz.vst3
|
|
||||||
- cmd: 7z a sfizz-lib-%APPVEYOR_REPO_TAG_NAME%-%RELEASE_ARCH%-msvc.zip src/Release/sfizz*
|
|
||||||
- cmd: iscc.exe /dARCH=%RELEASE_ARCH% innosetup.iss
|
|
||||||
|
|
||||||
artifacts:
|
|
||||||
- name: Packages
|
|
||||||
path: 'CMakeBuild/sfizz-*-msvc*'
|
|
||||||
|
|
||||||
# Deploy to GitHub Releases
|
|
||||||
# See https://www.appveyor.com/docs/deployment/github/
|
|
||||||
deploy:
|
|
||||||
- provider: GitHub
|
|
||||||
auth_token:
|
|
||||||
secure: xOugGAynvnZdc0DXaL3rlgMf4CICFLkdO8JxoRfLQMKJhkj/kZ4d8h7NCFneDzXG
|
|
||||||
artifact: Packages
|
|
||||||
draft: false
|
|
||||||
prerelease: false
|
|
||||||
force_update: true
|
|
||||||
on:
|
|
||||||
appveyor_repo_tag: true
|
|
||||||
|
|
@ -40,6 +40,11 @@ if(APPLE)
|
||||||
find_library(APPLE_AUDIOUNIT_LIBRARY "AudioUnit")
|
find_library(APPLE_AUDIOUNIT_LIBRARY "AudioUnit")
|
||||||
find_library(APPLE_COREAUDIO_LIBRARY "CoreAudio")
|
find_library(APPLE_COREAUDIO_LIBRARY "CoreAudio")
|
||||||
find_library(APPLE_COREMIDI_LIBRARY "CoreMIDI")
|
find_library(APPLE_COREMIDI_LIBRARY "CoreMIDI")
|
||||||
|
# See https://stackoverflow.com/a/54103956
|
||||||
|
# and https://stackoverflow.com/a/21692023
|
||||||
|
# Apparently this is not needed in Travis CI using addons
|
||||||
|
# but it is in Appveyor instead
|
||||||
|
list (APPEND CMAKE_PREFIX_PATH /usr/local)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# The variable CMAKE_SYSTEM_PROCESSOR is incorrect on Visual studio...
|
# The variable CMAKE_SYSTEM_PROCESSOR is incorrect on Visual studio...
|
||||||
|
|
|
||||||
4
scripts/appveyor/after_build.cmd
Normal file
4
scripts/appveyor/after_build.cmd
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
@echo off
|
||||||
|
|
||||||
|
iscc.exe /dARCH=%platform% innosetup.iss
|
||||||
|
move *.exe ../
|
||||||
12
scripts/appveyor/after_build.sh
Executable file
12
scripts/appveyor/after_build.sh
Executable file
|
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/bash
|
||||||
|
set -ex
|
||||||
|
|
||||||
|
make DESTDIR=${PWD}/${INSTALL_DIR} install
|
||||||
|
tar -zcvf "${INSTALL_DIR}.tar.gz" ${INSTALL_DIR}
|
||||||
|
|
||||||
|
# Only release a tarball if there is a tag
|
||||||
|
if [[ ${APPVEYOR_REPO_TAG} ]]; then
|
||||||
|
mv "${INSTALL_DIR}.tar.gz" ${APPVEYOR_BUILD_FOLDER}
|
||||||
|
fi
|
||||||
|
|
||||||
|
cd ${APPVEYOR_BUILD_FOLDER}
|
||||||
16
scripts/appveyor/before_build.cmd
Normal file
16
scripts/appveyor/before_build.cmd
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
git submodule update --init --recursive
|
||||||
|
|
||||||
|
mkdir build && cd build
|
||||||
|
|
||||||
|
if %platform%==x86 set RELEASE_ARCH=Win32
|
||||||
|
if %platform%==x64 set RELEASE_ARCH=x64
|
||||||
|
|
||||||
|
cmake .. -G"Visual Studio 16 2019" -A"%RELEASE_ARCH%"^
|
||||||
|
-DSFIZZ_JACK=OFF^
|
||||||
|
-DSFIZZ_BENCHMARKS=OFF^
|
||||||
|
-DSFIZZ_TESTS=OFF^
|
||||||
|
-DSFIZZ_LV2=ON^
|
||||||
|
-DSFIZZ_VST=ON^
|
||||||
|
-DCMAKE_BUILD_TYPE=Release^
|
||||||
|
-DVCPKG_TARGET_TRIPLET=%VCPKG_TRIPLET%^
|
||||||
|
-DCMAKE_TOOLCHAIN_FILE=C:/Tools/vcpkg/scripts/buildsystems/vcpkg.cmake
|
||||||
14
scripts/appveyor/before_build.sh
Normal file
14
scripts/appveyor/before_build.sh
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
#!/bin/bash
|
||||||
|
set -ex
|
||||||
|
|
||||||
|
git submodule update --init --recursive
|
||||||
|
mkdir -p build/${INSTALL_DIR} && cd build
|
||||||
|
cmake -DCMAKE_BUILD_TYPE=Release \
|
||||||
|
-DSFIZZ_VST=ON \
|
||||||
|
-DSFIZZ_AU=ON \
|
||||||
|
-DSFIZZ_TESTS=OFF \
|
||||||
|
-DCMAKE_CXX_STANDARD=14 \
|
||||||
|
-DLV2PLUGIN_INSTALL_DIR=/Library/Audio/Plug-Ins/LV2 \
|
||||||
|
-DVSTPLUGIN_INSTALL_DIR=/Library/Audio/Plug-Ins/VST3 \
|
||||||
|
-DAUPLUGIN_INSTALL_DIR=/Library/Audio/Plug-Ins/Components \
|
||||||
|
..
|
||||||
5
scripts/appveyor/build.cmd
Normal file
5
scripts/appveyor/build.cmd
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
cmake --build . --target sfizz_tests --config Release -j2
|
||||||
|
.\tests\Release\sfizz_tests.exe
|
||||||
|
cmake --build . --target sfizz_lv2 --config Release -j2
|
||||||
|
cmake --build . --target sfizz_lv2_ui --config Release -j2
|
||||||
|
cmake --build . --target sfizz_vst3 --config Release -j2
|
||||||
7
scripts/appveyor/install.cmd
Normal file
7
scripts/appveyor/install.cmd
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
choco install -y innosetup
|
||||||
|
REM Uncomment the next 4 lines to force vcpkg update
|
||||||
|
REM cd c:\tools\vcpkg\
|
||||||
|
REM git pull
|
||||||
|
REM .\bootstrap-vcpkg.bat
|
||||||
|
REM cd %APPVEYOR_BUILD_FOLDER%
|
||||||
|
vcpkg install libsndfile:%VCPKG_TRIPLET%
|
||||||
|
|
@ -33,7 +33,7 @@ DefaultDirName={commonpf}\{#MyAppName}
|
||||||
DefaultGroupName={#MyAppPublisher}
|
DefaultGroupName={#MyAppPublisher}
|
||||||
;DisableDirPage=yes
|
;DisableDirPage=yes
|
||||||
LicenseFile="sfizz.lv2\LICENSE.md"
|
LicenseFile="sfizz.lv2\LICENSE.md"
|
||||||
OutputBaseFileName={#MyAppName}-{#MyAppVersion}-{#Arch}-msvc-setup
|
OutputBaseFileName={#MyAppName}-{#MyAppVersion}-msvc-{#Arch}-setup
|
||||||
OutputDir=.
|
OutputDir=.
|
||||||
UninstallFilesDir={app}
|
UninstallFilesDir={app}
|
||||||
WizardImageFile="C:\Program Files (x86)\Inno Setup 6\WizModernImage-IS.bmp"
|
WizardImageFile="C:\Program Files (x86)\Inno Setup 6\WizModernImage-IS.bmp"
|
||||||
|
|
|
||||||
|
|
@ -255,7 +255,7 @@ elseif(SFIZZ_AU)
|
||||||
DESTINATION "${PROJECT_BINARY_DIR}/${AUPLUGIN_BUNDLE_NAME}")
|
DESTINATION "${PROJECT_BINARY_DIR}/${AUPLUGIN_BUNDLE_NAME}")
|
||||||
|
|
||||||
# Add the resource fork
|
# Add the resource fork
|
||||||
if (TRUE)
|
if (FALSE)
|
||||||
execute_process(COMMAND "xcrun" "--find" "Rez"
|
execute_process(COMMAND "xcrun" "--find" "Rez"
|
||||||
OUTPUT_VARIABLE OSX_REZ_COMMAND OUTPUT_STRIP_TRAILING_WHITESPACE)
|
OUTPUT_VARIABLE OSX_REZ_COMMAND OUTPUT_STRIP_TRAILING_WHITESPACE)
|
||||||
file(MAKE_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/include")
|
file(MAKE_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/include")
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue