summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibPthread/CMakeLists.txt
blob: bb6c95319b8ff1ad0cdebf4aff334b08b6ffbfb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
set(SOURCES
    forward.cpp
    pthread.cpp
    pthread_cond.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})