2010-09-07 15:34:51 +00:00
|
|
|
project(GLFW C)
|
|
|
|
|
2010-09-17 02:22:48 +00:00
|
|
|
cmake_minimum_required(VERSION 2.4)
|
2010-09-20 18:56:44 +00:00
|
|
|
cmake_policy(VERSION 2.4)
|
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
|
|
|
|
2011-09-06 13:23:44 +00:00
|
|
|
option(GLFW_BUILD_EXAMPLES "Build the GLFW example programs" ON)
|
|
|
|
option(GLFW_BUILD_TESTS "Build the GLFW test programs" ON)
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
include(CheckFunctionExists)
|
|
|
|
include(CheckSymbolExists)
|
|
|
|
|
|
|
|
find_package(OpenGL REQUIRED)
|
|
|
|
|
2010-09-17 02:22:48 +00:00
|
|
|
#--------------------------------------------------------------------
|
|
|
|
# Set up GLFW for Win32 and WGL on Windows
|
|
|
|
#--------------------------------------------------------------------
|
2010-09-07 15:34:51 +00:00
|
|
|
if (WIN32)
|
|
|
|
message(STATUS "Building GLFW for WGL on a Win32 system")
|
|
|
|
|
2010-11-17 13:59:27 +00:00
|
|
|
# Define the platform identifier
|
|
|
|
set(_GLFW_WIN32_WGL 1)
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
# Set up library and include paths
|
|
|
|
set(CMAKE_REQUIRED_LIBRARIES ${OPENGL_gl_LIBRARY})
|
|
|
|
list(APPEND GLFW_INCLUDE_DIR ${OPENGL_INCLUDE_DIR})
|
|
|
|
list(APPEND GLFW_LIBRARIES ${OPENGL_gl_LIBRARY})
|
|
|
|
endif (WIN32)
|
|
|
|
|
2010-09-17 02:22:48 +00:00
|
|
|
#--------------------------------------------------------------------
|
|
|
|
# Set up GLFW for Xlib and GLX on Unix-like systems with X Windows
|
|
|
|
#--------------------------------------------------------------------
|
2011-11-02 23:13:49 +00:00
|
|
|
if (UNIX AND NOT APPLE)
|
2010-09-15 15:14:21 +00:00
|
|
|
message(STATUS "Building GLFW for X11 and GLX on a Unix-like system")
|
2010-11-17 13:59:27 +00:00
|
|
|
|
|
|
|
# Define the platform identifier
|
|
|
|
set(_GLFW_X11_GLX 1)
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
# Set up library and include paths
|
|
|
|
set(CMAKE_REQUIRED_LIBRARIES ${X11_X11_LIB} ${OPENGL_gl_LIBRARY})
|
|
|
|
list(APPEND GLFW_INCLUDE_DIR ${X11_X11_INCLUDE_PATH})
|
|
|
|
list(APPEND GLFW_LIBRARIES ${X11_X11_LIB})
|
|
|
|
list(APPEND GLFW_INCLUDE_DIR ${OPENGL_INCLUDE_DIR})
|
|
|
|
list(APPEND GLFW_LIBRARIES ${OPENGL_gl_LIBRARY})
|
|
|
|
|
|
|
|
include(${CMAKE_CURRENT_SOURCE_DIR}/CMake/CheckX11Extensions.cmake)
|
|
|
|
|
|
|
|
# Check for XRandR (modern resolution switching extension)
|
2011-11-03 01:41:53 +00:00
|
|
|
check_x11_xrandr()
|
2010-09-07 15:34:51 +00:00
|
|
|
if (X11_XRANDR_FOUND)
|
|
|
|
set(_GLFW_HAS_XRANDR 1)
|
|
|
|
list(APPEND GLFW_INCLUDE_DIR ${X11_XRANDR_INCLUDE_DIR})
|
|
|
|
list(APPEND GLFW_LIBRARIES ${X11_XRANDR_LIBRARIES})
|
|
|
|
endif(X11_XRANDR_FOUND)
|
|
|
|
|
2010-09-17 02:22:48 +00:00
|
|
|
# Check for Xf86VidMode (fallback legacy resolution switching extension)
|
2011-11-03 01:41:53 +00:00
|
|
|
check_x11_xf86vidmode()
|
2010-10-13 02:04:43 +00:00
|
|
|
if (X11_XF86VIDMODE_FOUND)
|
|
|
|
set(_GLFW_HAS_XF86VIDMODE 1)
|
|
|
|
list(APPEND GLFW_INCLUDE_DIR ${X11_XF86VIDMODE_INCLUDE_DIR})
|
|
|
|
list(APPEND GLFW_LIBRARIES ${X11_XF86VIDMODE_LIBRARIES})
|
|
|
|
endif(X11_XF86VIDMODE_FOUND)
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2011-01-03 20:44:05 +00:00
|
|
|
# Check for Xkb (X keyboard extension)
|
2011-11-03 01:41:53 +00:00
|
|
|
check_function_exists(XkbQueryExtension _GLFW_HAS_XKB)
|
2011-01-03 20:44:05 +00:00
|
|
|
|
|
|
|
# Check for glXGetProcAddress
|
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)
|
2010-09-07 15:34:51 +00:00
|
|
|
endif (NOT _GLFW_HAS_GLXGETPROCADDRESS)
|
|
|
|
|
|
|
|
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)
|
2010-09-07 15:34:51 +00:00
|
|
|
endif (NOT _GLFW_HAS_GLXGETPROCADDRESS AND NOT _GLFW_HAS_GLXGETPROCADDRESSARB)
|
|
|
|
|
|
|
|
if (NOT _GLFW_HAS_GLXGETPROCADDRESS AND
|
|
|
|
NOT _GLFW_HAS_GLXGETPROCADDRESSARB AND
|
|
|
|
NOT _GLFW_HAS_GLXGETPROCADDRESSEXT)
|
|
|
|
message(WARNING "No glXGetProcAddressXXX variant found")
|
|
|
|
endif (NOT _GLFW_HAS_GLXGETPROCADDRESS AND
|
|
|
|
NOT _GLFW_HAS_GLXGETPROCADDRESSARB AND
|
|
|
|
NOT _GLFW_HAS_GLXGETPROCADDRESSEXT)
|
|
|
|
|
2011-11-03 01:43:10 +00:00
|
|
|
find_library(LIBRT rt)
|
|
|
|
if (LIBRT)
|
|
|
|
list(APPEND GLFW_LIBRARIES ${LIBRT})
|
|
|
|
endif(LIBRT)
|
|
|
|
|
2010-09-25 17:26:40 +00:00
|
|
|
if (${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
|
|
|
|
set(_GLFW_USE_LINUX_JOYSTICKS 1)
|
|
|
|
endif (${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
|
2011-11-02 23:13:49 +00:00
|
|
|
endif(UNIX AND NOT APPLE)
|
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
|
|
|
|
#--------------------------------------------------------------------
|
2010-09-07 15:34:51 +00:00
|
|
|
if (UNIX AND APPLE)
|
2010-09-15 15:14:21 +00:00
|
|
|
message(STATUS "Building GLFW for Cocoa and NSOpenGL on Mac OS X")
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2010-11-17 13:59:27 +00:00
|
|
|
# Define the platform identifier
|
|
|
|
set(_GLFW_COCOA_NSGL 1)
|
|
|
|
|
2010-11-17 15:36:09 +00:00
|
|
|
option(GLFW_BUILD_UNIVERSAL "Build the GLFW library and examples as Universal Binaries" FALSE)
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
# Universal build, decent set of warning flags...
|
2010-11-17 15:36:09 +00:00
|
|
|
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 -Wall -Wextra -Wno-unused-parameter -Werror")
|
|
|
|
else(GLFW_BUILD_UNIVERSAL)
|
|
|
|
message(STATUS "Building GLFW only for the native architecture")
|
|
|
|
endif(GLFW_BUILD_UNIVERSAL)
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
# Set up library and include paths
|
|
|
|
find_library(COCOA_FRAMEWORK Cocoa)
|
|
|
|
list(APPEND GLFW_LIBRARIES ${COCOA_FRAMEWORK})
|
|
|
|
list(APPEND GLFW_LIBRARIES ${OPENGL_gl_LIBRARY})
|
|
|
|
endif(UNIX AND APPLE)
|
|
|
|
|
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)
|
2011-09-06 13:23:44 +00:00
|
|
|
|
|
|
|
if (GLFW_BUILD_EXAMPLES)
|
|
|
|
add_subdirectory(examples)
|
|
|
|
endif(GLFW_BUILD_EXAMPLES)
|
|
|
|
|
|
|
|
if (GLFW_BUILD_TESTS)
|
|
|
|
add_subdirectory(tests)
|
|
|
|
endif(GLFW_BUILD_TESTS)
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2010-09-16 22:54:11 +00:00
|
|
|
#--------------------------------------------------------------------
|
|
|
|
# Create shared configuration header
|
|
|
|
#--------------------------------------------------------------------
|
2010-10-14 15:18:29 +00:00
|
|
|
configure_file(${GLFW_SOURCE_DIR}/src/config.h.in
|
2010-09-16 22:54:11 +00:00
|
|
|
${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
|
|
|
|
DESTINATION share/doc/glfw-${GLFW_VERSION_FULL}/)
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2010-09-17 02:22:48 +00:00
|
|
|
# The respective port's CMakeLists.txt file installs the library
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
#--------------------------------------------------------------------
|
|
|
|
# -- Documentation generation
|
|
|
|
#--------------------------------------------------------------------
|
|
|
|
#include("${CMAKE_CURRENT_SOURCE_DIR}/documentation.cmake")
|
|
|
|
#configure_file("${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile.in"
|
|
|
|
# "${CMAKE_CURRENT_BINARY_DIR}/Doxyfile"
|
|
|
|
# IMMEDIATE @ONLY)
|
|
|
|
#add_doxygen_target("${CMAKE_CURRENT_BINARY_DIR}/Doxyfile")
|
|
|
|
#add_subdirectory(docs)
|
|
|
|
|
|
|
|
#--------------------------------------------------------------------
|
2010-09-17 02:22:48 +00:00
|
|
|
# Uninstall operation
|
2011-07-27 13:46:19 +00:00
|
|
|
# Don't generate this target if a higher-level project already has
|
2010-09-17 02:22:48 +00:00
|
|
|
#--------------------------------------------------------------------
|
2011-07-27 13:46:19 +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
|
|
|
|
2011-07-27 13:46:19 +00:00
|
|
|
add_custom_target(uninstall
|
|
|
|
${CMAKE_COMMAND} -P
|
|
|
|
${GLFW_BINARY_DIR}/cmake_uninstall.cmake)
|
|
|
|
endif()
|
2010-09-07 15:34:51 +00:00
|
|
|
|