Files
dolphin/Source/DSPTool/CMakeLists.txt
T
2026-07-24 03:45:13 +02:00

6 lines
192 B
CMake

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