mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 13:27:45 -07:00
12da9c8473
Stub implementations of Host functions are required, as DSPTool links against Core (which makes use of Host).
6 lines
164 B
CMake
6 lines
164 B
CMake
add_executable(dsptool DSPTool.cpp StubHost.cpp)
|
|
target_link_libraries(dsptool core)
|
|
if(NOT APPLE)
|
|
install(TARGETS dsptool RUNTIME DESTINATION ${bindir})
|
|
endif()
|