Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CMakeLists.txt 462B

12345678910111213141516171819202122232425262728
  1. include_directories(${MXML_INCLUDE_DIR})
  2. set(zynaddsubfx_misc_SRCS
  3. Misc/Bank.cpp
  4. Misc/Config.cpp
  5. Misc/Dump.cpp
  6. Misc/Master.cpp
  7. Misc/Microtonal.cpp
  8. Misc/Part.cpp
  9. Misc/Util.cpp
  10. Misc/XMLwrapper.cpp
  11. Misc/Recorder.cpp
  12. Misc/WavFile.cpp
  13. Misc/WaveShapeSmps.cpp
  14. )
  15. if(LashEnable)
  16. set(zynaddsubfx_misc_SRCS
  17. ${zynaddsubfx_misc_SRCS}
  18. Misc/LASHClient.cpp
  19. PARENT_SCOPE)
  20. else()
  21. set(zynaddsubfx_misc_SRCS
  22. ${zynaddsubfx_misc_SRCS}
  23. PARENT_SCOPE)
  24. endif()