glfw/CMakeLists.txt

248 lines
8.4 KiB
CMake
Raw Normal View History

2010-09-07 15:34:51 +00:00
project(GLFW C)
2012-02-29 19:17:09 +00:00
cmake_minimum_required(VERSION 2.8)
2010-09-17 02:22:48 +00:00
2010-09-11 13:27:48 +00:00
set(GLFW_VERSION_MAJOR "3")
set(GLFW_VERSION_MINOR "0")
2010-09-07 15:34:51 +00:00
set(GLFW_VERSION_PATCH "0")
set(GLFW_VERSION_EXTRA "")
set(GLFW_VERSION "${GLFW_VERSION_MAJOR}.${GLFW_VERSION_MINOR}")
2010-10-15 15:22:30 +00:00
set(GLFW_VERSION_FULL "${GLFW_VERSION}.${GLFW_VERSION_PATCH}${GLFW_VERSION_EXTRA}")
2010-09-07 15:34:51 +00:00
option(GLFW_BUILD_EXAMPLES "Build the GLFW example programs" ON)
option(GLFW_BUILD_TESTS "Build the GLFW test programs" ON)
option(BUILD_SHARED_LIBS "Build shared libraries" OFF)
2010-09-07 15:34:51 +00:00
find_package(OpenGL REQUIRED)
2012-03-25 11:52:35 +00:00
#--------------------------------------------------------------------
# Enable all warnings on GCC, regardless of OS
#--------------------------------------------------------------------
if (CMAKE_COMPILER_IS_GNUCC)
2012-03-25 11:58:07 +00:00
add_definitions(-Wall)
endif()
2010-09-17 02:22:48 +00:00
#--------------------------------------------------------------------
# Detect and select target platform
2010-09-17 02:22:48 +00:00
#--------------------------------------------------------------------
2010-09-07 15:34:51 +00:00
if (WIN32)
set(_GLFW_WIN32_WGL 1)
2010-09-07 15:34:51 +00:00
message(STATUS "Building GLFW for WGL on a Win32 system")
elseif (UNIX AND APPLE)
set(_GLFW_COCOA_NSGL 1)
message(STATUS "Building GLFW for Cocoa and NSOpenGL on Mac OS X")
elseif (UNIX AND NOT APPLE)
set(_GLFW_X11_GLX 1)
message(STATUS "Building GLFW for X11 and GLX on a Unix-like system")
else()
message(FATAL_ERROR "No supported platform was detected")
endif()
2010-09-07 15:34:51 +00:00
#--------------------------------------------------------------------
# Set up GLFW for Win32 and WGL on Windows
#--------------------------------------------------------------------
if (_GLFW_WIN32_WGL)
2010-09-07 15:34:51 +00:00
# Set up library and include paths
list(APPEND glfw_INCLUDE_DIRS ${OPENGL_INCLUDE_DIR})
list(APPEND glfw_LIBRARIES ${OPENGL_gl_LIBRARY})
if (BUILD_SHARED_LIBS)
list(APPEND glfw_LIBRARIES winmm)
endif()
2012-02-29 19:15:39 +00:00
endif()
2010-09-07 15:34:51 +00:00
2010-09-17 02:22:48 +00:00
#--------------------------------------------------------------------
# Set up GLFW for Xlib and GLX on Unix-like systems with X Windows
#--------------------------------------------------------------------
if (_GLFW_X11_GLX)
find_package(X11 REQUIRED)
2010-09-07 15:34:51 +00:00
# Set up library and include paths
list(APPEND glfw_INCLUDE_DIRS ${X11_X11_INCLUDE_PATH} ${OPENGL_INCLUDE_DIR})
list(APPEND glfw_LIBRARIES ${X11_X11_LIB} ${OPENGL_gl_LIBRARY})
2010-09-07 15:34:51 +00:00
set(GLFW_PKG_DEPS "gl x11")
set(GLFW_PKG_LIBS "")
2012-01-27 22:24:58 +00:00
include(CheckFunctionExists)
2010-09-07 15:34:51 +00:00
# Check for XRandR (modern resolution switching extension)
if (X11_Xrandr_FOUND)
2010-09-07 15:34:51 +00:00
set(_GLFW_HAS_XRANDR 1)
list(APPEND glfw_INCLUDE_DIRS ${X11_Xrandr_INCLUDE_PATH})
list(APPEND glfw_LIBRARIES ${X11_Xrandr_LIB})
set(GLFW_PKG_DEPS "${GLFW_PKG_DEPS} xrandr")
endif()
2010-09-07 15:34:51 +00:00
2010-09-17 02:22:48 +00:00
# Check for Xf86VidMode (fallback legacy resolution switching extension)
if (X11_xf86vmode_FOUND)
set(_GLFW_HAS_XF86VIDMODE 1)
list(APPEND glfw_INCLUDE_DIRS ${X11_xf86vmode_INCLUDE_PATH})
# NOTE: This is a workaround for CMake bug 0006976 (missing
# X11_xf86vmode_LIB variable)
if (X11_xf86vmode_LIB)
list(APPEND glfw_LIBRARIES ${X11_xf86vmode_LIB})
else()
list(APPEND glfw_LIBRARIES Xxf86vm)
endif()
set(GLFW_PKG_DEPS "${GLFW_PKG_DEPS} xxf86vm")
endif()
2010-09-07 15:34:51 +00:00
# Check for Xkb (X keyboard extension)
if (X11_Xkb_FOUND)
set(_GLFW_HAS_XKB 1)
list(APPEND glfw_INCLUDE_DIR ${X11_Xkb_INCLUDE_PATH})
endif()
find_library(RT_LIBRARY rt)
2012-03-25 13:05:48 +00:00
mark_as_advanced(RT_LIBRARY)
if (RT_LIBRARY)
list(APPEND glfw_LIBRARIES ${RT_LIBRARY})
set(GLFW_PKG_LIBS "${GLFW_PKG_LIBS} -lrt")
endif()
find_library(MATH_LIBRARY m)
2012-03-25 13:05:48 +00:00
mark_as_advanced(MATH_LIBRARY)
if (MATH_LIBRARY)
list(APPEND glfw_LIBRARIES ${MATH_LIBRARY})
set(GLFW_PKG_LIBS "${GLFW_PKG_LIBS} -lm")
endif()
set(CMAKE_REQUIRED_LIBRARIES ${OPENGL_gl_LIBRARY})
2011-11-03 01:41:53 +00:00
check_function_exists(glXGetProcAddress _GLFW_HAS_GLXGETPROCADDRESS)
2010-09-07 15:34:51 +00:00
if (NOT _GLFW_HAS_GLXGETPROCADDRESS)
2011-11-03 01:41:53 +00:00
check_function_exists(glXGetProcAddressARB _GLFW_HAS_GLXGETPROCADDRESSARB)
2012-02-29 19:15:39 +00:00
endif()
2010-09-07 15:34:51 +00:00
if (NOT _GLFW_HAS_GLXGETPROCADDRESS AND NOT _GLFW_HAS_GLXGETPROCADDRESSARB)
2011-11-03 01:41:53 +00:00
check_function_exists(glXGetProcAddressEXT _GLFW_HAS_GLXGETPROCADDRESSEXT)
2012-02-29 19:15:39 +00:00
endif()
2010-09-07 15:34:51 +00:00
if (NOT _GLFW_HAS_GLXGETPROCADDRESS AND
NOT _GLFW_HAS_GLXGETPROCADDRESSARB AND
NOT _GLFW_HAS_GLXGETPROCADDRESSEXT)
message(WARNING "No glXGetProcAddressXXX variant found")
# Check for dlopen support as a fallback
find_library(DL_LIBRARY dl)
2012-03-25 15:25:03 +00:00
mark_as_advanced(DL_LIBRARY)
if (DL_LIBRARY)
set(CMAKE_REQUIRED_LIBRARIES ${DL_LIBRARY})
else()
set(CMAKE_REQUIRED_LIBRARIES "")
endif()
check_function_exists(dlopen _GLFW_HAS_DLOPEN)
if (NOT _GLFW_HAS_DLOPEN)
message(FATAL_ERROR "No entry point retrieval mechanism found")
endif()
if (DL_LIBRARY)
list(APPEND glfw_LIBRARIES ${DL_LIBRARY})
set(GLFW_PKG_LIBS "${GLFW_PKG_LIBS} -ldl")
endif()
2012-02-29 19:15:39 +00:00
endif()
2010-09-07 15:34:51 +00:00
2010-09-25 17:26:40 +00:00
if (${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
set(_GLFW_USE_LINUX_JOYSTICKS 1)
2012-02-29 19:15:39 +00:00
endif()
2012-03-26 01:11:43 +00:00
configure_file(${GLFW_SOURCE_DIR}/src/libglfw.pc.in
${GLFW_BINARY_DIR}/src/libglfw.pc @ONLY)
install(FILES ${GLFW_BINARY_DIR}/src/libglfw.pc
DESTINATION lib/pkgconfig)
2012-02-29 19:15:39 +00:00
endif()
2010-09-07 15:34:51 +00:00
2010-09-17 02:22:48 +00:00
#--------------------------------------------------------------------
# Set up GLFW for Cocoa and NSOpenGL on Mac OS X
#--------------------------------------------------------------------
if (_GLFW_COCOA_NSGL)
2010-09-07 15:34:51 +00:00
2012-03-25 11:49:35 +00:00
option(GLFW_BUILD_UNIVERSAL "Build GLFW as a Universal Binary" OFF)
# Universal build
if (GLFW_BUILD_UNIVERSAL)
message(STATUS "Building GLFW as Universal Binaries")
set(CMAKE_OSX_ARCHITECTURES ppc;i386;ppc64;x86_64)
set(CMAKE_OSX_SYSROOT /Developer/SDKs/MacOSX10.5.sdk)
set(CMAKE_C_FLAGS "-mmacosx-version-min=10.5")
else(GLFW_BUILD_UNIVERSAL)
message(STATUS "Building GLFW only for the native architecture")
2012-02-29 19:15:39 +00:00
endif()
2010-09-07 15:34:51 +00:00
# Set up library and include paths
find_library(COCOA_FRAMEWORK Cocoa)
2011-09-18 19:05:00 +00:00
find_library(IOKIT_FRAMEWORK IOKit)
find_library(CORE_FOUNDATION_FRAMEWORK CoreFoundation)
list(APPEND glfw_LIBRARIES ${COCOA_FRAMEWORK}
2012-03-25 11:49:35 +00:00
${OPENGL_gl_LIBRARY}
${IOKIT_FRAMEWORK}
${CORE_FOUNDATION_FRAMEWORK})
2012-02-29 19:15:39 +00:00
endif()
2010-09-07 15:34:51 +00:00
#--------------------------------------------------------------------
# Export GLFW library dependencies
#--------------------------------------------------------------------
set(GLFW_LIBRARIES ${glfw_LIBRARIES} CACHE STRING "Dependencies of GLFW")
2010-09-17 02:22:48 +00:00
#--------------------------------------------------------------------
2011-07-26 13:16:34 +00:00
# Add subdirectories
2010-09-17 02:22:48 +00:00
#--------------------------------------------------------------------
2011-07-26 13:16:34 +00:00
add_subdirectory(src)
if (GLFW_BUILD_EXAMPLES)
add_subdirectory(examples)
2012-02-29 19:15:39 +00:00
endif()
if (GLFW_BUILD_TESTS)
add_subdirectory(tests)
2012-02-29 19:15:39 +00:00
endif()
2010-09-07 15:34:51 +00:00
#--------------------------------------------------------------------
# Create shared configuration header
#--------------------------------------------------------------------
2010-10-14 15:18:29 +00:00
configure_file(${GLFW_SOURCE_DIR}/src/config.h.in
${GLFW_BINARY_DIR}/src/config.h @ONLY)
2010-09-07 15:34:51 +00:00
#--------------------------------------------------------------------
2010-09-17 02:22:48 +00:00
# Install standard files
2010-09-07 15:34:51 +00:00
#--------------------------------------------------------------------
2010-10-03 15:56:27 +00:00
install(DIRECTORY include/GL DESTINATION include
FILES_MATCHING PATTERN glfw3.h)
2010-09-07 15:34:51 +00:00
2010-09-17 02:22:48 +00:00
install(FILES COPYING.txt readme.html
2012-03-25 11:59:34 +00:00
DESTINATION share/doc/glfw-${GLFW_VERSION_FULL})
2010-09-07 15:34:51 +00:00
2012-02-29 19:19:05 +00:00
# The src directory's CMakeLists.txt file installs the library
2010-09-07 15:34:51 +00:00
#--------------------------------------------------------------------
# -- Documentation generation
#--------------------------------------------------------------------
2012-02-02 17:15:58 +00:00
configure_file("${GLFW_SOURCE_DIR}/docs/Doxyfile.in"
"${GLFW_BINARY_DIR}/docs/Doxyfile"
@ONLY)
2010-09-07 15:34:51 +00:00
#--------------------------------------------------------------------
2010-09-17 02:22:48 +00:00
# Uninstall operation
# Don't generate this target if a higher-level project already has
2010-09-17 02:22:48 +00:00
#--------------------------------------------------------------------
2012-02-29 19:15:39 +00:00
if (NOT TARGET uninstall)
configure_file(${GLFW_SOURCE_DIR}/cmake_uninstall.cmake.in
${GLFW_BINARY_DIR}/cmake_uninstall.cmake IMMEDIATE @ONLY)
2010-09-17 02:22:48 +00:00
add_custom_target(uninstall
${CMAKE_COMMAND} -P
${GLFW_BINARY_DIR}/cmake_uninstall.cmake)
endif()
2010-09-07 15:34:51 +00:00