You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CMakeLists.txt 225B

123456789101112131415
  1. include_directories(${CMAKE_SOURCE_DIR}/common)
  2. add_library(os STATIC
  3. Mutex.cxx
  4. Thread.cxx
  5. w32tiger.c
  6. os.cxx)
  7. if(UNIX)
  8. target_link_libraries(os pthread)
  9. endif()
  10. if(UNIX)
  11. libtool_create_control_file(os)
  12. endif()