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


      1 cmake_minimum_required(VERSION 3.10)
      2 
      3 project(xtTestConsole)
      4 
      5 add_executable(xtTestConsole)
      6 
      7 set(SOURCES
      8 	xtTestConsole.cpp
      9 )
     10 
     11 target_sources(xtTestConsole PRIVATE ${SOURCES})
     12 source_group("source" FILES ${SOURCES})
     13 
     14 target_link_libraries(xtTestConsole PUBLIC xtLib)
     15 set_property(TARGET xtTestConsole PROPERTY FOLDER "Xenia")