解决方法
cmake有几个预定义的变量可用于环境检测(WIN32,UNIX,APPLE,CYGWIN).以下是完整列表:
http://www.cmake.org/cmake/help/cmake-2-8-docs.html#section_VariablesThatDescribetheSystem
所以你可以写一些类似的东西
if(UNIX AND NOT APPLE) target_link_libraries(target_name rt) endif()