DSPTool: Fix build

Stub implementations of Host functions are required, as DSPTool links
against Core (which makes use of Host).
This commit is contained in:
Léo Lam 2017-09-01 17:10:47 +02:00
commit 12da9c8473
3 changed files with 63 additions and 2 deletions

View file

@ -1,4 +1,4 @@
add_executable(dsptool DSPTool.cpp)
add_executable(dsptool DSPTool.cpp StubHost.cpp)
target_link_libraries(dsptool core)
if(NOT APPLE)
install(TARGETS dsptool RUNTIME DESTINATION ${bindir})