cmake: fix Windows linking

This commit is contained in:
Ronald Kinard 2015-01-28 23:20:21 -06:00
parent 57037e4124
commit e54338ef01
1 changed files with 7 additions and 2 deletions

View File

@ -113,10 +113,15 @@ if(${SDL2_FOUND})
${PNG_LIBRARIES}
${ZLIB_LIBRARIES}
${OPENGL_LIBRARIES}
m #need math lol
rt # this too
)
if(${CMAKE_SYSTEM} MATCHES Linux)
target_link_libraries(${SRB2_SDL2_EXE_NAME} PRIVATE
m
rt
)
endif()
endif()
set_target_properties(${SRB2_SDL2_EXE_NAME} PROPERTIES VERSION ${SRB2_VERSION})