Initial commit
This commit is contained in:
15
common/os/CMakeLists.txt
Normal file
15
common/os/CMakeLists.txt
Normal file
@@ -0,0 +1,15 @@
|
||||
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()
|
||||
Reference in New Issue
Block a user