summaryrefslogtreecommitdiffstats
path: root/unix/common/CMakeLists.txt
blob: 611e19563aa7f2d83eb7a540aeb618c5afdb3312 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
include_directories(${CMAKE_SOURCE_DIR}/common)
include_directories(${CMAKE_SOURCE_DIR}/unix/common)

add_library(unixcommon STATIC
  randr.cxx)

if(UNIX)
  libtool_create_control_file(unixcommon)
endif()

if(NOT WIN32)
  set_target_properties(unixcommon
    PROPERTIES COMPILE_FLAGS -fPIC)
endif()