CMakeLists.txt 150 B

123456
  1. add_executable(dsptool DSPTool.cpp)
  2. target_link_libraries(dsptool core)
  3. if(NOT APPLE)
  4. install(TARGETS dsptool RUNTIME DESTINATION ${bindir})
  5. endif()