gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

CMakeLists.txt (627B)


      1 cmake_minimum_required(VERSION 3.10)
      2 
      3 project(bridgeServer)
      4 
      5 add_executable(bridgeServer)
      6 
      7 set(SOURCES
      8 	bridgeServer.cpp
      9 	clientConnection.cpp clientConnection.h
     10 	config.cpp config.h
     11 	server.cpp server.h
     12 	import.cpp import.h
     13 	romPool.cpp romPool.h
     14 	udpServer.cpp udpServer.h
     15 )
     16 
     17 target_sources(bridgeServer PRIVATE ${SOURCES})
     18 
     19 source_group("source" FILES ${SOURCES})
     20 
     21 target_link_libraries(bridgeServer PUBLIC bridgeLib)
     22 
     23 set_property(TARGET bridgeServer PROPERTY FOLDER "Bridge")
     24 set_property(TARGET bridgeServer PROPERTY OUTPUT_NAME "dsp56300EmuServer")
     25 
     26 install(TARGETS bridgeServer DESTINATION . COMPONENT DSPBridgeServer)