ladybird/Userland/Libraries/LibThreading/CMakeLists.txt
Andreas Kling b5d73c834f Userland: Rename LibThread => LibThreading
Also rename the "LibThread" namespace to "Threading"
2021-05-22 18:54:22 +02:00

8 lines
152 B
CMake

set(SOURCES
BackgroundAction.cpp
Thread.cpp
)
serenity_lib(LibThreading threading)
target_link_libraries(LibThreading LibC LibCore LibPthread)