dolphin/Source/DSPTool/CMakeLists.txt
2023-01-30 09:44:44 -06:00

6 lines
178 B
CMake

add_executable(dsptool DSPTool.cpp StubHost.cpp)
target_link_libraries(dsptool core)
if(NOT APPLE)
install(TARGETS dsptool RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
endif()