blob: fb0cc41bcb46a2dcd68e38f4d98d3d2aca234e9b (
plain)
1
2
3
4
5
|
add_executable(dsptool DSPTool.cpp StubHost.cpp)
target_link_libraries(dsptool core)
if(NOT APPLE AND NOT WIN32)
install(TARGETS dsptool RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
endif()
|