1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 00:48:11 +00:00
serenity/Userland/Libraries/LibPthread/CMakeLists.txt
2021-01-12 12:17:46 +01:00

8 lines
199 B
CMake

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