1
0
mirror of https://github.com/minetest/minetest.git synced 2024-09-28 15:30:28 +02:00
minetest/src/jthread/CMakeLists.txt

17 lines
313 B
CMake
Raw Normal View History

if( UNIX )
set(jthread_SRCS pthread/jmutex.cpp pthread/jthread.cpp)
set(jthread_platform_LIBS "")
else( UNIX )
set(jthread_SRCS win32/jmutex.cpp win32/jthread.cpp)
set(jthread_platform_LIBS "")
endif( UNIX )
add_library(jthread ${jthread_SRCS})
target_link_libraries(
jthread
${jthread_platform_LIBS}
)