CMakeLists.txt 178 B

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