CMakeLists.txt (640B)
1 include_directories(${MXML_INCLUDE_DIR}) 2 3 set(zynaddsubfx_misc_SRCS 4 Misc/Bank.cpp 5 Misc/BankDb.cpp 6 Misc/Config.cpp 7 Misc/Master.cpp 8 Misc/Microtonal.cpp 9 Misc/Part.cpp 10 Misc/Util.cpp 11 Misc/XMLwrapper.cpp 12 Misc/Recorder.cpp 13 Misc/WavFile.cpp 14 Misc/WaveShapeSmps.cpp 15 Misc/MiddleWare.cpp 16 Misc/MsgParsing.cpp 17 Misc/PresetExtractor.cpp 18 Misc/Allocator.cpp 19 Misc/CallbackRepeater.cpp 20 Misc/Schema.cpp 21 Misc/MemLocker.cpp 22 ) 23 24 25 26 if(LashEnable) 27 set(zynaddsubfx_misc_SRCS 28 ${zynaddsubfx_misc_SRCS} 29 Misc/LASHClient.cpp 30 PARENT_SCOPE) 31 else() 32 set(zynaddsubfx_misc_SRCS 33 ${zynaddsubfx_misc_SRCS} 34 PARENT_SCOPE) 35 endif()