Use GNUInstallDirs for installation paths

This commit is contained in:
Dan Church
2022-10-11 13:44:04 -05:00
parent 07cf8c5668
commit 81388eedaa
5 changed files with 8 additions and 9 deletions

View File

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