2023-10-22 13:24:32 +02:00
|
|
|
set(PLUGINSCOMMON_SOURCES
|
|
|
|
|
common/plugin/RMSFollower.h
|
|
|
|
|
common/plugin/MessageUtils.h
|
|
|
|
|
common/plugin/MessageUtils.cpp
|
|
|
|
|
common/plugin/InstrumentDescription.h
|
|
|
|
|
common/plugin/InstrumentDescription.cpp
|
|
|
|
|
common/plugin/NativeHelpers.h
|
|
|
|
|
common/plugin/NativeHelpers.cpp
|
|
|
|
|
common/plugin/SfizzFileScan.h
|
|
|
|
|
common/plugin/SfizzFileScan.cpp
|
|
|
|
|
common/plugin/FileTrie.h
|
|
|
|
|
common/plugin/FileTrie.cpp
|
|
|
|
|
common/plugin/SfizzForeignPaths.h
|
|
|
|
|
common/plugin/SfizzForeignPaths.cpp
|
|
|
|
|
common/plugin/SfizzSettings.h
|
|
|
|
|
common/plugin/SfizzSettings.cpp
|
|
|
|
|
)
|
|
|
|
|
source_group("Sources" FILES ${PLUGINSCOMMON_SOURCES})
|
|
|
|
|
add_library(plugins-common STATIC EXCLUDE_FROM_ALL ${PLUGINSCOMMON_SOURCES})
|
|
|
|
|
|
2023-05-08 14:43:33 +02:00
|
|
|
if(APPLE)
|
|
|
|
|
target_sources(plugins-common PRIVATE
|
|
|
|
|
"common/plugin/SfizzForeignPaths.mm"
|
|
|
|
|
"common/plugin/SfizzSettings.mm"
|
|
|
|
|
"common/plugin/NativeHelpers.mm")
|
|
|
|
|
set_property(
|
|
|
|
|
SOURCE "common/plugin/SfizzForeignPaths.mm"
|
|
|
|
|
"common/plugin/SfizzSettings.mm"
|
|
|
|
|
"common/plugin/NativeHelpers.mm"
|
|
|
|
|
APPEND_STRING
|
|
|
|
|
PROPERTY COMPILE_FLAGS " -fobjc-arc")
|
|
|
|
|
endif()
|
|
|
|
|
target_include_directories(plugins-common PUBLIC "common")
|
|
|
|
|
target_link_libraries(plugins-common
|
|
|
|
|
PUBLIC sfizz::spin_mutex
|
|
|
|
|
PUBLIC sfizz::simde sfizz::filesystem absl::strings
|
|
|
|
|
PRIVATE sfizz::pugixml
|
|
|
|
|
PRIVATE sfizz::internal sfizz::sfizz)
|
|
|
|
|
add_library(sfizz::plugins-common ALIAS plugins-common)
|
|
|
|
|
|
2024-01-04 09:57:29 +01:00
|
|
|
add_custom_target(generate_plugins_git_build_id
|
|
|
|
|
COMMAND
|
|
|
|
|
"${CMAKE_COMMAND}"
|
|
|
|
|
"-DSOURCE_DIR=${PROJECT_SOURCE_DIR}"
|
|
|
|
|
"-DOUTPUT_FILE=${PROJECT_BINARY_DIR}/git-build-id/PluginGitBuildId.c"
|
|
|
|
|
"-DPREFIX=Plugin"
|
|
|
|
|
"-P" "${PROJECT_SOURCE_DIR}/library/cmake/GitBuildID.cmake"
|
|
|
|
|
BYPRODUCTS
|
|
|
|
|
"${PROJECT_BINARY_DIR}/git-build-id/PluginGitBuildId.c"
|
|
|
|
|
)
|
|
|
|
|
add_library(plugins_git_build_id STATIC EXCLUDE_FROM_ALL
|
|
|
|
|
"${PROJECT_SOURCE_DIR}/plugins/git-build-id/PluginGitBuildId.h"
|
|
|
|
|
"${PROJECT_BINARY_DIR}/git-build-id/PluginGitBuildId.c"
|
|
|
|
|
)
|
|
|
|
|
target_include_directories(plugins_git_build_id PUBLIC "${PROJECT_SOURCE_DIR}/plugins/git-build-id")
|
|
|
|
|
add_dependencies(plugins_git_build_id generate_plugins_git_build_id)
|
|
|
|
|
add_library(plugins::git_build_id ALIAS plugins_git_build_id)
|
|
|
|
|
|
2023-05-08 14:43:33 +02:00
|
|
|
# Link system dependencies
|
|
|
|
|
if(WIN32)
|
|
|
|
|
elseif(ANDROID)
|
|
|
|
|
elseif(APPLE)
|
|
|
|
|
target_link_libraries(plugins-common PRIVATE
|
|
|
|
|
"${APPLE_FOUNDATION_LIBRARY}")
|
|
|
|
|
else()
|
|
|
|
|
endif()
|
|
|
|
|
|
2023-05-20 16:21:00 +02:00
|
|
|
if((PLUGIN_LV2 AND PLUGIN_LV2_UI) OR PLUGIN_VST3 OR PLUGIN_AU OR PLUGIN_VST2)
|
2023-05-08 14:43:33 +02:00
|
|
|
add_subdirectory(editor)
|
|
|
|
|
endif()
|
|
|
|
|
|
2023-05-20 16:21:00 +02:00
|
|
|
if(PLUGIN_LV2)
|
2023-05-08 14:43:33 +02:00
|
|
|
add_subdirectory(lv2)
|
|
|
|
|
endif()
|
|
|
|
|
|
2023-05-20 16:21:00 +02:00
|
|
|
if((PLUGIN_VST3 OR PLUGIN_AU OR PLUGIN_VST2) AND NOT (PROJECT_SYSTEM_PROCESSOR MATCHES "^(powerpc|ppc).*"))
|
2023-05-08 14:43:33 +02:00
|
|
|
add_subdirectory(vst)
|
|
|
|
|
endif()
|
|
|
|
|
|
2023-05-20 16:21:00 +02:00
|
|
|
if(PLUGIN_PUREDATA)
|
2023-05-08 14:43:33 +02:00
|
|
|
add_subdirectory(puredata)
|
|
|
|
|
endif()
|