KasmVNC/common/os/CMakeLists.txt
2020-09-20 12:16:44 +00:00

16 lines
225 B
CMake

include_directories(${CMAKE_SOURCE_DIR}/common)
add_library(os STATIC
Mutex.cxx
Thread.cxx
w32tiger.c
os.cxx)
if(UNIX)
target_link_libraries(os pthread)
endif()
if(UNIX)
libtool_create_control_file(os)
endif()