]> git.jsancho.org Git - lugaru.git/blobdiff - CMakeLists.txt
Looks like Windows users aren't the only ones that need to be handled carefully....
[lugaru.git] / CMakeLists.txt
index c7bc8f42a10d1e5475a88c51b33d88c6cc9ca52c..88f3e50f605b2738b00771022e032d13ba5541b3 100644 (file)
@@ -161,11 +161,17 @@ endif (APPLE)
 
 # Deal with dependencies...
 find_package(OpenGL REQUIRED)
-# force this include dir no matter what, so we get sane headers.
-option (LUGARU_FORCE_INTERNAL_OPENGL "Force internal OpenGL headers, even if there's a system version" True)
-if (LUGARU_FORCE_INTERNAL_OPENGL)
+# force this include dir no matter what on Windows, so we get sane headers.
+if(NOT WIN32)
+       option (LUGARU_FORCE_INTERNAL_OPENGL "Force internal OpenGL headers, even if there's a system version" True)
+       if (LUGARU_FORCE_INTERNAL_OPENGL)
+               include_directories("${DEPDIR}/OpenGL")
+       endif (LUGARU_FORCE_INTERNAL_OPENGL)
+endif(NOT WIN32)
+
+if(WIN32)
        include_directories("${DEPDIR}/OpenGL")
-endif (LUGARU_FORCE_INTERNAL_OPENGL)
+endif(WIN32)
 
 option (LUGARU_FORCE_INTERNAL_OPENAL "Force internal libOpenAL, even if there's a system version" False)
 if (NOT LUGARU_FORCE_INTERNAL_OPENAL)
@@ -498,6 +504,9 @@ if(WIN32)
        endif(MINGW)
 else(WIN32)
        install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/lugaru DESTINATION ${CMAKE_INSTALL_PREFIX})
+       if(APPLE)
+               install(FILES ${SDLDIR}/lib/macosx/libSDL-1.2.0.dylib DESTINATION ${CMAKE_INSTALL_PREFIX})
+       endif(APPLE)
 endif(WIN32)
 
 install(DIRECTORY ${CMAKE_SOURCE_DIR}/Data DESTINATION ${CMAKE_INSTALL_PREFIX})