mirror of
https://github.com/kasmtech/KasmVNC.git
synced 2024-11-22 16:13:13 +01:00
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()
|