您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

CMakeLists.txt 519B

123456789101112131415
  1. add_subdirectory(os)
  2. add_subdirectory(rdr)
  3. add_subdirectory(network)
  4. add_subdirectory(Xregion)
  5. add_subdirectory(rfb)
  6. # For any convenience libraries that are linked into libvnc.so, we need to
  7. # explicitly build their corresponding sources using PIC. WIN32 is excluded
  8. # because PIC code does not exist on that platform and MinGW complains if -fPIC
  9. # is passed (additionally, libvnc is not used on Windows.)
  10. if(NOT WIN32)
  11. set_target_properties(os rdr network Xregion rfb
  12. PROPERTIES COMPILE_FLAGS -fPIC)
  13. endif()