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


      1 # Test projects
      2 # Use the macro to add test projects
      3 
      4 MACRO(ADD_TEST appl_name)
      5    ADD_EXECUTABLE(${appl_name} "${appl_name}.c")
      6    TARGET_LINK_LIBRARIES(${appl_name} portaudio_static)
      7    SET_TARGET_PROPERTIES(${appl_name}
      8       PROPERTIES
      9       FOLDER "Test"
     10    )
     11 ENDMACRO(ADD_TEST)
     12 
     13 ADD_TEST(patest_longsine)