CMake: simplify some expressions

This commit is contained in:
Tillmann Karras
2015-01-03 13:17:57 +01:00
parent c3d52e0476
commit 6bcdb10eee
13 changed files with 42 additions and 46 deletions

View File

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