mirror of
https://github.com/glfw/glfw.git
synced 2025-04-05 13:35:07 +00:00
Fixed link flags for threaded example.
This commit is contained in:
parent
6e990b77d1
commit
f2813633b0
1 changed files with 5 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue