Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

CMakeLists.txt 485B

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