CMakeLists.txt 352 B

12345678910111213141516171819
  1. project(w32-pthreads)
  2. add_definitions(-D__CLEANUP_C)
  3. add_definitions(-DPTW32_BUILD)
  4. add_definitions(-DPTW32_STATIC_LIB)
  5. set(w32-pthreads_SOURCES
  6. pthread.c)
  7. set(w32-pthreads_HEADERS
  8. implement.h
  9. pthread.h
  10. sched.h
  11. semaphore.h)
  12. add_library(w32-pthreads STATIC
  13. ${w32-pthreads_SOURCES}
  14. ${w32-pthreads_HEADERS})
  15. target_link_libraries(w32-pthreads)