You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
299 B
CMake
15 lines
299 B
CMake
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()
|