diff --git a/CMakeLists.txt b/CMakeLists.txt index bd937cd..408d143 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,33 +6,37 @@ # under the European Union’s Horizon 2020 research and innovation programme # (grant agreement No 725899). -cmake_minimum_required(VERSION 3.11) +cmake_minimum_required(VERSION 3.18) -cmake_policy(SET CMP0074 NEW) +# cmake_policy(SET CMP0074 NEW) set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD_REQUIRED ON) set(CMAKE_CXX_EXTENSIONS OFF) +set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded$<$:Debug>") if (APPLE) set(CMAKE_XCODE_GENERATE_SCHEME ON) set(CMAKE_OSX_DEPLOYMENT_TARGET 10.8) endif() +list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/script") +get_directory_property(hasParent PARENT_DIRECTORY) +if(hasParent) + set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/script + PARENT_SCOPE) +endif() project (flucoma-docs LANGUAGES CXX) +set_property(GLOBAL PROPERTY FLUID_DOCS_ROOT ${CMAKE_CURRENT_SOURCE_DIR}) set_property(GLOBAL PROPERTY USE_FOLDERS ON) set(CMAKE_XCODE_GENERATE_TOP_LEVEL_PROJECT_ONLY ON) set(FLUID_PATH "" CACHE PATH "The top level of the flucoma-core repo. Will clone from repo if blank") -set(MAX_DOC_OUT "${CMAKE_BINARY_DIR}/max_ref" CACHE PATH "") -set(PD_DOC_OUT "${CMAKE_BINARY_DIR}/pd_ref" CACHE PATH "") -set(CLI_DOC_OUT "${CMAKE_BINARY_DIR}/cli_ref" CACHE PATH "") -set(SC_DOC_OUT "${CMAKE_BINARY_DIR}/sc_ref" CACHE PATH "") set(RAW_DOC_OUT "${CMAKE_BINARY_DIR}" CACHE PATH "") -# option(TESTS,"Run tests?") + include(FetchContent) set(FETCHCONTENT_QUIET FALSE) @@ -90,60 +94,36 @@ set(FLUID_GENERATED_DOC "${CMAKE_BINARY_DIR}/json") set(FLUID_HUMAN_DOC "${CMAKE_CURRENT_SOURCE_DIR}/doc") set(FLIUD_JINJA_TEMPLATES "${CMAKE_CURRENT_SOURCE_DIR}/flucoma/doc/templates") -# Make sure to build targets from flucoma-core -macro(subdirlist result curdir) - file(GLOB children RELATIVE ${curdir} ${curdir}/*) - set(dirlist "") - foreach(child ${children}) - if(IS_DIRECTORY ${curdir}/${child}) - list(APPEND dirlist ${child}) - endif() - endforeach() - set(${result} ${dirlist}) -endmacro() - -# Generate a project for every folder in the "src/clients" folder -subdirlist(PROJECT_DIRS ${CMAKE_CURRENT_SOURCE_DIR}/src/clients) -foreach (project_dir ${PROJECT_DIRS}) - if (EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/src/clients/${project_dir}/CMakeLists.txt") - message("Generating: ${project_dir}") - add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/src/clients/${project_dir}) - list(APPEND json_files "${CMAKE_BINARY_DIR}/json/${project_dir}.json") - - add_custom_command(OUTPUT "${CMAKE_BINARY_DIR}/json/${project_dir}.json" - COMMAND ${CMAKE_COMMAND} -E make_directory "${CMAKE_BINARY_DIR}/json/" - COMMAND $ ARGS "${CMAKE_BINARY_DIR}/json/" - COMMENT "Generating JSON for ${project_dir}" - DEPENDS ${project_dir} - ) - endif () -endforeach () - - -macro(add_ref_target platform comment) - string(TOUPPER ${platform} platform_uc) - string(TOLOWER ${platform} platform_lc) - - get_directory_property(hasParent PARENT_DIRECTORY) - if(hasParent) - set(FLUID_${platform_uc}_REF_TARGET MAKE_${platform_uc}_REF PARENT_SCOPE) - set(FLUID_${platform_uc}_REF_PATH "${CMAKE_BINARY_DIR}/${platform_lc}_ref" PARENT_SCOPE) - endif() - - add_custom_target(MAKE_${platform_uc}_REF - COMMAND ${CMAKE_COMMAND} -E make_directory "${${platform_uc}_DOC_OUT}" - COMMAND ${PYTHON_3} "-mflucoma.MakeRef" "${platform_lc}" ${FLUID_GENERATED_DOC} ${FLUID_HUMAN_DOC} "${${platform_uc}_DOC_OUT}" ${FLIUD_JINJA_TEMPLATES} - WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} - COMMENT ${comment} - DEPENDS ${json_files} - VERBATIM - ) -endmacro() - -add_ref_target(max "Making Max ref") -add_ref_target(pd "Making PD ref") -add_ref_target(cli "Making CLI ref") -add_ref_target(sc "Making SC ref") +include(MakeDocSource) + +get_core_clients(client_list) + +foreach(client ${client_list}) + get_core_client_header(${client} header) + get_core_client_class(${client} class) + list(APPEND FLUID_CLIENTS ${client}) + list(APPEND FLUID_HEADERS ${header}) + list(APPEND FLUID_CLASSES ${class}) +endforeach() + +generate_doc_exe( + CLIENTS ${FLUID_CLIENTS} + HEADERS ${FLUID_HEADERS} + CLASSES ${FLUID_CLASSES} + FILENAME DumpParams +) + +set(JSON_FILES ${FLUID_CLIENTS}) +list(TRANSFORM FLUID_CLIENTS APPEND .json) +list(TRANSFORM JSON_FILES PREPEND "${CMAKE_BINARY_DIR}/json/") + +add_custom_command(TARGET DumpParams POST_BUILD + COMMAND ${CMAKE_COMMAND} -E rm -rf "${CMAKE_BINARY_DIR}/json/" + COMMAND ${CMAKE_COMMAND} -E make_directory "${CMAKE_BINARY_DIR}/json/" + COMMAND $ ARGS "${CMAKE_BINARY_DIR}/json/" +) + +include(FlucomaDocs) add_ref_target(raw "Making raw API JSON") enable_testing() diff --git a/script/FlucomaDocs.cmake b/script/FlucomaDocs.cmake new file mode 100644 index 0000000..d227ef2 --- /dev/null +++ b/script/FlucomaDocs.cmake @@ -0,0 +1,33 @@ +# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) +# Copyright 2017-2019 University of Huddersfield. +# Licensed under the BSD-3 License. +# See license.md file in the project root for full license information. +# This project has received funding from the European Research Council (ERC) +# under the European Union’s Horizon 2020 research and innovation programme +# (grant agreement No 725899). + +cmake_minimum_required(VERSION 3.18) + +macro(add_ref_target platform comment) + string(TOUPPER ${platform} platform_uc) + string(TOLOWER ${platform} platform_lc) + + set(FLUID_${platform_uc}_REF_TARGET MAKE_${platform_uc}_REF) + set(FLUID_${platform_uc}_REF_PATH "${CMAKE_BINARY_DIR}/${platform_lc}_ref") + + get_property(DOC_ROOT GLOBAL PROPERTY FLUID_DOCS_ROOT) + + set(FLUID_GENERATED_DOC "${CMAKE_BINARY_DIR}/json") + set(FLUID_HUMAN_DOC "${DOC_ROOT}/doc") + set(FLIUD_JINJA_TEMPLATES "${DOC_ROOT}/flucoma/doc/templates") + + add_custom_target(MAKE_${platform_uc}_REF + COMMAND ${CMAKE_COMMAND} -E make_directory "${${platform_uc}_DOC_OUT}" + COMMAND ${PYTHON_3} "-mflucoma.MakeRef" "${platform_lc}" ${FLUID_GENERATED_DOC} ${FLUID_HUMAN_DOC} "${${platform_uc}_DOC_OUT}" ${FLIUD_JINJA_TEMPLATES} + WORKING_DIRECTORY ${DOC_ROOT} + COMMENT ${comment} + # DEPENDS ${json_files} + VERBATIM + ) + add_dependencies(MAKE_${platform_uc}_REF DumpParams) +endmacro() diff --git a/script/MakeDocSource.cmake b/script/MakeDocSource.cmake new file mode 100644 index 0000000..e554e85 --- /dev/null +++ b/script/MakeDocSource.cmake @@ -0,0 +1,79 @@ +# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) +# Copyright 2017-2019 University of Huddersfield. +# Licensed under the BSD-3 License. +# See license.md file in the project root for full license information. +# This project has received funding from the European Research Council (ERC) +# under the European Union’s Horizon 2020 research and innovation programme +# (grant agreement No 725899). + +cmake_minimum_required(VERSION 3.18) + +include(FLuidClientStub) + +function(add_doc_gen name source) + + add_executable(${name} ${source}) + + target_link_libraries(${name} PRIVATE + FLUID_DECOMPOSITION FLUID_DUMP + ) + + target_include_directories ( + ${name} + PRIVATE + "${CMAKE_CURRENT_SOURCE_DIR}/../../../include" + "${CMAKE_CURRENT_SOURCE_DIR}/../../../thirdparty" + ) + + if(APPLE) + set_target_properties(${name} PROPERTIES + XCODE_GENERATE_SCHEME ON + ) + #If we target 10.7 (actually < 10.9), we have to manually include this: + target_compile_options(${name} PRIVATE -stdlib=libc++) + endif() + + if(MSVC) + target_compile_options(${name} PRIVATE /W3) + else() + target_compile_options(${name} PRIVATE -Wall -Wextra -Wpedantic -Wno-return-type -Wno-c++11-narrowing) + endif() + + get_property(HEADERS TARGET FLUID_DECOMPOSITION PROPERTY INTERFACE_SOURCES) + source_group(TREE "${flucoma-core_SOURCE_DIR}/include" FILES ${HEADERS}) + +endfunction() + +function(make_external_name client header var) + set(${var} ${client} PARENT_SCOPE) +endfunction() + +function(generate_doc_exe) + # # Define the supported set of keywords + set(noValues "") + set(singleValues FILENAME EXTERNALS_OUT FILE_OUT) + set(multiValues CLIENTS HEADERS CLASSES) + # # Process the arguments passed in + include(CMakeParseArguments) + cmake_parse_arguments(ARG + "${noValues}" + "${singleValues}" + "${multiValues}" + ${ARGN}) + + if(ARG_FILENAME) + set(external_name ${ARG_FILENAME}) + else() + list(GET ARG_CLIENTS 0 external_name) + endif() + + set(ENTRY_POINT "int main(int argc, char *argv[])") + set(WRAPPER_TEMPLATE [=[ParameterDump<${class}>::dump("${external}", argv[1]);]=]) + set(CCE_WRAPPER "#include \"FluidParameterDump.hpp\"") + + generate_source(${ARGN} EXTERNALS_OUT external FILE_OUT outfile) + + message(STATUS "Generating: ${external_name}") + add_doc_gen(${external_name} ${outfile}) + +endfunction() diff --git a/script/dump-posttarget.cmake b/script/dump-posttarget.cmake deleted file mode 100644 index e8baf43..0000000 --- a/script/dump-posttarget.cmake +++ /dev/null @@ -1,58 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - - - -target_link_libraries(${PROJECT_NAME} PRIVATE - FLUID_DECOMPOSITION FLUID_DUMP -) - -target_include_directories ( - ${PROJECT_NAME} - PRIVATE - "${CMAKE_CURRENT_SOURCE_DIR}/../../../include" - "${CMAKE_CURRENT_SOURCE_DIR}/../../../thirdparty" -) - -if(APPLE) - set_target_properties(${PROJECT_NAME} PROPERTIES - XCODE_GENERATE_SCHEME ON - ) - #If we target 10.7 (actually < 10.9), we have to manually include this: - target_compile_options(${PROJECT_NAME} PRIVATE -stdlib=libc++) -endif() - - -if(MSVC) - target_compile_options(${PROJECT_NAME}PRIVATE /W3) -else() - target_compile_options(${PROJECT_NAME} PRIVATE -Wall -Wextra -Wpedantic -Wno-return-type -Wno-c++11-narrowing) -endif() - -get_property(HEADERS TARGET FLUID_DECOMPOSITION PROPERTY INTERFACE_SOURCES) -source_group(TREE "${flucoma-core_SOURCE_DIR}/include" FILES ${HEADERS}) - -if ("${PROJECT_NAME}" MATCHES ".*_tilde") - string(REGEX REPLACE "_tilde" "~" EXTERN_OUTPUT_NAME "${PROJECT_NAME}") -else () - set(EXTERN_OUTPUT_NAME "${PROJECT_NAME}") -endif () -set_target_properties(${PROJECT_NAME} PROPERTIES OUTPUT_NAME "${EXTERN_OUTPUT_NAME}") - -# add_custom_command( -# TARGET ${PROJECT_NAME} -# POST_BUILD -# COMMAND $ ARGS "${CMAKE_BINARY_DIR}/json/" -# COMMENT "Generating JSON for ${PROJECT_NAME}" -# ) - - - -# add_dependencies( -# MAKE_MAX_REF "${CMAKE_BINARY_DIR}/json/${PROJECT_NAME}.json" -# ) diff --git a/script/dump-pretarget.cmake b/script/dump-pretarget.cmake deleted file mode 100644 index 8459c9b..0000000 --- a/script/dump-pretarget.cmake +++ /dev/null @@ -1,10 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -string(REGEX REPLACE "(.*)/" "" THIS_FOLDER_NAME "${CMAKE_CURRENT_SOURCE_DIR}") -project(${THIS_FOLDER_NAME}) diff --git a/src/clients/AmpFeature/AmpFeature.cpp b/src/clients/AmpFeature/AmpFeature.cpp deleted file mode 100644 index 86e32b0..0000000 --- a/src/clients/AmpFeature/AmpFeature.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("AmpFeature", argv[1]); - return 0; -} diff --git a/src/clients/AmpFeature/CMakeLists.txt b/src/clients/AmpFeature/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/AmpFeature/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/AmpGate/AmpGate.cpp b/src/clients/AmpGate/AmpGate.cpp deleted file mode 100644 index 6d29b8d..0000000 --- a/src/clients/AmpGate/AmpGate.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("AmpGate", argv[1]); - return 0; -} diff --git a/src/clients/AmpGate/CMakeLists.txt b/src/clients/AmpGate/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/AmpGate/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/AmpSlice/AmpSlice.cpp b/src/clients/AmpSlice/AmpSlice.cpp deleted file mode 100644 index 056d507..0000000 --- a/src/clients/AmpSlice/AmpSlice.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("AmpSlice", argv[1]); - return 0; -} diff --git a/src/clients/AmpSlice/CMakeLists.txt b/src/clients/AmpSlice/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/AmpSlice/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/AudioTransport/AudioTransport.cpp b/src/clients/AudioTransport/AudioTransport.cpp deleted file mode 100644 index 80329d0..0000000 --- a/src/clients/AudioTransport/AudioTransport.cpp +++ /dev/null @@ -1,9 +0,0 @@ -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("AudioTransport", argv[1]); - return 0; -} diff --git a/src/clients/AudioTransport/CMakeLists.txt b/src/clients/AudioTransport/CMakeLists.txt deleted file mode 100644 index e1acfda..0000000 --- a/src/clients/AudioTransport/CMakeLists.txt +++ /dev/null @@ -1,26 +0,0 @@ -cmake_minimum_required(VERSION 3.3) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) - -# set(CMAKE_CXX_STANDARD 11) -# set(CMAKE_CXX_STANDARD_REQUIRED ON) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) -# target_link_libraries(${PROJECT_NAME} FLUID_DECOMPOSITION) -# target_include_directories( -# ${PROJECT_NAME} -# PRIVATE -# "${CMAKE_CURRENT_SOURCE_DIR}/../../include" -# ) -# -# target_include_directories( -# ${PROJECT_NAME} -# SYSTEM PRIVATE -# "${C74_MAX_INCLUDES}" -# "${C74_MSP_INCLUDES}" -# "${C74_JIT_INCLUDES}" -# ) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/BufAmpFeature/BufAmpFeature.cpp b/src/clients/BufAmpFeature/BufAmpFeature.cpp deleted file mode 100644 index 13ca288..0000000 --- a/src/clients/BufAmpFeature/BufAmpFeature.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("BufAmpFeature", argv[1]); - return 0; -} diff --git a/src/clients/BufAmpFeature/CMakeLists.txt b/src/clients/BufAmpFeature/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/BufAmpFeature/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/BufAmpGate/BufAmpGate.cpp b/src/clients/BufAmpGate/BufAmpGate.cpp deleted file mode 100644 index 00ddd72..0000000 --- a/src/clients/BufAmpGate/BufAmpGate.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("BufAmpGate", argv[1]); - return 0; -} diff --git a/src/clients/BufAmpGate/CMakeLists.txt b/src/clients/BufAmpGate/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/BufAmpGate/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/BufAmpSlice/BufAmpSlice.cpp b/src/clients/BufAmpSlice/BufAmpSlice.cpp deleted file mode 100644 index 4ab98fe..0000000 --- a/src/clients/BufAmpSlice/BufAmpSlice.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("BufAmpSlice", argv[1]); - return 0; -} diff --git a/src/clients/BufAmpSlice/CMakeLists.txt b/src/clients/BufAmpSlice/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/BufAmpSlice/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/BufAudioTransport/BufAudioTransport.cpp b/src/clients/BufAudioTransport/BufAudioTransport.cpp deleted file mode 100644 index f37a917..0000000 --- a/src/clients/BufAudioTransport/BufAudioTransport.cpp +++ /dev/null @@ -1,9 +0,0 @@ -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("BufAudioTransport", argv[1]); - return 0; -} diff --git a/src/clients/BufAudioTransport/CMakeLists.txt b/src/clients/BufAudioTransport/CMakeLists.txt deleted file mode 100644 index e1acfda..0000000 --- a/src/clients/BufAudioTransport/CMakeLists.txt +++ /dev/null @@ -1,26 +0,0 @@ -cmake_minimum_required(VERSION 3.3) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) - -# set(CMAKE_CXX_STANDARD 11) -# set(CMAKE_CXX_STANDARD_REQUIRED ON) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) -# target_link_libraries(${PROJECT_NAME} FLUID_DECOMPOSITION) -# target_include_directories( -# ${PROJECT_NAME} -# PRIVATE -# "${CMAKE_CURRENT_SOURCE_DIR}/../../include" -# ) -# -# target_include_directories( -# ${PROJECT_NAME} -# SYSTEM PRIVATE -# "${C74_MAX_INCLUDES}" -# "${C74_MSP_INCLUDES}" -# "${C74_JIT_INCLUDES}" -# ) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/BufChroma/BufChroma.cpp b/src/clients/BufChroma/BufChroma.cpp deleted file mode 100644 index 42a2f0e..0000000 --- a/src/clients/BufChroma/BufChroma.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("BufChroma", argv[1]); - return 0; -} diff --git a/src/clients/BufChroma/CMakeLists.txt b/src/clients/BufChroma/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/BufChroma/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/BufCompose/BufCompose.cpp b/src/clients/BufCompose/BufCompose.cpp deleted file mode 100644 index cc82a9f..0000000 --- a/src/clients/BufCompose/BufCompose.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("BufCompose", argv[1]); - return 0; -} diff --git a/src/clients/BufCompose/CMakeLists.txt b/src/clients/BufCompose/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/BufCompose/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/BufFlatten/BufFlatten.cpp b/src/clients/BufFlatten/BufFlatten.cpp deleted file mode 100644 index b04530b..0000000 --- a/src/clients/BufFlatten/BufFlatten.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("BufFlatten", argv[1]); - return 0; -} diff --git a/src/clients/BufFlatten/CMakeLists.txt b/src/clients/BufFlatten/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/BufFlatten/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/BufHPSS/BufHPSS.cpp b/src/clients/BufHPSS/BufHPSS.cpp deleted file mode 100644 index 55400d3..0000000 --- a/src/clients/BufHPSS/BufHPSS.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("BufHPSS", argv[1]); - return 0; -} diff --git a/src/clients/BufHPSS/CMakeLists.txt b/src/clients/BufHPSS/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/BufHPSS/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/BufLoudness/BufLoudness.cpp b/src/clients/BufLoudness/BufLoudness.cpp deleted file mode 100644 index 2006459..0000000 --- a/src/clients/BufLoudness/BufLoudness.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("BufLoudness", argv[1]); - return 0; -} diff --git a/src/clients/BufLoudness/CMakeLists.txt b/src/clients/BufLoudness/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/BufLoudness/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/BufMFCC/BufMFCC.cpp b/src/clients/BufMFCC/BufMFCC.cpp deleted file mode 100644 index 099ce60..0000000 --- a/src/clients/BufMFCC/BufMFCC.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("BufMFCC", argv[1]); - return 0; -} diff --git a/src/clients/BufMFCC/CMakeLists.txt b/src/clients/BufMFCC/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/BufMFCC/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/BufMelBands/BufMelBands.cpp b/src/clients/BufMelBands/BufMelBands.cpp deleted file mode 100644 index c17cc6b..0000000 --- a/src/clients/BufMelBands/BufMelBands.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("BufMelBands", argv[1]); - return 0; -} diff --git a/src/clients/BufMelBands/CMakeLists.txt b/src/clients/BufMelBands/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/BufMelBands/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/BufNMF/BufNMF.cpp b/src/clients/BufNMF/BufNMF.cpp deleted file mode 100644 index 507ddd2..0000000 --- a/src/clients/BufNMF/BufNMF.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("BufNMF", argv[1]); - return 0; -} diff --git a/src/clients/BufNMF/CMakeLists.txt b/src/clients/BufNMF/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/BufNMF/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/BufNMFCross/BufNMFCross.cpp b/src/clients/BufNMFCross/BufNMFCross.cpp deleted file mode 100644 index 8323340..0000000 --- a/src/clients/BufNMFCross/BufNMFCross.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("BufNMFCross", argv[1]); - return 0; -} diff --git a/src/clients/BufNMFCross/CMakeLists.txt b/src/clients/BufNMFCross/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/BufNMFCross/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/BufNNDSVD/BufNNDSVD.cpp b/src/clients/BufNNDSVD/BufNNDSVD.cpp deleted file mode 100644 index 2407e08..0000000 --- a/src/clients/BufNNDSVD/BufNNDSVD.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("BufNNDSVD", argv[1]); - return 0; -} diff --git a/src/clients/BufNNDSVD/CMakeLists.txt b/src/clients/BufNNDSVD/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/BufNNDSVD/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/BufNoveltyFeature/BufNoveltyFeature.cpp b/src/clients/BufNoveltyFeature/BufNoveltyFeature.cpp deleted file mode 100644 index c016b8a..0000000 --- a/src/clients/BufNoveltyFeature/BufNoveltyFeature.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("BufNoveltyFeature", argv[1]); - return 0; -} diff --git a/src/clients/BufNoveltyFeature/CMakeLists.txt b/src/clients/BufNoveltyFeature/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/BufNoveltyFeature/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/BufNoveltySlice/BufNoveltySlice.cpp b/src/clients/BufNoveltySlice/BufNoveltySlice.cpp deleted file mode 100644 index dc13285..0000000 --- a/src/clients/BufNoveltySlice/BufNoveltySlice.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("BufNoveltySlice", argv[1]); - return 0; -} diff --git a/src/clients/BufNoveltySlice/CMakeLists.txt b/src/clients/BufNoveltySlice/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/BufNoveltySlice/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/BufOnsetFeature/BufOnsetFeature.cpp b/src/clients/BufOnsetFeature/BufOnsetFeature.cpp deleted file mode 100644 index 7bb5968..0000000 --- a/src/clients/BufOnsetFeature/BufOnsetFeature.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("BufOnsetFeature", argv[1]); - return 0; -} diff --git a/src/clients/BufOnsetFeature/CMakeLists.txt b/src/clients/BufOnsetFeature/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/BufOnsetFeature/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/BufOnsetSlice/BufOnsetSlice.cpp b/src/clients/BufOnsetSlice/BufOnsetSlice.cpp deleted file mode 100644 index 7b9ffad..0000000 --- a/src/clients/BufOnsetSlice/BufOnsetSlice.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("BufOnsetSlice", argv[1]); - return 0; -} diff --git a/src/clients/BufOnsetSlice/CMakeLists.txt b/src/clients/BufOnsetSlice/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/BufOnsetSlice/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/BufPitch/BufPitch.cpp b/src/clients/BufPitch/BufPitch.cpp deleted file mode 100644 index acd5d5f..0000000 --- a/src/clients/BufPitch/BufPitch.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("BufPitch", argv[1]); - return 0; -} diff --git a/src/clients/BufPitch/CMakeLists.txt b/src/clients/BufPitch/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/BufPitch/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/BufSTFT/BufSTFT.cpp b/src/clients/BufSTFT/BufSTFT.cpp deleted file mode 100644 index 4282bce..0000000 --- a/src/clients/BufSTFT/BufSTFT.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("BufSTFT", argv[1]); - return 0; -} diff --git a/src/clients/BufSTFT/CMakeLists.txt b/src/clients/BufSTFT/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/BufSTFT/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/BufScale/BufScale.cpp b/src/clients/BufScale/BufScale.cpp deleted file mode 100644 index be8b132..0000000 --- a/src/clients/BufScale/BufScale.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("BufScale", argv[1]); - return 0; -} diff --git a/src/clients/BufScale/CMakeLists.txt b/src/clients/BufScale/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/BufScale/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/BufSelect/BufSelect.cpp b/src/clients/BufSelect/BufSelect.cpp deleted file mode 100644 index 3a7d098..0000000 --- a/src/clients/BufSelect/BufSelect.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("BufSelect", argv[1]); - return 0; -} diff --git a/src/clients/BufSelect/CMakeLists.txt b/src/clients/BufSelect/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/BufSelect/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/BufSelectEvery/BufSelectEvery.cpp b/src/clients/BufSelectEvery/BufSelectEvery.cpp deleted file mode 100644 index 4fcd3ec..0000000 --- a/src/clients/BufSelectEvery/BufSelectEvery.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("BufSelectEvery", argv[1]); - return 0; -} diff --git a/src/clients/BufSelectEvery/CMakeLists.txt b/src/clients/BufSelectEvery/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/BufSelectEvery/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/BufSines/BufSines.cpp b/src/clients/BufSines/BufSines.cpp deleted file mode 100644 index 2d52e40..0000000 --- a/src/clients/BufSines/BufSines.cpp +++ /dev/null @@ -1,20 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("BufSines", argv[1]); - return 0; -} diff --git a/src/clients/BufSines/CMakeLists.txt b/src/clients/BufSines/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/BufSines/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/BufSpectralShape/BufSpectralShape.cpp b/src/clients/BufSpectralShape/BufSpectralShape.cpp deleted file mode 100644 index 94cda35..0000000 --- a/src/clients/BufSpectralShape/BufSpectralShape.cpp +++ /dev/null @@ -1,20 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("BufSpectralShape", argv[1]); - return 0; -} diff --git a/src/clients/BufSpectralShape/CMakeLists.txt b/src/clients/BufSpectralShape/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/BufSpectralShape/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/BufStats/BufStats.cpp b/src/clients/BufStats/BufStats.cpp deleted file mode 100644 index df204a4..0000000 --- a/src/clients/BufStats/BufStats.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("BufStats", argv[1]); - return 0; -} diff --git a/src/clients/BufStats/CMakeLists.txt b/src/clients/BufStats/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/BufStats/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/BufThreadDemo/BufThreadDemo.cpp b/src/clients/BufThreadDemo/BufThreadDemo.cpp deleted file mode 100644 index 8a3aac6..0000000 --- a/src/clients/BufThreadDemo/BufThreadDemo.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("BufThreadDemo", argv[1]); - return 0; -} diff --git a/src/clients/BufThreadDemo/CMakeLists.txt b/src/clients/BufThreadDemo/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/BufThreadDemo/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/BufThresh/BufThresh.cpp b/src/clients/BufThresh/BufThresh.cpp deleted file mode 100644 index 09260e9..0000000 --- a/src/clients/BufThresh/BufThresh.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("BufThresh", argv[1]); - return 0; -} diff --git a/src/clients/BufThresh/CMakeLists.txt b/src/clients/BufThresh/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/BufThresh/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/BufTransientSlice/BufTransientSlice.cpp b/src/clients/BufTransientSlice/BufTransientSlice.cpp deleted file mode 100644 index e71a622..0000000 --- a/src/clients/BufTransientSlice/BufTransientSlice.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("BufTransientSlice", argv[1]); - return 0; -} diff --git a/src/clients/BufTransientSlice/CMakeLists.txt b/src/clients/BufTransientSlice/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/BufTransientSlice/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/BufTransients/BufTransients.cpp b/src/clients/BufTransients/BufTransients.cpp deleted file mode 100644 index f2e9466..0000000 --- a/src/clients/BufTransients/BufTransients.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("BufTransients", argv[1]); - return 0; -} diff --git a/src/clients/BufTransients/CMakeLists.txt b/src/clients/BufTransients/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/BufTransients/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/Chroma/CMakeLists.txt b/src/clients/Chroma/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/Chroma/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/Chroma/Chroma.cpp b/src/clients/Chroma/Chroma.cpp deleted file mode 100644 index 002e93e..0000000 --- a/src/clients/Chroma/Chroma.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("Chroma", argv[1]); - return 0; -} diff --git a/src/clients/DataSet/CMakeLists.txt b/src/clients/DataSet/CMakeLists.txt deleted file mode 100644 index e1acfda..0000000 --- a/src/clients/DataSet/CMakeLists.txt +++ /dev/null @@ -1,26 +0,0 @@ -cmake_minimum_required(VERSION 3.3) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) - -# set(CMAKE_CXX_STANDARD 11) -# set(CMAKE_CXX_STANDARD_REQUIRED ON) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) -# target_link_libraries(${PROJECT_NAME} FLUID_DECOMPOSITION) -# target_include_directories( -# ${PROJECT_NAME} -# PRIVATE -# "${CMAKE_CURRENT_SOURCE_DIR}/../../include" -# ) -# -# target_include_directories( -# ${PROJECT_NAME} -# SYSTEM PRIVATE -# "${C74_MAX_INCLUDES}" -# "${C74_MSP_INCLUDES}" -# "${C74_JIT_INCLUDES}" -# ) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/DataSet/DataSet.cpp b/src/clients/DataSet/DataSet.cpp deleted file mode 100644 index 225d8ae..0000000 --- a/src/clients/DataSet/DataSet.cpp +++ /dev/null @@ -1,9 +0,0 @@ -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("DataSet", argv[1]); - return 0; -} diff --git a/src/clients/DataSetQuery/CMakeLists.txt b/src/clients/DataSetQuery/CMakeLists.txt deleted file mode 100644 index e1acfda..0000000 --- a/src/clients/DataSetQuery/CMakeLists.txt +++ /dev/null @@ -1,26 +0,0 @@ -cmake_minimum_required(VERSION 3.3) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) - -# set(CMAKE_CXX_STANDARD 11) -# set(CMAKE_CXX_STANDARD_REQUIRED ON) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) -# target_link_libraries(${PROJECT_NAME} FLUID_DECOMPOSITION) -# target_include_directories( -# ${PROJECT_NAME} -# PRIVATE -# "${CMAKE_CURRENT_SOURCE_DIR}/../../include" -# ) -# -# target_include_directories( -# ${PROJECT_NAME} -# SYSTEM PRIVATE -# "${C74_MAX_INCLUDES}" -# "${C74_MSP_INCLUDES}" -# "${C74_JIT_INCLUDES}" -# ) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/DataSetQuery/DataSetQuery.cpp b/src/clients/DataSetQuery/DataSetQuery.cpp deleted file mode 100644 index c3692dd..0000000 --- a/src/clients/DataSetQuery/DataSetQuery.cpp +++ /dev/null @@ -1,9 +0,0 @@ -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("DataSetQuery", argv[1]); - return 0; -} diff --git a/src/clients/Gain/CMakeLists.txt b/src/clients/Gain/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/Gain/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/Gain/Gain.cpp b/src/clients/Gain/Gain.cpp deleted file mode 100644 index afa0d86..0000000 --- a/src/clients/Gain/Gain.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("Gain", argv[1]); - return 0; -} diff --git a/src/clients/Grid/CMakeLists.txt b/src/clients/Grid/CMakeLists.txt deleted file mode 100644 index e1acfda..0000000 --- a/src/clients/Grid/CMakeLists.txt +++ /dev/null @@ -1,26 +0,0 @@ -cmake_minimum_required(VERSION 3.3) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) - -# set(CMAKE_CXX_STANDARD 11) -# set(CMAKE_CXX_STANDARD_REQUIRED ON) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) -# target_link_libraries(${PROJECT_NAME} FLUID_DECOMPOSITION) -# target_include_directories( -# ${PROJECT_NAME} -# PRIVATE -# "${CMAKE_CURRENT_SOURCE_DIR}/../../include" -# ) -# -# target_include_directories( -# ${PROJECT_NAME} -# SYSTEM PRIVATE -# "${C74_MAX_INCLUDES}" -# "${C74_MSP_INCLUDES}" -# "${C74_JIT_INCLUDES}" -# ) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/Grid/Grid.cpp b/src/clients/Grid/Grid.cpp deleted file mode 100644 index 7c5256a..0000000 --- a/src/clients/Grid/Grid.cpp +++ /dev/null @@ -1,9 +0,0 @@ -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("Grid", argv[1]); - return 0; -} diff --git a/src/clients/HPSS/CMakeLists.txt b/src/clients/HPSS/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/HPSS/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/HPSS/HPSS.cpp b/src/clients/HPSS/HPSS.cpp deleted file mode 100644 index f71690f..0000000 --- a/src/clients/HPSS/HPSS.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("HPSS", argv[1]); - return 0; -} diff --git a/src/clients/KDTree/CMakeLists.txt b/src/clients/KDTree/CMakeLists.txt deleted file mode 100644 index e1acfda..0000000 --- a/src/clients/KDTree/CMakeLists.txt +++ /dev/null @@ -1,26 +0,0 @@ -cmake_minimum_required(VERSION 3.3) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) - -# set(CMAKE_CXX_STANDARD 11) -# set(CMAKE_CXX_STANDARD_REQUIRED ON) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) -# target_link_libraries(${PROJECT_NAME} FLUID_DECOMPOSITION) -# target_include_directories( -# ${PROJECT_NAME} -# PRIVATE -# "${CMAKE_CURRENT_SOURCE_DIR}/../../include" -# ) -# -# target_include_directories( -# ${PROJECT_NAME} -# SYSTEM PRIVATE -# "${C74_MAX_INCLUDES}" -# "${C74_MSP_INCLUDES}" -# "${C74_JIT_INCLUDES}" -# ) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/KDTree/KDTree.cpp b/src/clients/KDTree/KDTree.cpp deleted file mode 100644 index 39aa337..0000000 --- a/src/clients/KDTree/KDTree.cpp +++ /dev/null @@ -1,9 +0,0 @@ -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("KDTree", argv[1]); - return 0; -} diff --git a/src/clients/KMeans/CMakeLists.txt b/src/clients/KMeans/CMakeLists.txt deleted file mode 100644 index e1acfda..0000000 --- a/src/clients/KMeans/CMakeLists.txt +++ /dev/null @@ -1,26 +0,0 @@ -cmake_minimum_required(VERSION 3.3) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) - -# set(CMAKE_CXX_STANDARD 11) -# set(CMAKE_CXX_STANDARD_REQUIRED ON) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) -# target_link_libraries(${PROJECT_NAME} FLUID_DECOMPOSITION) -# target_include_directories( -# ${PROJECT_NAME} -# PRIVATE -# "${CMAKE_CURRENT_SOURCE_DIR}/../../include" -# ) -# -# target_include_directories( -# ${PROJECT_NAME} -# SYSTEM PRIVATE -# "${C74_MAX_INCLUDES}" -# "${C74_MSP_INCLUDES}" -# "${C74_JIT_INCLUDES}" -# ) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/KMeans/KMeans.cpp b/src/clients/KMeans/KMeans.cpp deleted file mode 100644 index 729ccdc..0000000 --- a/src/clients/KMeans/KMeans.cpp +++ /dev/null @@ -1,9 +0,0 @@ -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("KMeans", argv[1]); - return 0; -} diff --git a/src/clients/KNNClassifier/CMakeLists.txt b/src/clients/KNNClassifier/CMakeLists.txt deleted file mode 100644 index e1acfda..0000000 --- a/src/clients/KNNClassifier/CMakeLists.txt +++ /dev/null @@ -1,26 +0,0 @@ -cmake_minimum_required(VERSION 3.3) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) - -# set(CMAKE_CXX_STANDARD 11) -# set(CMAKE_CXX_STANDARD_REQUIRED ON) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) -# target_link_libraries(${PROJECT_NAME} FLUID_DECOMPOSITION) -# target_include_directories( -# ${PROJECT_NAME} -# PRIVATE -# "${CMAKE_CURRENT_SOURCE_DIR}/../../include" -# ) -# -# target_include_directories( -# ${PROJECT_NAME} -# SYSTEM PRIVATE -# "${C74_MAX_INCLUDES}" -# "${C74_MSP_INCLUDES}" -# "${C74_JIT_INCLUDES}" -# ) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/KNNClassifier/KNNClassifier.cpp b/src/clients/KNNClassifier/KNNClassifier.cpp deleted file mode 100644 index 2f2fca7..0000000 --- a/src/clients/KNNClassifier/KNNClassifier.cpp +++ /dev/null @@ -1,9 +0,0 @@ -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("KNNClassifier", argv[1]); - return 0; -} diff --git a/src/clients/KNNRegressor/CMakeLists.txt b/src/clients/KNNRegressor/CMakeLists.txt deleted file mode 100644 index e1acfda..0000000 --- a/src/clients/KNNRegressor/CMakeLists.txt +++ /dev/null @@ -1,26 +0,0 @@ -cmake_minimum_required(VERSION 3.3) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) - -# set(CMAKE_CXX_STANDARD 11) -# set(CMAKE_CXX_STANDARD_REQUIRED ON) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) -# target_link_libraries(${PROJECT_NAME} FLUID_DECOMPOSITION) -# target_include_directories( -# ${PROJECT_NAME} -# PRIVATE -# "${CMAKE_CURRENT_SOURCE_DIR}/../../include" -# ) -# -# target_include_directories( -# ${PROJECT_NAME} -# SYSTEM PRIVATE -# "${C74_MAX_INCLUDES}" -# "${C74_MSP_INCLUDES}" -# "${C74_JIT_INCLUDES}" -# ) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/KNNRegressor/KNNRegressor.cpp b/src/clients/KNNRegressor/KNNRegressor.cpp deleted file mode 100644 index 7586012..0000000 --- a/src/clients/KNNRegressor/KNNRegressor.cpp +++ /dev/null @@ -1,9 +0,0 @@ -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("KNNRegressor", argv[1]); - return 0; -} diff --git a/src/clients/LabelSet/CMakeLists.txt b/src/clients/LabelSet/CMakeLists.txt deleted file mode 100644 index e1acfda..0000000 --- a/src/clients/LabelSet/CMakeLists.txt +++ /dev/null @@ -1,26 +0,0 @@ -cmake_minimum_required(VERSION 3.3) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) - -# set(CMAKE_CXX_STANDARD 11) -# set(CMAKE_CXX_STANDARD_REQUIRED ON) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) -# target_link_libraries(${PROJECT_NAME} FLUID_DECOMPOSITION) -# target_include_directories( -# ${PROJECT_NAME} -# PRIVATE -# "${CMAKE_CURRENT_SOURCE_DIR}/../../include" -# ) -# -# target_include_directories( -# ${PROJECT_NAME} -# SYSTEM PRIVATE -# "${C74_MAX_INCLUDES}" -# "${C74_MSP_INCLUDES}" -# "${C74_JIT_INCLUDES}" -# ) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/LabelSet/LabelSet.cpp b/src/clients/LabelSet/LabelSet.cpp deleted file mode 100644 index e2f3099..0000000 --- a/src/clients/LabelSet/LabelSet.cpp +++ /dev/null @@ -1,9 +0,0 @@ -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("LabelSet", argv[1]); - return 0; -} diff --git a/src/clients/Loudness/CMakeLists.txt b/src/clients/Loudness/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/Loudness/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/Loudness/Loudness.cpp b/src/clients/Loudness/Loudness.cpp deleted file mode 100644 index 73ac928..0000000 --- a/src/clients/Loudness/Loudness.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("Loudness", argv[1]); - return 0; -} diff --git a/src/clients/MDS/CMakeLists.txt b/src/clients/MDS/CMakeLists.txt deleted file mode 100644 index e1acfda..0000000 --- a/src/clients/MDS/CMakeLists.txt +++ /dev/null @@ -1,26 +0,0 @@ -cmake_minimum_required(VERSION 3.3) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) - -# set(CMAKE_CXX_STANDARD 11) -# set(CMAKE_CXX_STANDARD_REQUIRED ON) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) -# target_link_libraries(${PROJECT_NAME} FLUID_DECOMPOSITION) -# target_include_directories( -# ${PROJECT_NAME} -# PRIVATE -# "${CMAKE_CURRENT_SOURCE_DIR}/../../include" -# ) -# -# target_include_directories( -# ${PROJECT_NAME} -# SYSTEM PRIVATE -# "${C74_MAX_INCLUDES}" -# "${C74_MSP_INCLUDES}" -# "${C74_JIT_INCLUDES}" -# ) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/MDS/MDS.cpp b/src/clients/MDS/MDS.cpp deleted file mode 100644 index 84c94cc..0000000 --- a/src/clients/MDS/MDS.cpp +++ /dev/null @@ -1,9 +0,0 @@ -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("MDS", argv[1]); - return 0; -} diff --git a/src/clients/MFCC/CMakeLists.txt b/src/clients/MFCC/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/MFCC/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/MFCC/MFCC.cpp b/src/clients/MFCC/MFCC.cpp deleted file mode 100644 index e9b2eec..0000000 --- a/src/clients/MFCC/MFCC.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("MFCC", argv[1]); - return 0; -} diff --git a/src/clients/MLPClassifier/CMakeLists.txt b/src/clients/MLPClassifier/CMakeLists.txt deleted file mode 100644 index e1acfda..0000000 --- a/src/clients/MLPClassifier/CMakeLists.txt +++ /dev/null @@ -1,26 +0,0 @@ -cmake_minimum_required(VERSION 3.3) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) - -# set(CMAKE_CXX_STANDARD 11) -# set(CMAKE_CXX_STANDARD_REQUIRED ON) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) -# target_link_libraries(${PROJECT_NAME} FLUID_DECOMPOSITION) -# target_include_directories( -# ${PROJECT_NAME} -# PRIVATE -# "${CMAKE_CURRENT_SOURCE_DIR}/../../include" -# ) -# -# target_include_directories( -# ${PROJECT_NAME} -# SYSTEM PRIVATE -# "${C74_MAX_INCLUDES}" -# "${C74_MSP_INCLUDES}" -# "${C74_JIT_INCLUDES}" -# ) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/MLPClassifier/MLPClassifier.cpp b/src/clients/MLPClassifier/MLPClassifier.cpp deleted file mode 100644 index c154983..0000000 --- a/src/clients/MLPClassifier/MLPClassifier.cpp +++ /dev/null @@ -1,9 +0,0 @@ -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("MLPClassifier", argv[1]); - return 0; -} diff --git a/src/clients/MLPRegressor/CMakeLists.txt b/src/clients/MLPRegressor/CMakeLists.txt deleted file mode 100644 index e1acfda..0000000 --- a/src/clients/MLPRegressor/CMakeLists.txt +++ /dev/null @@ -1,26 +0,0 @@ -cmake_minimum_required(VERSION 3.3) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) - -# set(CMAKE_CXX_STANDARD 11) -# set(CMAKE_CXX_STANDARD_REQUIRED ON) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) -# target_link_libraries(${PROJECT_NAME} FLUID_DECOMPOSITION) -# target_include_directories( -# ${PROJECT_NAME} -# PRIVATE -# "${CMAKE_CURRENT_SOURCE_DIR}/../../include" -# ) -# -# target_include_directories( -# ${PROJECT_NAME} -# SYSTEM PRIVATE -# "${C74_MAX_INCLUDES}" -# "${C74_MSP_INCLUDES}" -# "${C74_JIT_INCLUDES}" -# ) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/MLPRegressor/MLPRegressor.cpp b/src/clients/MLPRegressor/MLPRegressor.cpp deleted file mode 100644 index ff3733b..0000000 --- a/src/clients/MLPRegressor/MLPRegressor.cpp +++ /dev/null @@ -1,9 +0,0 @@ -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("MLPRegressor", argv[1]); - return 0; -} diff --git a/src/clients/MelBands/CMakeLists.txt b/src/clients/MelBands/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/MelBands/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/MelBands/MelBands.cpp b/src/clients/MelBands/MelBands.cpp deleted file mode 100644 index 9c21327..0000000 --- a/src/clients/MelBands/MelBands.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("MelBands", argv[1]); - return 0; -} diff --git a/src/clients/NMFFilter/CMakeLists.txt b/src/clients/NMFFilter/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/NMFFilter/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/NMFFilter/NMFFilter.cpp b/src/clients/NMFFilter/NMFFilter.cpp deleted file mode 100644 index 7088807..0000000 --- a/src/clients/NMFFilter/NMFFilter.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("NMFFilter", argv[1]); - return 0; -} diff --git a/src/clients/NMFMatch/CMakeLists.txt b/src/clients/NMFMatch/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/NMFMatch/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/NMFMatch/NMFMatch.cpp b/src/clients/NMFMatch/NMFMatch.cpp deleted file mode 100644 index dcb384d..0000000 --- a/src/clients/NMFMatch/NMFMatch.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("NMFMatch", argv[1]); - return 0; -} diff --git a/src/clients/NMFMorph/CMakeLists.txt b/src/clients/NMFMorph/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/NMFMorph/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/NMFMorph/NMFMorph.cpp b/src/clients/NMFMorph/NMFMorph.cpp deleted file mode 100644 index e7f7e5e..0000000 --- a/src/clients/NMFMorph/NMFMorph.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("NMFMorph", argv[1]); - return 0; -} diff --git a/src/clients/Normalize/CMakeLists.txt b/src/clients/Normalize/CMakeLists.txt deleted file mode 100644 index e1acfda..0000000 --- a/src/clients/Normalize/CMakeLists.txt +++ /dev/null @@ -1,26 +0,0 @@ -cmake_minimum_required(VERSION 3.3) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) - -# set(CMAKE_CXX_STANDARD 11) -# set(CMAKE_CXX_STANDARD_REQUIRED ON) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) -# target_link_libraries(${PROJECT_NAME} FLUID_DECOMPOSITION) -# target_include_directories( -# ${PROJECT_NAME} -# PRIVATE -# "${CMAKE_CURRENT_SOURCE_DIR}/../../include" -# ) -# -# target_include_directories( -# ${PROJECT_NAME} -# SYSTEM PRIVATE -# "${C74_MAX_INCLUDES}" -# "${C74_MSP_INCLUDES}" -# "${C74_JIT_INCLUDES}" -# ) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/Normalize/Normalize.cpp b/src/clients/Normalize/Normalize.cpp deleted file mode 100644 index f3ba475..0000000 --- a/src/clients/Normalize/Normalize.cpp +++ /dev/null @@ -1,9 +0,0 @@ -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("Normalize", argv[1]); - return 0; -} diff --git a/src/clients/NoveltyFeature/CMakeLists.txt b/src/clients/NoveltyFeature/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/NoveltyFeature/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/NoveltyFeature/NoveltyFeature.cpp b/src/clients/NoveltyFeature/NoveltyFeature.cpp deleted file mode 100644 index 9c97da6..0000000 --- a/src/clients/NoveltyFeature/NoveltyFeature.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("NoveltyFeature", argv[1]); - return 0; -} diff --git a/src/clients/NoveltySlice/CMakeLists.txt b/src/clients/NoveltySlice/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/NoveltySlice/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/NoveltySlice/NoveltySlice.cpp b/src/clients/NoveltySlice/NoveltySlice.cpp deleted file mode 100644 index 6e72f4c..0000000 --- a/src/clients/NoveltySlice/NoveltySlice.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("NoveltySlice", argv[1]); - return 0; -} diff --git a/src/clients/OnsetFeature/CMakeLists.txt b/src/clients/OnsetFeature/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/OnsetFeature/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/OnsetFeature/OnsetFeature.cpp b/src/clients/OnsetFeature/OnsetFeature.cpp deleted file mode 100644 index 630a621..0000000 --- a/src/clients/OnsetFeature/OnsetFeature.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("OnsetFeature", argv[1]); - return 0; -} diff --git a/src/clients/OnsetSlice/CMakeLists.txt b/src/clients/OnsetSlice/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/OnsetSlice/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/OnsetSlice/OnsetSlice.cpp b/src/clients/OnsetSlice/OnsetSlice.cpp deleted file mode 100644 index c06d555..0000000 --- a/src/clients/OnsetSlice/OnsetSlice.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("OnsetSlice", argv[1]); - return 0; -} diff --git a/src/clients/PCA/CMakeLists.txt b/src/clients/PCA/CMakeLists.txt deleted file mode 100644 index e1acfda..0000000 --- a/src/clients/PCA/CMakeLists.txt +++ /dev/null @@ -1,26 +0,0 @@ -cmake_minimum_required(VERSION 3.3) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) - -# set(CMAKE_CXX_STANDARD 11) -# set(CMAKE_CXX_STANDARD_REQUIRED ON) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) -# target_link_libraries(${PROJECT_NAME} FLUID_DECOMPOSITION) -# target_include_directories( -# ${PROJECT_NAME} -# PRIVATE -# "${CMAKE_CURRENT_SOURCE_DIR}/../../include" -# ) -# -# target_include_directories( -# ${PROJECT_NAME} -# SYSTEM PRIVATE -# "${C74_MAX_INCLUDES}" -# "${C74_MSP_INCLUDES}" -# "${C74_JIT_INCLUDES}" -# ) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/PCA/PCA.cpp b/src/clients/PCA/PCA.cpp deleted file mode 100644 index 0bcdf54..0000000 --- a/src/clients/PCA/PCA.cpp +++ /dev/null @@ -1,9 +0,0 @@ -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("PCA", argv[1]); - return 0; -} diff --git a/src/clients/Pitch/CMakeLists.txt b/src/clients/Pitch/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/Pitch/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/Pitch/Pitch.cpp b/src/clients/Pitch/Pitch.cpp deleted file mode 100644 index 335eefe..0000000 --- a/src/clients/Pitch/Pitch.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("Pitch", argv[1]); - return 0; -} diff --git a/src/clients/RobustScale/CMakeLists.txt b/src/clients/RobustScale/CMakeLists.txt deleted file mode 100644 index e1acfda..0000000 --- a/src/clients/RobustScale/CMakeLists.txt +++ /dev/null @@ -1,26 +0,0 @@ -cmake_minimum_required(VERSION 3.3) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) - -# set(CMAKE_CXX_STANDARD 11) -# set(CMAKE_CXX_STANDARD_REQUIRED ON) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) -# target_link_libraries(${PROJECT_NAME} FLUID_DECOMPOSITION) -# target_include_directories( -# ${PROJECT_NAME} -# PRIVATE -# "${CMAKE_CURRENT_SOURCE_DIR}/../../include" -# ) -# -# target_include_directories( -# ${PROJECT_NAME} -# SYSTEM PRIVATE -# "${C74_MAX_INCLUDES}" -# "${C74_MSP_INCLUDES}" -# "${C74_JIT_INCLUDES}" -# ) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/RobustScale/RobustScale.cpp b/src/clients/RobustScale/RobustScale.cpp deleted file mode 100644 index 2b9b9ec..0000000 --- a/src/clients/RobustScale/RobustScale.cpp +++ /dev/null @@ -1,9 +0,0 @@ -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("RobustScale", argv[1]); - return 0; -} diff --git a/src/clients/STFTPass/CMakeLists.txt b/src/clients/STFTPass/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/STFTPass/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/STFTPass/STFTPass.cpp b/src/clients/STFTPass/STFTPass.cpp deleted file mode 100644 index d253f0e..0000000 --- a/src/clients/STFTPass/STFTPass.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("STFTPass", argv[1]); - return 0; -} diff --git a/src/clients/Sines/CMakeLists.txt b/src/clients/Sines/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/Sines/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/Sines/Sines.cpp b/src/clients/Sines/Sines.cpp deleted file mode 100644 index f5d2a2b..0000000 --- a/src/clients/Sines/Sines.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("Sines", argv[1]); - return 0; -} diff --git a/src/clients/SpectralShape/CMakeLists.txt b/src/clients/SpectralShape/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/SpectralShape/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/SpectralShape/SpectralShape.cpp b/src/clients/SpectralShape/SpectralShape.cpp deleted file mode 100644 index 0f84e56..0000000 --- a/src/clients/SpectralShape/SpectralShape.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("SpectralShape", argv[1]); - return 0; -} diff --git a/src/clients/Standardize/CMakeLists.txt b/src/clients/Standardize/CMakeLists.txt deleted file mode 100644 index e1acfda..0000000 --- a/src/clients/Standardize/CMakeLists.txt +++ /dev/null @@ -1,26 +0,0 @@ -cmake_minimum_required(VERSION 3.3) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) - -# set(CMAKE_CXX_STANDARD 11) -# set(CMAKE_CXX_STANDARD_REQUIRED ON) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) -# target_link_libraries(${PROJECT_NAME} FLUID_DECOMPOSITION) -# target_include_directories( -# ${PROJECT_NAME} -# PRIVATE -# "${CMAKE_CURRENT_SOURCE_DIR}/../../include" -# ) -# -# target_include_directories( -# ${PROJECT_NAME} -# SYSTEM PRIVATE -# "${C74_MAX_INCLUDES}" -# "${C74_MSP_INCLUDES}" -# "${C74_JIT_INCLUDES}" -# ) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/Standardize/Standardize.cpp b/src/clients/Standardize/Standardize.cpp deleted file mode 100644 index 14c432d..0000000 --- a/src/clients/Standardize/Standardize.cpp +++ /dev/null @@ -1,9 +0,0 @@ -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("Standardize", argv[1]); - return 0; -} diff --git a/src/clients/Stats/CMakeLists.txt b/src/clients/Stats/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/Stats/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/Stats/Stats.cpp b/src/clients/Stats/Stats.cpp deleted file mode 100644 index db14aa8..0000000 --- a/src/clients/Stats/Stats.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("Stats", argv[1]); - return 0; -} diff --git a/src/clients/TransientSlice/CMakeLists.txt b/src/clients/TransientSlice/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/TransientSlice/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/TransientSlice/TransientSlice.cpp b/src/clients/TransientSlice/TransientSlice.cpp deleted file mode 100644 index db13f19..0000000 --- a/src/clients/TransientSlice/TransientSlice.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("TransientSlice", argv[1]); - return 0; -} diff --git a/src/clients/Transients/CMakeLists.txt b/src/clients/Transients/CMakeLists.txt deleted file mode 100644 index b07cf17..0000000 --- a/src/clients/Transients/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -# Copyright 2017-2019 University of Huddersfield. -# Licensed under the BSD-3 License. -# See license.md file in the project root for full license information. -# This project has received funding from the European Research Council (ERC) -# under the European Union’s Horizon 2020 research and innovation programme -# (grant agreement No 725899). - -cmake_minimum_required(VERSION 3.11) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/Transients/Transients.cpp b/src/clients/Transients/Transients.cpp deleted file mode 100644 index ad7d029..0000000 --- a/src/clients/Transients/Transients.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/* -Part of the Fluid Corpus Manipulation Project (http://www.flucoma.org/) -Copyright 2017-2019 University of Huddersfield. -Licensed under the BSD-3 License. -See license.md file in the project root for full license information. -This project has received funding from the European Research Council (ERC) -under the European Union’s Horizon 2020 research and innovation programme -(grant agreement No 725899). -*/ - -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("Transients", argv[1]); - return 0; -} diff --git a/src/clients/UMAP/CMakeLists.txt b/src/clients/UMAP/CMakeLists.txt deleted file mode 100644 index e1acfda..0000000 --- a/src/clients/UMAP/CMakeLists.txt +++ /dev/null @@ -1,26 +0,0 @@ -cmake_minimum_required(VERSION 3.3) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-pretarget.cmake) - -# set(CMAKE_CXX_STANDARD 11) -# set(CMAKE_CXX_STANDARD_REQUIRED ON) -add_executable( - ${PROJECT_NAME} - ${PROJECT_NAME}.cpp -) -# target_link_libraries(${PROJECT_NAME} FLUID_DECOMPOSITION) -# target_include_directories( -# ${PROJECT_NAME} -# PRIVATE -# "${CMAKE_CURRENT_SOURCE_DIR}/../../include" -# ) -# -# target_include_directories( -# ${PROJECT_NAME} -# SYSTEM PRIVATE -# "${C74_MAX_INCLUDES}" -# "${C74_MSP_INCLUDES}" -# "${C74_JIT_INCLUDES}" -# ) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../../script/dump-posttarget.cmake) diff --git a/src/clients/UMAP/UMAP.cpp b/src/clients/UMAP/UMAP.cpp deleted file mode 100644 index 2caf39a..0000000 --- a/src/clients/UMAP/UMAP.cpp +++ /dev/null @@ -1,9 +0,0 @@ -#include -#include -int main(int argc, char *argv[]) { - using namespace fluid::client; - if (!argc) std::cerr << "Please pass a folder to write to"; - std::cout << "Write JSON to " << argv[1]; - ParameterDump::dump("UMAP", argv[1]); - return 0; -}