-
-
Notifications
You must be signed in to change notification settings - Fork 927
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' into gabberkick_synth
- Loading branch information
Showing
2,444 changed files
with
200,079 additions
and
63,119 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
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 |
---|---|---|
@@ -0,0 +1,66 @@ | ||
cmake_minimum_required(VERSION 3.0) | ||
project(Link) | ||
|
||
set(ERLANG_INCLUDE_PATH "/usr/local/lib/erlang/usr/include" CACHE PATH "Path to erlang includes") | ||
|
||
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin) | ||
|
||
# ___ _ _ | ||
# / _ \ _ __ | |_(_) ___ _ __ ___ | ||
# | | | | '_ \| __| |/ _ \| '_ \/ __| | ||
# | |_| | |_) | |_| | (_) | | | \__ \ | ||
# \___/| .__/ \__|_|\___/|_| |_|___/ | ||
# |_| | ||
|
||
# Note: Please use the LINK_* prefix for all project-specific options | ||
|
||
if(UNIX) | ||
option(LINK_ENABLE_ASAN "Build with Address Sanitizier (ASan)" OFF) | ||
option(LINK_BUILD_JACK "Build example applications with JACK support" OFF) | ||
endif() | ||
|
||
if(WIN32) | ||
option(LINK_BUILD_ASIO "Build example applications with ASIO driver" ON) | ||
option(LINK_BUILD_VLD "Build with VLD support (VLD must be installed separately)" OFF) | ||
endif() | ||
|
||
# ____ _ _ | ||
# | _ \ __ _| |_| |__ ___ | ||
# | |_) / _` | __| '_ \/ __| | ||
# | __/ (_| | |_| | | \__ \ | ||
# |_| \__,_|\__|_| |_|___/ | ||
# | ||
|
||
# Other CMake files must be included only after declaring build options | ||
include(cmake_include/ConfigureCompileFlags.cmake) | ||
include(cmake_include/CatchConfig.cmake) | ||
include(AbletonLinkConfig.cmake) | ||
include(extensions/abl_link/abl_link.cmake) | ||
|
||
add_subdirectory(include) | ||
add_subdirectory(src) | ||
add_subdirectory(examples) | ||
add_subdirectory(extensions/abl_link) | ||
|
||
# ____ | ||
# / ___| _ _ _ __ ___ _ __ ___ __ _ _ __ _ _ | ||
# \___ \| | | | '_ ` _ \| '_ ` _ \ / _` | '__| | | | | ||
# ___) | |_| | | | | | | | | | | | (_| | | | |_| | | ||
# |____/ \__,_|_| |_| |_|_| |_| |_|\__,_|_| \__, | | ||
# |___/ | ||
|
||
message(STATUS "Build options") | ||
|
||
get_cmake_property(all_variables VARIABLES) | ||
string(REGEX MATCHALL "(^|;)LINK_[A-Z_]+" link_variables "${all_variables}") | ||
foreach(variable ${link_variables}) | ||
message(" ${variable}: ${${variable}}") | ||
endforeach() | ||
|
||
message(STATUS "Build configuration") | ||
|
||
if(CMAKE_BUILD_TYPE) | ||
message(" Build type: ${CMAKE_BUILD_TYPE}") | ||
else() | ||
message(" Build type: Set by IDE") | ||
endif() |
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
Empty file.
Empty file modified
0
app/external/sp_link/external_libs/link/ci/check-formatting.py
100644 → 100755
Empty file.
Empty file.
Empty file.
Empty file modified
0
app/external/sp_link/external_libs/link/ci/run_valgrind_tests.sh
100644 → 100755
Empty file.
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
1 change: 1 addition & 0 deletions
1
app/external/sp_link/external_libs/link/examples/esp32/.gitignore
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,3 +1,4 @@ | ||
build | ||
sdkconfig | ||
sdkconfig.old | ||
managed_components |
15 changes: 15 additions & 0 deletions
15
app/external/sp_link/external_libs/link/examples/esp32/dependencies.lock
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
dependencies: | ||
espressif/asio: | ||
component_hash: 27069b3f640bb58e2cbceb6bc13dd8f791a2c11b38080543f1858b6104e45b98 | ||
source: | ||
service_url: https://api.components.espressif.com/ | ||
type: service | ||
version: 1.14.1~3 | ||
idf: | ||
component_hash: null | ||
source: | ||
type: idf | ||
version: 5.1.1 | ||
manifest_hash: 10a682a6641cabbc6127f743d9e310d694820bf50bb2627e140bb20ba4a940e0 | ||
target: esp32 | ||
version: 1.0.0 |
17 changes: 17 additions & 0 deletions
17
app/external/sp_link/external_libs/link/examples/esp32/main/idf_component.yml
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
## IDF Component Manager Manifest File | ||
dependencies: | ||
espressif/asio: "*" | ||
## Required IDF version | ||
idf: | ||
version: ">=4.1.0" | ||
# # Put list of dependencies here | ||
# # For components maintained by Espressif: | ||
# component: "~1.0.0" | ||
# # For 3rd party components: | ||
# username/component: ">=1.0.0,<2.0.0" | ||
# username2/component2: | ||
# version: "~1.0.0" | ||
# # For transient dependencies `public` flag can be set. | ||
# # `public` flag doesn't have an effect dependencies of the `main` component. | ||
# # All dependencies of `main` are public by default. | ||
# public: true |
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
2 changes: 2 additions & 0 deletions
2
app/external/sp_link/external_libs/link/examples/esp32/sdkconfig.defaults
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 +1,3 @@ | ||
CONFIG_COMPILER_CXX_EXCEPTIONS=y | ||
CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE=y | ||
|
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
Oops, something went wrong.