You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CMakeLists.txt 299B

1234567891011121314
  1. include_directories(${CMAKE_SOURCE_DIR}/common)
  2. include_directories(${CMAKE_SOURCE_DIR}/unix/common)
  3. add_library(unixcommon STATIC
  4. randr.cxx)
  5. if(UNIX)
  6. libtool_create_control_file(unixcommon)
  7. endif()
  8. if(NOT WIN32)
  9. set_target_properties(unixcommon
  10. PROPERTIES COMPILE_FLAGS -fPIC)
  11. endif()