mirror of
https://github.com/luanti-org/luanti.git
synced 2025-10-30 06:55:33 +01:00
10 lines
237 B
CMake
10 lines
237 B
CMake
file(GLOB threading_HDRS "${CMAKE_CURRENT_SOURCE_DIR}/*.h")
|
|
|
|
set(threading_SRCS
|
|
${threading_HDRS}
|
|
${CMAKE_CURRENT_SOURCE_DIR}/event.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/thread.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/semaphore.cpp
|
|
PARENT_SCOPE)
|
|
|