From 688095d0a7d22704b5c3282bc68b41ceca42ab7e Mon Sep 17 00:00:00 2001 From: Andrew Nelless Date: Thu, 9 Feb 2017 17:34:09 +0000 Subject: [PATCH] Remove IRIX nonsense --- CMakeLists.txt | 6 ------ src/CMakeLists.txt | 5 ----- 2 files changed, 11 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e4050a86..50367344 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -333,12 +333,6 @@ if (WIN32) endif() -if (${CMAKE_SYSTEM_NAME} MATCHES "IRIX") - set_target_properties(synergys PROPERTIES LINK_FLAGS "-all -woff 33 -woff 84 -woff 15") - set_target_properties(synergyc PROPERTIES LINK_FLAGS "-all -woff 33 -woff 84 -woff 15") - set_target_properties(synergyd PROPERTIES LINK_FLAGS "-all -woff 33 -woff 84 -woff 15") -endif() - if (CONF_CPACK) message(FATAL_ERROR "CPack support has been removed.") endif() diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 820abce0..c6b75a1a 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -19,8 +19,3 @@ include_directories (${CMAKE_CURRENT_BINARY_DIR}/lib) add_subdirectory(lib) add_subdirectory(cmd) add_subdirectory(gui) - - -if ((NOT ${CMAKE_SYSTEM_NAME} MATCHES "IRIX") AND (NOT ${DISABLE_TESTS})) - add_subdirectory(test) -endif()