mirror of
https://github.com/id-Software/DOOM-3-BFG.git
synced 2024-12-04 01:41:40 +00:00
There's no libdl on FreeBSD
This commit is contained in:
parent
63b1816be6
commit
a2dca39727
1 changed files with 13 additions and 2 deletions
|
@ -1369,7 +1369,7 @@ else()
|
||||||
|
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(UNIX)
|
IF("${CMAKE_SYSTEM}" MATCHES "Linux")
|
||||||
target_link_libraries(RBDoom3BFG
|
target_link_libraries(RBDoom3BFG
|
||||||
idlib
|
idlib
|
||||||
GL
|
GL
|
||||||
|
@ -1381,4 +1381,15 @@ else()
|
||||||
)
|
)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
IF("${CMAKE_SYSTEM}" MATCHES "FreeBSD")
|
||||||
|
target_link_libraries(RBDoom3BFG
|
||||||
|
idlib
|
||||||
|
GL
|
||||||
|
pthread
|
||||||
|
rt
|
||||||
|
${SDLx_LIBRARY}
|
||||||
|
${OPENAL_LIBRARY}
|
||||||
|
)
|
||||||
|
endif()
|
||||||
|
|
||||||
endif()
|
endif()
|
||||||
|
|
Loading…
Reference in a new issue