1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-21 12:23:51 +00:00

Fix build error for clientconsole

pthreads is now linked.

Signed-off-by: Josua Grawitter <josh@greyage.org>
This commit is contained in:
Josua Grawitter 2010-07-07 17:35:29 +02:00
parent 6b3ff8a516
commit 36f98a1128

View file

@ -1,3 +1,4 @@
find_package(Threads REQUIRED)
add_executable(clientconsole client.cpp) add_executable(clientconsole client.cpp)
target_link_libraries(clientconsole ${Boost_LIBRARIES}) target_link_libraries(clientconsole ${Boost_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT})