-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix a parameter threading error; Juce8 in CI; CPM upgrade
I had mistakenly thought htat the value change listeners on param were not audio safe, so moved them to the main thread. This was wrong, and this commit corrects that. While in there add a Juce 8 test, which restructured CI a smidge and also upgrade CPM since it throws a warning with newer cmakes
- Loading branch information
Showing
6 changed files
with
139 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,110 @@ | ||
build*/ | ||
Builds/ | ||
JuceLibraryCode/ | ||
# Prerequisites | ||
*.d | ||
|
||
.vscode/ | ||
.idea/ | ||
# Compiled Object files | ||
*.slo | ||
*.lo | ||
*.o | ||
*.obj | ||
|
||
# Precompiled Headers | ||
*.gch | ||
*.pch | ||
|
||
# Compiled Dynamic libraries | ||
*.so | ||
*.dylib | ||
*.dll | ||
|
||
# Fortran module files | ||
*.mod | ||
*.smod | ||
|
||
# Compiled Static libraries | ||
*.lai | ||
*.la | ||
*.a | ||
*.lib | ||
|
||
# Executables | ||
*.exe | ||
*.out | ||
*.app | ||
|
||
# Visual Studio | ||
obj/ | ||
*.sln | ||
*.vcxproj | ||
*.vcxproj.filters | ||
*.vcxproj.user | ||
.vs/ | ||
packages/ | ||
target/ | ||
*.pdb | ||
packages.config | ||
CMakeSettings.json | ||
.vscode | ||
.cache | ||
|
||
# XCode | ||
Surge.xcworkspace/ | ||
surge-au.xcodeproj/ | ||
surge-vst2.xcodeproj/ | ||
surge-vst3.xcodeproj/ | ||
surge-headless.xcodeproj/ | ||
products/ | ||
installer_mac/installer | ||
installer_mac/*.dmg | ||
installer_osx/installer | ||
installer_osx/Install_Surge_*.dmg | ||
build_logs/ | ||
fxbuild/ | ||
.DS_Store | ||
|
||
# IntelliJ IDEA | ||
.idea | ||
|
||
# Linux | ||
Makefile | ||
surge-*.make | ||
premake-stamp | ||
cmake-stamp | ||
/Debug | ||
*.deb | ||
|
||
# Qt Creator | ||
*.txt.user | ||
*.txt.user.* | ||
|
||
# CMake | ||
build/ | ||
build32/ | ||
buildlin/ | ||
buildlin-*/ | ||
buildmac/ | ||
buildwin/ | ||
buildxt/ | ||
build-arm/ | ||
build_lv2 | ||
buildiwyu/ | ||
buildpy/ | ||
cmake-build-*/ | ||
bwd/ | ||
CMakeUserPresets.json | ||
|
||
# Reaper | ||
*.RPP-bak | ||
|
||
VERSION_GIT_INFO | ||
.clang-tidy | ||
|
||
# Juce until we add a submodule | ||
libs/juce-* | ||
|
||
# A place for BP to store stuff | ||
ignore/* | ||
__pycache__ | ||
minst.sh | ||
|
||
Testing/ | ||
installer-tmp/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters