patch: for irix, don't build test code and ignore a few warnings (thanks to Jim Hague)

This commit is contained in:
Nick Bolton 2012-07-20 15:11:37 +00:00
parent 82a439f893
commit fb377bbc78
2 changed files with 19 additions and 10 deletions

View File

@ -385,3 +385,10 @@ if (CONF_DOXYGEN)
configure_file(${cmake_dir}/doxygen.cfg.in ${doc_dir}/doxygen.cfg)
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()

View File

@ -15,7 +15,9 @@
add_subdirectory(lib)
add_subdirectory(cmd)
add_subdirectory(test)
if (NOT ${CMAKE_SYSTEM_NAME} MATCHES "IRIX")
add_subdirectory(test)
endif()
add_subdirectory(plugin)
add_subdirectory(micro)