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 (535B)


      1 cmake_minimum_required(VERSION 3.10)
      2 
      3 project(bridgeClient)
      4 
      5 add_library(bridgeClient STATIC)
      6 
      7 set(SOURCES
      8 	deviceConnection.cpp deviceConnection.h
      9 	export.cpp export.h
     10 	types.h
     11 	plugin.h
     12 	remoteDevice.cpp remoteDevice.h
     13 	serverList.cpp serverList.h
     14 	udpClient.cpp udpClient.h
     15 )
     16 
     17 target_sources(bridgeClient PRIVATE ${SOURCES})
     18 
     19 source_group("source" FILES ${SOURCES})
     20 
     21 target_link_libraries(bridgeClient PUBLIC bridgeLib)
     22 
     23 target_include_directories(bridgeClient PUBLIC ../)
     24 set_property(TARGET bridgeClient PROPERTY FOLDER "Bridge")