1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-14 22:57:37 +00:00
serenity/Userland/Libraries/LibPthread/CMakeLists.txt
2021-04-14 13:13:06 +02:00

9 lines
227 B
CMake

set(SOURCES
pthread.cpp
pthread_once.cpp
semaphore.cpp
)
serenity_libc(LibPthread pthread)
target_link_libraries(LibPthread LibC LibSystem)
target_include_directories(LibPthread PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})