Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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()