1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349
|
#---------
# includes
#---------
if (SUPERNOVA)
include_directories(${SC_PATH}/external_libraries/nova-tt)
# actually just boost.atomic
include_directories(${SC_PATH}/external_libraries/boost)
include_directories(${SC_PATH}/external_libraries/boost_lockfree)
include_directories(${SC_PATH}/external_libraries/boost-lockfree)
endif()
include_directories(${CMAKE_SOURCE_DIR}/include/)
include_directories(scfft_old/)
include_directories(${SC_PATH}/common)
include_directories(${SC_PATH}/plugin_interface)
include_directories(${SC_PATH}/include/plugin_interface)
include_directories(${SC_PATH}/include/common)
include_directories(${SC_PATH}/server/plugins) # for FFT_UGens.h
# old-style directory layout
include_directories(${SC_PATH}/common/Headers/plugin_interface)
include_directories(${SC_PATH}/common/Headers/common)
include_directories(${SC_PATH}/common/Source/plugins) # for FFT_UGens.h
include_directories(${SC_PATH}/external_libraries/libsndfile/)
#-------
# macros
#-------
macro(GET_GCC_VERSION VAR)
if (CMAKE_COMPILER_IS_GNUCC)
execute_process(
COMMAND ${CMAKE_CXX_COMPILER} --version OUTPUT_VARIABLE OUTPUT)
string(REGEX REPLACE
".* ([0-9]\\.[0-9]\\.[0-9]) .*" "\\1" ${VAR} ${OUTPUT})
endif()
endmacro(GET_GCC_VERSION)
macro(FIND_AND_BUILD_PLUGINS DIR)
file(GLOB PLUGIN_SRC RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" "${DIR}/*.cpp")
foreach(plugin ${PLUGIN_SRC})
get_filename_component(basename ${plugin} NAME_WE)
BUILD_PLUGIN(${basename} ${plugin} "" "${DIR}")
endforeach(plugin)
endmacro()
# Hacky: OSX plugins should install in PLUGIN_DIR
macro(BUILD_PLUGIN PLUGIN_NAME PLUGIN_SOURCES PLUGIN_LIBS PLUGIN_DIR)
add_library(${PLUGIN_NAME} MODULE ${PLUGIN_SOURCES})
list(APPEND plugins ${PLUGIN_NAME})
target_link_libraries(${PLUGIN_NAME} ${PLUGIN_LIBS})
if(APPLE)
install(TARGETS ${PLUGIN_NAME}
DESTINATION ${INSTALL_DESTINATION}/${PLUGIN_DIR})
endif()
if(SUPERNOVA)
add_library(${PLUGIN_NAME}_supernova MODULE ${PLUGIN_SOURCES})
target_link_libraries(${PLUGIN_NAME}_supernova ${PLUGIN_LIBS})
list(APPEND supernova_plugins ${PLUGIN_NAME}_supernova)
set_property(TARGET ${PLUGIN_NAME}_supernova
PROPERTY COMPILE_DEFINITIONS SUPERNOVA)
if(APPLE)
install(TARGETS ${PLUGIN_NAME}_supernova
DESTINATION ${INSTALL_DESTINATION}/${PLUGIN_DIR})
endif()
endif()
endmacro()
#-----------------------
# plugins without extras
#-----------------------
set(PLUGIN_DIRS
AntiAliasingOscillators
ATK
BatUGens
BBCut2UGens
BerlachUGens
BhobUGens
BlackrainUGens
ConcatUGens
DistortionUGens
DWGUGens
GlitchUGens
JoshUGens
LoopBufUGens
MCLDUGens
MdaUGens
Neuromodules
RFWUGens
RMEQSuiteUGens
SCMIRUGens
SkUGens
SLUGens
SummerUGens
TagSystemUGens
VBAPUGens
VOSIMUGens
)
# plugins with extra lib
set(PLUGIN_DIRS_EXTRA
AuditoryModeling
BetablockerUGens
DEINDUGens
LadspaUGen
MembraneUGens
NCAnalysisUGens
OteyPianoUGens
PitchDetection
StkUGens
TJUGens
)
if (${CMAKE_CXX_COMPILER_ID} MATCHES "Clang" AND ${CMAKE_CXX_COMPILER_VERSION} MATCHES "^6.0.")
set(BHOBFILT_CPP "${CMAKE_CURRENT_SOURCE_DIR}/BhobUGens/BhobFilt.cpp")
message(STATUS "Skipping vectorization on BhobFilt.cpp because of Clang bug. (${BHOBFILT_CPP})")
SET_SOURCE_FILES_PROPERTIES(${BHOBFILT_CPP} PROPERTIES COMPILE_FLAGS "-fno-slp-vectorize")
endif()
set(plugins "")
set(supernova_plugins "")
set(CMAKE_SHARED_MODULE_PREFIX "")
set(PLUGIN_EXTENSION ".so")
if (APPLE OR WIN32)
set(CMAKE_SHARED_MODULE_SUFFIX ".scx")
set(PLUGIN_EXTENSION ".scx")
endif()
GET_GCC_VERSION(gcc_version)
if (CMAKE_SYSTEM_NAME MATCHES "Linux")
set(INSTALL_DESTINATION "lib/SuperCollider/plugins")
if (QUARKS)
set(INSTALL_DESTINATION_LADSPALIST
"bin")
set(INSTALL_DESTINATION_DISTRO
"share/SuperCollider/SC3plugins")
else()
set(INSTALL_DESTINATION_LADSPALIST
"bin")
set(INSTALL_DESTINATION_DISTRO
"share/SuperCollider/Extensions/SC3plugins")
endif(QUARKS)
else()
set(INSTALL_DESTINATION "SC3plugins")
set(INSTALL_DESTINATION_LADSPALIST "SC3plugins/LadspaUGen")
set(INSTALL_DESTINATION_DISTRO "SC3plugins")
endif()
foreach(DIR ${PLUGIN_DIRS})
FIND_AND_BUILD_PLUGINS(${DIR})
endforeach(DIR)
# build source files placed in 'local' by the user (i.e. by default this does nothing)
file(GLOB local_sources RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} "local/*.cpp")
message(STATUS "local_sources: ${local_sources}")
foreach(plugin ${local_sources})
string(REPLACE .cpp "" plugin_name ${plugin} )
string(REPLACE "local/" "" plugin_name ${plugin_name} )
BUILD_PLUGIN(${plugin_name} ${plugin} "" "local")
endforeach(plugin)
# local can have help files and classes too
install(DIRECTORY local DESTINATION "${INSTALL_DESTINATION_DISTRO}"
FILES_MATCHING PATTERN "*.sc" PATTERN "*.scd" PATTERN "*.html" PATTERN "*.schelp" PATTERN "*.rtf")
#---------------------
# plugins with extras:
#---------------------
# AuditoryModeling
file(GLOB AuditoryModelingSources AuditoryModeling/*cpp)
BUILD_PLUGIN(AuditoryModeling "${AuditoryModelingSources}" "" "AuditoryModeling")
#BetablockerUGens
BUILD_PLUGIN(BetablockerUGens "BetablockerUGens/BetablockerUGens.cpp;BetablockerUGens/betablocker/machine.cpp;BetablockerUGens/betablocker/thread.cpp"
"" "BetablockerUGens")
# DEINDUGens
BUILD_PLUGIN(DiodeRingMod
"DEINDUGens/DiodeRingMod.cpp"
"" "DiodeRingMod")
BUILD_PLUGIN(NoiseRing
"DEINDUGens/NoiseRing.cpp"
"" "NoiseRing")
BUILD_PLUGIN(complexRes
"DEINDUGens/complexRes.cpp"
"" "complexRes")
include_directories(DEINDUGens/include)
BUILD_PLUGIN(JPverb
"DEINDUGens/JPverbRaw.cpp"
"" "JPverb")
set_property(TARGET JPverb APPEND PROPERTY COMPILE_DEFINITIONS SC_FAUST_PREFIX="\"\"")
set_property(TARGET JPverb APPEND PROPERTY COMPILE_DEFINITIONS mydsp=JPVERB)
set_property(TARGET JPverb APPEND PROPERTY COMPILE_DEFINITIONS NDEBUG)
BUILD_PLUGIN(Greyhole
"DEINDUGens/GreyholeRaw.cpp"
"" "Greyhole")
set_property(TARGET Greyhole APPEND PROPERTY COMPILE_DEFINITIONS SC_FAUST_PREFIX="\"\"")
set_property(TARGET Greyhole APPEND PROPERTY COMPILE_DEFINITIONS mydsp=GREYHOLE)
set_property(TARGET Greyhole APPEND PROPERTY COMPILE_DEFINITIONS NDEBUG)
# MembraneUGens
BUILD_PLUGIN(MembraneUGens "MembraneUGens/Membrane_shape.c;MembraneUGens/Membrane.cpp"
"" "MembraneUGens")
# LadspaUGen
if(NOT WIN32)
BUILD_PLUGIN(LadspaUGen "LadspaUGen/LadspaUGen.cpp;LadspaUGen/search.c" "dl" "LadspaUGen")
add_executable(ladspalist LadspaUGen/ladspalist.c LadspaUGen/search.c)
target_link_libraries(ladspalist dl)
endif()
# OteyPianoUGens
BUILD_PLUGIN(OteyPianoUGens "OteyPianoUGens/OteyPiano.cpp;OteyPianoUGens/dwgs.cpp;OteyPianoUGens/filter.cpp;OteyPianoUGens/hammer.cpp;OteyPianoUGens/reverb.cpp"
"" "OteyPianoUGens")
# PitchDetectionUGens
file(GLOB PitchDetectionSources PitchDetection/*cpp)
if(APPLE)
set (PitchDetectionLibs "-framework Accelerate")
else()
find_package(FFTW3f)
if (!FFTW3F_FOUND)
message(SEND_ERROR "Cannot find libfftw3f")
endif()
set (PitchDetectionLibs ${FFTW3F_LIBRARY})
endif()
BUILD_PLUGIN(PitchDetection "${PitchDetectionSources}"
"${PitchDetectionLibs}" "PitchDetection")
if (APPLE)
set_property(TARGET PitchDetection APPEND PROPERTY COMPILE_DEFINITIONS SC_FFT_VDSP)
if (SUPERNOVA)
set_property(TARGET PitchDetection_supernova APPEND PROPERTY COMPILE_DEFINITIONS SC_FFT_VDSP)
endif()
else()
include_directories(${FFTW3F_INCLUDE_DIR})
set_property(TARGET PitchDetection APPEND PROPERTY COMPILE_DEFINITIONS SC_FFT_FFTW)
if (SUPERNOVA)
set_property(TARGET PitchDetection_supernova APPEND PROPERTY COMPILE_DEFINITIONS SC_FFT_FFTW)
endif()
endif()
# StkUGens
if(SYSTEM_STK)
find_package(STK)
add_definitions(-DSYSTEM_STK)
include_directories(${STK_INCLUDE_DIR})
if (EXISTS ${STK_INCLUDE_DIR}/SKINI.msg)
add_definitions(-DSTK_SKINIMSG)
else()
if (NOT EXISTS ${STK_INCLUDE_DIR}/SKINImsg.h)
message(FATAL_ERROR "Your system's stk library headers are missing the SKINI msg include file. Please read Debian Bug #805549 for more information & a fix. Alternatively, you can build the sc3 plugins without SYSTEM_STK using the included stk library.")
endif()
endif()
BUILD_PLUGIN(StkUGens "StkUGens/StkAll.cpp" ${STK_LIBRARY} "StkUGens")
add_subdirectory(StkInst)
else()
add_subdirectory(StkInst)
file(GLOB STKSources "../external_libraries/stk/src/*.cpp")
file(GLOB UnneededSTKSources "../external_libraries/stk/src/Rt*.cpp"
"../external_libraries/stk/src/Inet*.cpp"
"../external_libraries/stk/src/Socket.cpp"
"../external_libraries/stk/src/Tcp*.cpp"
"../external_libraries/stk/src/UdpSocket.cpp"
"../external_libraries/stk/src/Thread.cpp"
"../external_libraries/stk/src/Mutex.cpp"
)
list(REMOVE_ITEM STKSources ${UnneededSTKSources})
include_directories(../external_libraries/stk)
include_directories(../external_libraries/stk/include)
include_directories(../external_libraries/stk/src/include)
BUILD_PLUGIN(StkUGens "StkUGens/StkAll.cpp;${STKSources}" "" "StkUGens")
endif()
# NCAnalysisUGens
file(GLOB NCAnalysisSources NCAnalysisUGens/*cpp)
if(APPLE)
set (NCAnalysisLibs "-framework Accelerate")
else()
set (NCAnalysisLibs ${FFTW3F_LIBRARY})
endif()
BUILD_PLUGIN(NCAnalysisUGens "${NCAnalysisSources}"
${NCAnalysisLibs} "NCAnalysisUGens")
# AYUGens
if (AY)
list(APPEND PLUGIN_DIRS_EXTRA AYUGens)
include_directories(AYUGens/AY_libayemu/include)
BUILD_PLUGIN(AY_UGen "AYUGens/AY_UGen.cpp;AYUGens/AY_libayemu/src/ay8912.c"
"" "AYUGens")
endif()
# TJUGens
if (APPLE AND gcc_version MATCHES "4\\.0.*")
list(REMOVE_ITEM PLUGIN_DIRS_EXTRA TJUGens)
message(WARNING "TJUGens won't be built with gcc-4.0 on Apple")
else()
file(GLOB TJUGensSources TJUGens/*.cpp)
BUILD_PLUGIN(TJUGens "${TJUGensSources}" "" "TJUGens")
endif()
if (NOVA_DISK_IO)
add_subdirectory(NovaDiskIO)
endif()
#--------
# INSTALL
#--------
# OSX plugins install is done in BUILD_PLUGIN macro
if (NOT APPLE)
install(TARGETS ${plugins} ${supernova_plugins}
DESTINATION ${INSTALL_DESTINATION})
endif()
if(NOT WIN32)
install(TARGETS ladspalist
DESTINATION ${INSTALL_DESTINATION_LADSPALIST})
endif()
# install help and sc specific files that are found in 'PLUGIN_NAME/sc' folder
foreach (DIR ${PLUGIN_DIRS};${PLUGIN_DIRS_EXTRA})
install(DIRECTORY "${DIR}/sc/" DESTINATION "${INSTALL_DESTINATION_DISTRO}/${DIR}"
PATTERN "*")
endforeach(DIR)
|