mirror of
https://github.com/id-Software/DOOM-3-BFG.git
synced 2025-03-01 23:20:44 +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
|
||||||
|
@ -1380,5 +1380,16 @@ else()
|
||||||
${OPENAL_LIBRARY}
|
${OPENAL_LIBRARY}
|
||||||
)
|
)
|
||||||
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