2017-05-06 21:02:52 +00:00
|
|
|
cmake_minimum_required(VERSION 2.8.12)
|
2016-03-18 09:32:14 +00:00
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
project(GLFW C)
|
|
|
|
|
2017-05-06 21:02:52 +00:00
|
|
|
set(CMAKE_LEGACY_CYGWIN_WIN32 OFF)
|
2010-09-17 02:22:48 +00:00
|
|
|
|
2015-03-11 22:02:36 +00:00
|
|
|
if (NOT CMAKE_VERSION VERSION_LESS "3.0")
|
2015-01-05 01:40:02 +00:00
|
|
|
# Until all major package systems have moved to CMake 3,
|
|
|
|
# we stick with the older INSTALL_NAME_DIR mechanism
|
|
|
|
cmake_policy(SET CMP0042 OLD)
|
|
|
|
endif()
|
|
|
|
|
2017-01-31 02:29:28 +00:00
|
|
|
if (NOT CMAKE_VERSION VERSION_LESS "3.1")
|
|
|
|
cmake_policy(SET CMP0054 NEW)
|
|
|
|
endif()
|
|
|
|
|
2010-09-11 13:27:48 +00:00
|
|
|
set(GLFW_VERSION_MAJOR "3")
|
2016-08-18 21:42:15 +00:00
|
|
|
set(GLFW_VERSION_MINOR "3")
|
|
|
|
set(GLFW_VERSION_PATCH "0")
|
2010-09-07 15:34:51 +00:00
|
|
|
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}")
|
2012-08-11 15:50:56 +00:00
|
|
|
set(LIB_SUFFIX "" CACHE STRING "Takes an empty string or 64. Directory where lib will be installed: lib or lib64")
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2015-01-06 17:01:19 +00:00
|
|
|
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
|
|
|
|
|
2013-06-17 09:58:46 +00:00
|
|
|
option(BUILD_SHARED_LIBS "Build shared libraries" OFF)
|
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)
|
2013-11-07 17:22:44 +00:00
|
|
|
option(GLFW_BUILD_DOCS "Build the GLFW documentation" ON)
|
2013-06-16 11:31:39 +00:00
|
|
|
option(GLFW_INSTALL "Generate installation target" ON)
|
2016-08-04 22:23:16 +00:00
|
|
|
option(GLFW_VULKAN_STATIC "Use the Vulkan loader statically linked into application" OFF)
|
2013-03-18 20:21:12 +00:00
|
|
|
option(GLFW_DOCUMENT_INTERNALS "Include internals in documentation" OFF)
|
2013-02-14 12:14:17 +00:00
|
|
|
|
2016-10-13 15:24:51 +00:00
|
|
|
if (UNIX)
|
|
|
|
option(GLFW_USE_OSMESA "Use OSMesa for offscreen context creation" OFF)
|
|
|
|
endif()
|
|
|
|
|
2013-07-07 21:29:13 +00:00
|
|
|
if (WIN32)
|
2015-05-29 11:08:12 +00:00
|
|
|
option(GLFW_USE_HYBRID_HPG "Force use of high-performance GPU on hybrid systems" OFF)
|
2013-07-07 21:29:13 +00:00
|
|
|
endif()
|
|
|
|
|
2014-04-08 16:24:02 +00:00
|
|
|
if (UNIX AND NOT APPLE)
|
2016-03-28 11:19:31 +00:00
|
|
|
option(GLFW_USE_WAYLAND "Use Wayland for window creation" OFF)
|
|
|
|
option(GLFW_USE_MIR "Use Mir for window creation" OFF)
|
2014-03-17 21:53:43 +00:00
|
|
|
endif()
|
|
|
|
|
2013-06-17 09:58:46 +00:00
|
|
|
if (MSVC)
|
|
|
|
option(USE_MSVC_RUNTIME_LIBRARY_DLL "Use MSVC runtime library DLL" ON)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if (BUILD_SHARED_LIBS)
|
|
|
|
set(_GLFW_BUILD_DLL 1)
|
|
|
|
endif()
|
|
|
|
|
2015-12-30 20:05:27 +00:00
|
|
|
if (BUILD_SHARED_LIBS AND UNIX)
|
|
|
|
# On Unix-like systems, shared libraries can use the soname system.
|
|
|
|
set(GLFW_LIB_NAME glfw)
|
|
|
|
else()
|
|
|
|
set(GLFW_LIB_NAME glfw3)
|
|
|
|
endif()
|
|
|
|
|
2016-08-04 22:23:16 +00:00
|
|
|
if (GLFW_VULKAN_STATIC)
|
|
|
|
set(_GLFW_VULKAN_STATIC 1)
|
|
|
|
endif()
|
|
|
|
|
2016-08-04 03:03:08 +00:00
|
|
|
list(APPEND CMAKE_MODULE_PATH "${GLFW_SOURCE_DIR}/CMake/modules")
|
2015-05-14 15:00:01 +00:00
|
|
|
|
2013-01-05 17:33:11 +00:00
|
|
|
find_package(Threads REQUIRED)
|
2015-08-10 18:19:04 +00:00
|
|
|
find_package(Vulkan)
|
2013-01-05 17:33:11 +00:00
|
|
|
|
2013-11-07 17:22:44 +00:00
|
|
|
if (GLFW_BUILD_DOCS)
|
|
|
|
set(DOXYGEN_SKIP_DOT TRUE)
|
|
|
|
find_package(Doxygen)
|
2013-06-17 09:58:46 +00:00
|
|
|
endif()
|
|
|
|
|
2012-03-25 11:52:35 +00:00
|
|
|
#--------------------------------------------------------------------
|
2013-06-17 09:58:46 +00:00
|
|
|
# Set compiler specific flags
|
2012-03-25 11:52:35 +00:00
|
|
|
#--------------------------------------------------------------------
|
2013-06-17 09:58:46 +00:00
|
|
|
if (MSVC)
|
2016-11-16 22:05:47 +00:00
|
|
|
if (MSVC90)
|
|
|
|
# Workaround for VS 2008 not shipping with the DirectX 9 SDK
|
|
|
|
include(CheckIncludeFile)
|
|
|
|
check_include_file(dinput.h DINPUT_H_FOUND)
|
|
|
|
if (NOT DINPUT_H_FOUND)
|
|
|
|
message(FATAL_ERROR "DirectX 9 SDK not found")
|
|
|
|
endif()
|
|
|
|
# Workaround for VS 2008 not shipping with stdint.h
|
|
|
|
list(APPEND glfw_INCLUDE_DIRS "${GLFW_SOURCE_DIR}/deps/vs2008")
|
|
|
|
endif()
|
|
|
|
|
2013-06-17 09:58:46 +00:00
|
|
|
if (NOT USE_MSVC_RUNTIME_LIBRARY_DLL)
|
|
|
|
foreach (flag CMAKE_C_FLAGS
|
2015-10-14 11:13:07 +00:00
|
|
|
CMAKE_C_FLAGS_DEBUG
|
|
|
|
CMAKE_C_FLAGS_RELEASE
|
|
|
|
CMAKE_C_FLAGS_MINSIZEREL
|
|
|
|
CMAKE_C_FLAGS_RELWITHDEBINFO)
|
2013-06-17 09:58:46 +00:00
|
|
|
|
|
|
|
if (${flag} MATCHES "/MD")
|
|
|
|
string(REGEX REPLACE "/MD" "/MT" ${flag} "${${flag}}")
|
|
|
|
endif()
|
|
|
|
if (${flag} MATCHES "/MDd")
|
|
|
|
string(REGEX REPLACE "/MDd" "/MTd" ${flag} "${${flag}}")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
endforeach()
|
|
|
|
endif()
|
2012-03-29 12:06:26 +00:00
|
|
|
endif()
|
|
|
|
|
2014-10-07 17:00:31 +00:00
|
|
|
if (MINGW)
|
2016-06-02 12:15:49 +00:00
|
|
|
# Workaround for legacy MinGW not providing XInput and DirectInput
|
|
|
|
include(CheckIncludeFile)
|
|
|
|
|
|
|
|
check_include_file(dinput.h DINPUT_H_FOUND)
|
|
|
|
check_include_file(xinput.h XINPUT_H_FOUND)
|
|
|
|
if (NOT DINPUT_H_FOUND OR NOT XINPUT_H_FOUND)
|
|
|
|
list(APPEND glfw_INCLUDE_DIRS "${GLFW_SOURCE_DIR}/deps/mingw")
|
|
|
|
endif()
|
|
|
|
|
2014-10-07 17:00:31 +00:00
|
|
|
# Enable link-time exploit mitigation features enabled by default on MSVC
|
|
|
|
include(CheckCCompilerFlag)
|
|
|
|
|
|
|
|
# Compatibility with data execution prevention (DEP)
|
|
|
|
set(CMAKE_REQUIRED_FLAGS "-Wl,--nxcompat")
|
|
|
|
check_c_compiler_flag("" _GLFW_HAS_DEP)
|
|
|
|
if (_GLFW_HAS_DEP)
|
|
|
|
set(CMAKE_SHARED_LINKER_FLAGS "-Wl,--nxcompat ${CMAKE_SHARED_LINKER_FLAGS}")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# Compatibility with address space layout randomization (ASLR)
|
|
|
|
set(CMAKE_REQUIRED_FLAGS "-Wl,--dynamicbase")
|
|
|
|
check_c_compiler_flag("" _GLFW_HAS_ASLR)
|
|
|
|
if (_GLFW_HAS_ASLR)
|
|
|
|
set(CMAKE_SHARED_LINKER_FLAGS "-Wl,--dynamicbase ${CMAKE_SHARED_LINKER_FLAGS}")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# Compatibility with 64-bit address space layout randomization (ASLR)
|
|
|
|
set(CMAKE_REQUIRED_FLAGS "-Wl,--high-entropy-va")
|
|
|
|
check_c_compiler_flag("" _GLFW_HAS_64ASLR)
|
|
|
|
if (_GLFW_HAS_64ASLR)
|
|
|
|
set(CMAKE_SHARED_LINKER_FLAGS "-Wl,--high-entropy-va ${CMAKE_SHARED_LINKER_FLAGS}")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2016-10-13 23:46:56 +00:00
|
|
|
if (APPLE)
|
|
|
|
# Dependencies required by the MoltenVK static library
|
|
|
|
set(GLFW_VULKAN_DEPS
|
|
|
|
"-lc++"
|
|
|
|
"-framework Cocoa"
|
|
|
|
"-framework Metal"
|
|
|
|
"-framework QuartzCore")
|
|
|
|
endif()
|
|
|
|
|
2010-09-17 02:22:48 +00:00
|
|
|
#--------------------------------------------------------------------
|
2013-01-15 23:08:01 +00:00
|
|
|
# Detect and select backend APIs
|
2010-09-17 02:22:48 +00:00
|
|
|
#--------------------------------------------------------------------
|
2016-10-13 15:24:51 +00:00
|
|
|
if (GLFW_USE_WAYLAND)
|
|
|
|
set(_GLFW_WAYLAND 1)
|
|
|
|
message(STATUS "Using Wayland for window creation")
|
|
|
|
elseif (GLFW_USE_MIR)
|
|
|
|
set(_GLFW_MIR 1)
|
|
|
|
message(STATUS "Using Mir for window creation")
|
|
|
|
elseif (GLFW_USE_OSMESA)
|
|
|
|
set(_GLFW_OSMESA 1)
|
|
|
|
message(STATUS "Using OSMesa for headless context creation")
|
|
|
|
elseif (WIN32)
|
2012-11-27 14:02:26 +00:00
|
|
|
set(_GLFW_WIN32 1)
|
2013-12-04 13:19:22 +00:00
|
|
|
message(STATUS "Using Win32 for window creation")
|
2012-11-27 14:02:26 +00:00
|
|
|
elseif (APPLE)
|
|
|
|
set(_GLFW_COCOA 1)
|
|
|
|
message(STATUS "Using Cocoa for window creation")
|
|
|
|
elseif (UNIX)
|
2016-10-13 15:24:51 +00:00
|
|
|
set(_GLFW_X11 1)
|
|
|
|
message(STATUS "Using X11 for window creation")
|
2012-03-25 14:51:24 +00:00
|
|
|
else()
|
|
|
|
message(FATAL_ERROR "No supported platform was detected")
|
|
|
|
endif()
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2016-08-04 22:23:16 +00:00
|
|
|
#--------------------------------------------------------------------
|
|
|
|
# Add Vulkan static library if requested
|
|
|
|
#--------------------------------------------------------------------
|
|
|
|
if (GLFW_VULKAN_STATIC)
|
|
|
|
if (VULKAN_FOUND AND VULKAN_STATIC_LIBRARY)
|
2016-10-13 23:46:56 +00:00
|
|
|
list(APPEND glfw_LIBRARIES ${VULKAN_STATIC_LIBRARY} ${GLFW_VULKAN_DEPS})
|
|
|
|
if (BUILD_SHARED_LIBS)
|
|
|
|
message(WARNING "Linking Vulkan loader static library into GLFW")
|
|
|
|
endif()
|
2016-08-04 22:23:16 +00:00
|
|
|
else()
|
|
|
|
if (BUILD_SHARED_LIBS OR GLFW_BUILD_EXAMPLES OR GLFW_BUILD_TESTS)
|
|
|
|
message(FATAL_ERROR "Vulkan loader static library not found")
|
|
|
|
else()
|
|
|
|
message(WARNING "Vulkan loader static library not found")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2015-05-14 14:15:44 +00:00
|
|
|
#--------------------------------------------------------------------
|
|
|
|
# Find and add Unix math and time libraries
|
|
|
|
#--------------------------------------------------------------------
|
|
|
|
if (UNIX AND NOT APPLE)
|
|
|
|
find_library(RT_LIBRARY rt)
|
|
|
|
mark_as_advanced(RT_LIBRARY)
|
|
|
|
if (RT_LIBRARY)
|
|
|
|
list(APPEND glfw_LIBRARIES "${RT_LIBRARY}")
|
|
|
|
list(APPEND glfw_PKG_LIBS "-lrt")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
find_library(MATH_LIBRARY m)
|
|
|
|
mark_as_advanced(MATH_LIBRARY)
|
|
|
|
if (MATH_LIBRARY)
|
|
|
|
list(APPEND glfw_LIBRARIES "${MATH_LIBRARY}")
|
|
|
|
list(APPEND glfw_PKG_LIBS "-lm")
|
|
|
|
endif()
|
2015-10-14 01:14:56 +00:00
|
|
|
|
|
|
|
if (CMAKE_DL_LIBS)
|
|
|
|
list(APPEND glfw_LIBRARIES "${CMAKE_DL_LIBS}")
|
|
|
|
list(APPEND glfw_PKG_LIBS "-l${CMAKE_DL_LIBS}")
|
|
|
|
endif()
|
2015-05-14 14:15:44 +00:00
|
|
|
endif()
|
|
|
|
|
2012-03-25 14:51:24 +00:00
|
|
|
#--------------------------------------------------------------------
|
2013-01-15 23:08:01 +00:00
|
|
|
# Use Win32 for window creation
|
2012-03-25 14:51:24 +00:00
|
|
|
#--------------------------------------------------------------------
|
2012-11-27 14:02:26 +00:00
|
|
|
if (_GLFW_WIN32)
|
2014-02-10 14:30:51 +00:00
|
|
|
|
2014-12-04 14:37:21 +00:00
|
|
|
list(APPEND glfw_PKG_LIBS "-lgdi32")
|
2013-07-07 21:29:13 +00:00
|
|
|
|
2015-05-29 11:08:12 +00:00
|
|
|
if (GLFW_USE_HYBRID_HPG)
|
|
|
|
set(_GLFW_USE_HYBRID_HPG 1)
|
2013-08-07 16:07:33 +00:00
|
|
|
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
|
|
|
#--------------------------------------------------------------------
|
2013-01-15 23:08:01 +00:00
|
|
|
# Use X11 for window creation
|
2010-09-17 02:22:48 +00:00
|
|
|
#--------------------------------------------------------------------
|
2012-04-25 04:56:17 +00:00
|
|
|
if (_GLFW_X11)
|
2010-11-17 13:59:27 +00:00
|
|
|
|
2012-02-19 04:28:15 +00:00
|
|
|
find_package(X11 REQUIRED)
|
|
|
|
|
2014-12-04 14:37:21 +00:00
|
|
|
list(APPEND glfw_PKG_DEPS "x11")
|
2012-01-27 22:24:58 +00:00
|
|
|
|
2012-04-25 04:56:17 +00:00
|
|
|
# Set up library and include paths
|
2014-08-11 18:24:16 +00:00
|
|
|
list(APPEND glfw_INCLUDE_DIRS "${X11_X11_INCLUDE_PATH}")
|
|
|
|
list(APPEND glfw_LIBRARIES "${X11_X11_LIB}" "${CMAKE_THREAD_LIBS_INIT}")
|
2012-01-27 23:01:05 +00:00
|
|
|
|
2013-01-12 18:12:55 +00:00
|
|
|
# Check for XRandR (modern resolution switching and gamma control)
|
|
|
|
if (NOT X11_Xrandr_FOUND)
|
2013-01-13 00:35:49 +00:00
|
|
|
message(FATAL_ERROR "The RandR library and headers were not found")
|
2012-02-19 04:28:15 +00:00
|
|
|
endif()
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2014-08-11 18:24:16 +00:00
|
|
|
list(APPEND glfw_INCLUDE_DIRS "${X11_Xrandr_INCLUDE_PATH}")
|
|
|
|
list(APPEND glfw_LIBRARIES "${X11_Xrandr_LIB}")
|
2014-12-04 14:37:21 +00:00
|
|
|
list(APPEND glfw_PKG_DEPS "xrandr")
|
2012-03-25 12:51:56 +00:00
|
|
|
|
2014-09-22 10:49:03 +00:00
|
|
|
# Check for Xinerama (legacy multi-monitor support)
|
|
|
|
if (NOT X11_Xinerama_FOUND)
|
|
|
|
message(FATAL_ERROR "The Xinerama library and headers were not found")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
list(APPEND glfw_INCLUDE_DIRS "${X11_Xinerama_INCLUDE_PATH}")
|
|
|
|
list(APPEND glfw_LIBRARIES "${X11_Xinerama_LIB}")
|
2014-12-04 14:37:21 +00:00
|
|
|
list(APPEND glfw_PKG_DEPS "xinerama")
|
2014-09-22 10:49:03 +00:00
|
|
|
|
2013-01-12 18:12:55 +00:00
|
|
|
# Check for Xkb (X keyboard extension)
|
|
|
|
if (NOT X11_Xkb_FOUND)
|
2013-01-13 00:35:49 +00:00
|
|
|
message(FATAL_ERROR "The X keyboard extension headers were not found")
|
2013-12-04 13:19:22 +00:00
|
|
|
endif()
|
2011-01-03 20:44:05 +00:00
|
|
|
|
2014-08-11 18:24:16 +00:00
|
|
|
list(APPEND glfw_INCLUDE_DIR "${X11_Xkb_INCLUDE_PATH}")
|
2013-01-12 18:12:55 +00:00
|
|
|
|
2013-12-04 13:19:22 +00:00
|
|
|
# Check for Xcursor
|
|
|
|
if (NOT X11_Xcursor_FOUND)
|
|
|
|
message(FATAL_ERROR "The Xcursor libraries and headers were not found")
|
|
|
|
endif()
|
|
|
|
|
2014-08-11 18:24:16 +00:00
|
|
|
list(APPEND glfw_INCLUDE_DIR "${X11_Xcursor_INCLUDE_PATH}")
|
|
|
|
list(APPEND glfw_LIBRARIES "${X11_Xcursor_LIB}")
|
2014-12-04 14:37:21 +00:00
|
|
|
list(APPEND glfw_PKG_DEPS "xcursor")
|
2013-12-04 13:19:22 +00:00
|
|
|
|
2012-04-25 04:56:17 +00:00
|
|
|
endif()
|
|
|
|
|
2014-03-17 21:53:43 +00:00
|
|
|
#--------------------------------------------------------------------
|
|
|
|
# Use Wayland for window creation
|
|
|
|
#--------------------------------------------------------------------
|
|
|
|
if (_GLFW_WAYLAND)
|
2015-12-09 06:03:32 +00:00
|
|
|
find_package(ECM REQUIRED NO_MODULE)
|
2016-08-04 03:03:08 +00:00
|
|
|
list(APPEND CMAKE_MODULE_PATH ${ECM_MODULE_PATH})
|
2015-12-09 06:03:32 +00:00
|
|
|
|
2014-03-17 21:53:43 +00:00
|
|
|
find_package(Wayland REQUIRED)
|
2015-12-09 07:29:37 +00:00
|
|
|
find_package(WaylandScanner REQUIRED)
|
|
|
|
find_package(WaylandProtocols 1.1 REQUIRED)
|
2015-12-09 06:03:32 +00:00
|
|
|
|
2014-12-04 14:37:21 +00:00
|
|
|
list(APPEND glfw_PKG_DEPS "wayland-egl")
|
2014-03-17 21:53:43 +00:00
|
|
|
|
2015-12-09 06:03:32 +00:00
|
|
|
list(APPEND glfw_INCLUDE_DIRS "${Wayland_INCLUDE_DIR}")
|
|
|
|
list(APPEND glfw_LIBRARIES "${Wayland_LIBRARIES}" "${CMAKE_THREAD_LIBS_INIT}")
|
2014-03-17 21:53:43 +00:00
|
|
|
|
2014-06-29 21:09:21 +00:00
|
|
|
find_package(XKBCommon REQUIRED)
|
2014-12-04 14:37:21 +00:00
|
|
|
list(APPEND glfw_PKG_DEPS "xkbcommon")
|
2014-08-11 18:24:16 +00:00
|
|
|
list(APPEND glfw_INCLUDE_DIRS "${XKBCOMMON_INCLUDE_DIRS}")
|
|
|
|
list(APPEND glfw_LIBRARIES "${XKBCOMMON_LIBRARY}")
|
2014-03-17 21:53:43 +00:00
|
|
|
endif()
|
|
|
|
|
2014-11-06 08:15:37 +00:00
|
|
|
#--------------------------------------------------------------------
|
|
|
|
# Use Mir for window creation
|
|
|
|
#--------------------------------------------------------------------
|
|
|
|
if (_GLFW_MIR)
|
|
|
|
find_package(Mir REQUIRED)
|
2014-12-04 14:37:21 +00:00
|
|
|
list(APPEND glfw_PKG_DEPS "mirclient")
|
2014-11-06 08:15:37 +00:00
|
|
|
|
2017-03-29 02:03:29 +00:00
|
|
|
list(APPEND glfw_INCLUDE_DIRS "${MIR_INCLUDE_DIRS}")
|
2014-11-06 08:15:37 +00:00
|
|
|
list(APPEND glfw_LIBRARIES "${MIR_LIBRARIES}" "${CMAKE_THREAD_LIBS_INIT}")
|
|
|
|
|
|
|
|
find_package(XKBCommon REQUIRED)
|
2014-12-04 14:37:21 +00:00
|
|
|
list(APPEND glfw_PKG_DEPS "xkbcommon")
|
2014-11-06 08:15:37 +00:00
|
|
|
list(APPEND glfw_INCLUDE_DIRS "${XKBCOMMON_INCLUDE_DIRS}")
|
|
|
|
list(APPEND glfw_LIBRARIES "${XKBCOMMON_LIBRARY}")
|
|
|
|
endif()
|
|
|
|
|
2016-08-30 22:53:19 +00:00
|
|
|
#--------------------------------------------------------------------
|
|
|
|
# Use OSMesa for offscreen context creation
|
|
|
|
#--------------------------------------------------------------------
|
|
|
|
if (_GLFW_OSMESA)
|
2016-10-13 15:24:51 +00:00
|
|
|
find_package(OSMesa REQUIRED)
|
|
|
|
list(APPEND glfw_LIBRARIES "${CMAKE_THREAD_LIBS_INIT}")
|
2016-08-30 22:53:19 +00:00
|
|
|
endif()
|
|
|
|
|
2010-09-17 02:22:48 +00:00
|
|
|
#--------------------------------------------------------------------
|
2013-01-15 03:26:11 +00:00
|
|
|
# Use Cocoa for window creation and NSOpenGL for context creation
|
2010-09-17 02:22:48 +00:00
|
|
|
#--------------------------------------------------------------------
|
2016-03-28 11:19:31 +00:00
|
|
|
if (_GLFW_COCOA)
|
2013-12-04 13:19:22 +00:00
|
|
|
|
2016-10-31 00:59:22 +00:00
|
|
|
list(APPEND glfw_LIBRARIES
|
|
|
|
"-framework Cocoa"
|
|
|
|
"-framework IOKit"
|
|
|
|
"-framework CoreFoundation"
|
|
|
|
"-framework CoreVideo")
|
2012-03-26 11:35:14 +00:00
|
|
|
|
2014-12-04 14:37:21 +00:00
|
|
|
set(glfw_PKG_DEPS "")
|
2016-05-23 10:46:57 +00:00
|
|
|
set(glfw_PKG_LIBS "-framework Cocoa -framework IOKit -framework CoreFoundation -framework CoreVideo")
|
2012-02-29 19:15:39 +00:00
|
|
|
endif()
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2012-03-25 18:15:27 +00:00
|
|
|
#--------------------------------------------------------------------
|
|
|
|
# Export GLFW library dependencies
|
|
|
|
#--------------------------------------------------------------------
|
2014-12-04 14:37:21 +00:00
|
|
|
foreach(arg ${glfw_PKG_DEPS})
|
|
|
|
set(GLFW_PKG_DEPS "${GLFW_PKG_DEPS} ${arg}")
|
|
|
|
endforeach()
|
|
|
|
foreach(arg ${glfw_PKG_LIBS})
|
|
|
|
set(GLFW_PKG_LIBS "${GLFW_PKG_LIBS} ${arg}")
|
|
|
|
endforeach()
|
2012-03-25 18:15:27 +00:00
|
|
|
|
2010-09-16 22:54:11 +00:00
|
|
|
#--------------------------------------------------------------------
|
2012-03-26 10:54:50 +00:00
|
|
|
# Create generated files
|
2010-09-16 22:54:11 +00:00
|
|
|
#--------------------------------------------------------------------
|
2015-01-05 01:40:32 +00:00
|
|
|
include(CMakePackageConfigHelpers)
|
|
|
|
|
2016-02-01 23:06:56 +00:00
|
|
|
set(GLFW_CONFIG_PATH "lib${LIB_SUFFIX}/cmake/glfw3")
|
2015-01-05 01:40:32 +00:00
|
|
|
|
2016-02-02 04:55:24 +00:00
|
|
|
configure_package_config_file(src/glfw3Config.cmake.in
|
|
|
|
src/glfw3Config.cmake
|
2015-01-05 01:40:32 +00:00
|
|
|
INSTALL_DESTINATION "${GLFW_CONFIG_PATH}"
|
|
|
|
NO_CHECK_REQUIRED_COMPONENTS_MACRO)
|
|
|
|
|
2016-02-02 04:55:24 +00:00
|
|
|
write_basic_package_version_file(src/glfw3ConfigVersion.cmake
|
2015-01-05 01:40:32 +00:00
|
|
|
VERSION ${GLFW_VERSION_FULL}
|
|
|
|
COMPATIBILITY SameMajorVersion)
|
|
|
|
|
2016-02-02 04:55:24 +00:00
|
|
|
configure_file(src/glfw_config.h.in src/glfw_config.h @ONLY)
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2016-02-02 04:55:24 +00:00
|
|
|
configure_file(src/glfw3.pc.in src/glfw3.pc @ONLY)
|
2013-05-09 13:47:44 +00:00
|
|
|
|
2013-06-17 08:26:57 +00:00
|
|
|
#--------------------------------------------------------------------
|
|
|
|
# Add subdirectories
|
|
|
|
#--------------------------------------------------------------------
|
|
|
|
add_subdirectory(src)
|
|
|
|
|
|
|
|
if (GLFW_BUILD_EXAMPLES)
|
|
|
|
add_subdirectory(examples)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if (GLFW_BUILD_TESTS)
|
|
|
|
add_subdirectory(tests)
|
|
|
|
endif()
|
|
|
|
|
2013-11-07 17:22:44 +00:00
|
|
|
if (DOXYGEN_FOUND AND GLFW_BUILD_DOCS)
|
2013-06-17 08:26:57 +00:00
|
|
|
add_subdirectory(docs)
|
|
|
|
endif()
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
#--------------------------------------------------------------------
|
2013-06-17 09:58:46 +00:00
|
|
|
# Install files other than the library
|
2013-06-16 11:31:39 +00:00
|
|
|
# The library is installed by src/CMakeLists.txt
|
2010-09-07 15:34:51 +00:00
|
|
|
#--------------------------------------------------------------------
|
2013-06-16 11:31:39 +00:00
|
|
|
if (GLFW_INSTALL)
|
2013-12-04 13:19:22 +00:00
|
|
|
install(DIRECTORY include/GLFW DESTINATION include
|
2013-06-16 11:31:39 +00:00
|
|
|
FILES_MATCHING PATTERN glfw3.h PATTERN glfw3native.h)
|
2012-03-26 10:54:50 +00:00
|
|
|
|
2015-01-05 01:40:32 +00:00
|
|
|
install(FILES "${GLFW_BINARY_DIR}/src/glfw3Config.cmake"
|
|
|
|
"${GLFW_BINARY_DIR}/src/glfw3ConfigVersion.cmake"
|
2016-02-01 23:04:15 +00:00
|
|
|
DESTINATION "${GLFW_CONFIG_PATH}")
|
2013-06-16 11:31:39 +00:00
|
|
|
|
2016-02-01 23:06:56 +00:00
|
|
|
install(EXPORT glfwTargets FILE glfw3Targets.cmake
|
2016-02-02 03:50:50 +00:00
|
|
|
EXPORT_LINK_INTERFACE_LIBRARIES
|
2016-02-01 23:06:56 +00:00
|
|
|
DESTINATION "${GLFW_CONFIG_PATH}")
|
2014-08-11 18:24:16 +00:00
|
|
|
install(FILES "${GLFW_BINARY_DIR}/src/glfw3.pc"
|
2016-02-01 23:04:15 +00:00
|
|
|
DESTINATION "lib${LIB_SUFFIX}/pkgconfig")
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2013-06-17 09:58:46 +00:00
|
|
|
# Only generate this target if no higher-level project already has
|
|
|
|
if (NOT TARGET uninstall)
|
2016-02-02 04:55:24 +00:00
|
|
|
configure_file(cmake_uninstall.cmake.in
|
|
|
|
cmake_uninstall.cmake IMMEDIATE @ONLY)
|
2010-09-17 02:22:48 +00:00
|
|
|
|
2013-06-17 09:58:46 +00:00
|
|
|
add_custom_target(uninstall
|
2014-08-11 18:24:16 +00:00
|
|
|
"${CMAKE_COMMAND}" -P
|
|
|
|
"${GLFW_BINARY_DIR}/cmake_uninstall.cmake")
|
2013-06-17 09:58:46 +00:00
|
|
|
endif()
|
2011-07-27 13:46:19 +00:00
|
|
|
endif()
|
2010-09-07 15:34:51 +00:00
|
|
|
|