Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Some tweaks on submodules, arm builds, etc #1440

Merged
merged 1 commit into from
Oct 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: "windows msvc"
os: windows-latest
target: shortcircuit-products
cmakeConfig: -G"Visual Studio 17 2022" -A x64
cmakeConfig: -G"Visual Studio 17 2022" -A x64 -DCMAKE_UNITY_BUILD=TRUE
runTests: false
clapValidate: false

Expand All @@ -30,7 +30,7 @@ jobs:
- name: "windows arm64ec"
os: windows-latest
target: shortcircuit-products
cmakeConfig: -G"Visual Studio 17 2022" -A arm64ec -DCMAKE_SYSTEM_VERSION=10
cmakeConfig: -G"Visual Studio 17 2022" -A arm64ec -DCMAKE_SYSTEM_VERSION=10 -DCMAKE_UNITY_BUILD=TRUE
runTests: false
clapValidate: false

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

- os: windows-latest
name: windows-arm64ec
cmakeArgs: -G"Visual Studio 17 2022" -A arm64ec -DCMAKE_SYSTEM_VERSION=10
cmakeArgs: -G"Visual Studio 17 2022" -A arm64ec -DCMAKE_SYSTEM_VERSION=10 -DCMAKE_UNITY_BUILD=TRUE

- os: macos-latest
name: macos
Expand Down
3 changes: 2 additions & 1 deletion clients/clap-first/scxt-plugin/scxt-plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ namespace scxt::clap_first::scxt_plugin
const clap_plugin_descriptor *getDescription()
{
static const char *features[] = {CLAP_PLUGIN_FEATURE_INSTRUMENT, CLAP_PLUGIN_FEATURE_SAMPLER,
CLAP_PLUGIN_FEATURE_SYNTHESIZER, nullptr};
CLAP_PLUGIN_FEATURE_SYNTHESIZER, "Free and Open Source",
nullptr};
static clap_plugin_descriptor desc = {CLAP_VERSION,
"org.surge-synth-team.shortcircuit-xt",
"Shortcircuit XT",
Expand Down
2 changes: 1 addition & 1 deletion libs/clap/clap-wrapper
Loading