FFT: Prevent user from attempting hops smaller than SC's block size
[supercollider.git] / server / CMakeLists.txt
blob4d2d95d8a00d9dac15a77b795629beb04cc34a9c
1 if (NOT APPLE AND NOT WIN32)
2         # on apple we leave this undefined so it defaults to .scx (in the code)
3         add_definitions("-DSC_PLUGIN_EXT=\".so\"")
4 endif()
6 include_directories(${CMAKE_SOURCE_DIR}/external_libraries
7                                         ${CMAKE_SOURCE_DIR}/external_libraries/boost_lockfree
8                                         ${CMAKE_SOURCE_DIR}/external_libraries/nova-simd
9                                         ${CMAKE_SOURCE_DIR}/external_libraries/nova-tt
10                                         )
13 if (Boost_FOUND)
14         include_directories(${Boost_INCLUDE_DIRS})
15 else()
16         include_directories(${CMAKE_SOURCE_DIR}/external_libraries/boost)
17 endif()
20 add_subdirectory(plugins)
21 add_subdirectory(scsynth)
23 if (SUPERNOVA)
24         add_subdirectory(supernova)
25 endif()