Skip to content

Commit

Permalink
ome more
Browse files Browse the repository at this point in the history
  • Loading branch information
baconpaul committed Aug 21, 2024
1 parent 9d5e138 commit 8f66134
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 11 deletions.
2 changes: 2 additions & 0 deletions scripts/linux-build.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/bin/bash

cmake -Bignore/build -DSTOCHAS_VERSION=${STOCHAS_VERSION}
cmake --build ignore/build --config Release
LINARCH=`uname -m`
Expand Down
22 changes: 11 additions & 11 deletions scripts/mac-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,19 @@ if [ ! -f lib/sst-plugininfra/scripts/installer_mac/make_installer.sh ]; then
die
fi

cmake -Bignore/build -GNinja -DSTOCHAS_VERSION=${STOCHAS_VERSION} -DCMAKE_OSX_ARCHITECTURES="x86_64;arm64"
cmake --build ignore/build --target stochas_VST3 --config Release
cmake --build ignore/build --target stochas_CLAP --config Release
cmake --build ignore/build --target stochas_Standalone --config Release
cmake -Bignore/build -GNinja -DSTOCHAS_VERSION=${STOCHAS_VERSION} -DCMAKE_OSX_ARCHITECTURES="x86_64;arm64"
cmake --build ignore/build --target stochas_VST3 --config Release
cmake --build ignore/build --target stochas_CLAP --config Release
cmake --build ignore/build --target stochas_Standalone --config Release

mkdir -p ignore/mac_assets
cp -r ignore/build/stochas_artefacts/VST3/* ignore/mac_assets
cp -r ignore/build/stochas_artefacts/CLAP/* ignore/mac_assets
cp -r ignore/build/stochas_artefacts/Standalone/* ignore/mac_assets
mkdir -p ignore/mac_assets
cp -r ignore/build/stochas_artefacts/VST3/* ignore/mac_assets
cp -r ignore/build/stochas_artefacts/CLAP/* ignore/mac_assets
cp -r ignore/build/stochas_artefacts/Standalone/* ignore/mac_assets

cmake -GNinja -Bignore/build_au -DSTOCHAS_IS_SYNTH=FALSE -DSTOCHAS_VERSION=${STOCHAS_VERSION} -DCMAKE_OSX_ARCHITECTURES="x86_64;arm64"
cmake --build ignore/build_au --target stochas_AU --config Release
cp -r ignore/build_au/stochas_artefacts/AU/* ignore/mac_assets
cmake -GNinja -Bignore/build_au -DSTOCHAS_IS_SYNTH=FALSE -DSTOCHAS_VERSION=${STOCHAS_VERSION} -DCMAKE_OSX_ARCHITECTURES="x86_64;arm64"
cmake --build ignore/build_au --target stochas_AU --config Release
cp -r ignore/build_au/stochas_artefacts/AU/* ignore/mac_assets

mkdir -p ignore/mac_installer
lib/sst-plugininfra/scripts/installer_mac/make_installer.sh Stochas ignore/mac_assets resources ignore/mac_installer ${STOCHAS_VERSION}
Expand Down

0 comments on commit 8f66134

Please sign in to comment.