mirror of
https://github.com/gwm17/glfw.git
synced 2025-01-30 10:58:50 -05:00
Fixed link flags for threaded example.
This commit is contained in:
parent
6e990b77d1
commit
f2813633b0
|
@ -49,7 +49,11 @@ else()
|
|||
add_executable(wave WIN32 wave.c)
|
||||
endif()
|
||||
|
||||
target_link_libraries(particles ${CMAKE_THREAD_LIBS_INIT} ${RT_LIBRARY})
|
||||
if (APPLE)
|
||||
target_link_libraries(Particles ${CMAKE_THREAD_LIBS_INIT})
|
||||
elseif (UNIX)
|
||||
target_link_libraries(particles ${CMAKE_THREAD_LIBS_INIT} ${RT_LIBRARY})
|
||||
endif()
|
||||
|
||||
if (MSVC)
|
||||
set(WINDOWS_BINARIES boing gears heightmap particles simple splitview wave)
|
||||
|
|
Loading…
Reference in New Issue
Block a user