Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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