mirror of
https://github.com/ptitSeb/Serious-Engine
synced 2024-11-22 10:20:26 +01:00
Sources/CMakeLists.txt: Added missing find_packge(SDL REQUIRED) to link in the SDL1.2 libraries via ${SDL_LIBRARY} generate variable
and added to the target_link_libraries for SeriousSam and SeriousSamDedicated. I don't know not linking the SDL library was the intended outcome but SeriousSam* was failing to link to libSeriousEngine.a.
This commit is contained in:
parent
a96fe8de8b
commit
cdcf6afc34
|
@ -4,6 +4,8 @@ project(SeriousEngine)
|
|||
# Set @rpath for Mac OS X shared library install names.
|
||||
#cmake_policy(SET CMP0042 NEW)
|
||||
|
||||
# Needed to find the SDL1.2 library files
|
||||
find_package(SDL REQUIRED)
|
||||
|
||||
# Set up some sanity stuff...
|
||||
if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
|
||||
|
@ -621,12 +623,14 @@ if(LINUX)
|
|||
target_link_libraries(SeriousSam "m")
|
||||
target_link_libraries(SeriousSam "dl")
|
||||
target_link_libraries(SeriousSam "pthread")
|
||||
target_link_libraries(SeriousSam ${SDL_LIBRARY})
|
||||
|
||||
if(BUILD_DEDICATED_SERVER)
|
||||
set_target_properties(SeriousSamDedicated PROPERTIES LINK_FLAGS "-Wl,-rpath,$ORIGIN")
|
||||
target_link_libraries(SeriousSamDedicated "m")
|
||||
target_link_libraries(SeriousSamDedicated "dl")
|
||||
target_link_libraries(SeriousSamDedicated "pthread")
|
||||
target_link_libraries(SeriousSamDedicated ${SDL_LIBRARY})
|
||||
endif()
|
||||
endif()
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user