mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 13:57:57 -07:00
4c7c29b8b6
The "dsptool" executable is not included in the bundle. The "tester" executable is not included in the bundle and it no longer installed on other platforms, since it is neither expected nor useful to install unit tests.
6 lines
188 B
CMake
6 lines
188 B
CMake
add_executable(dsptool Src/DSPTool.cpp)
|
|
target_link_libraries(dsptool core)
|
|
if((NOT ${CMAKE_SYSTEM_NAME} MATCHES "Darwin"))
|
|
install(TARGETS dsptool RUNTIME DESTINATION ${bindir})
|
|
endif()
|