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")
|
2014-01-01 14:29:57 +00:00
|
|
|
set(GLFW_VERSION_MINOR "1")
|
|
|
|
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
|
|
|
|
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)
|
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
|
|
|
|
2013-07-07 21:29:13 +00:00
|
|
|
if (WIN32)
|
|
|
|
option(GLFW_USE_DWM_SWAP_INTERVAL "Set swap interval even when DWM compositing is enabled" OFF)
|
2013-08-07 16:07:33 +00:00
|
|
|
option(GLFW_USE_OPTIMUS_HPG "Force use of high-performance GPU on Optimus systems" OFF)
|
2013-07-07 21:29:13 +00:00
|
|
|
endif()
|
|
|
|
|
2013-01-21 15:21:59 +00:00
|
|
|
if (APPLE)
|
2013-06-17 09:58:46 +00:00
|
|
|
option(GLFW_BUILD_UNIVERSAL "Build GLFW as a Universal Binary" OFF)
|
2013-01-24 18:45:21 +00:00
|
|
|
option(GLFW_USE_CHDIR "Make glfwInit chdir to Contents/Resources" ON)
|
|
|
|
option(GLFW_USE_MENUBAR "Populate the menu bar on first window creation" ON)
|
2014-02-10 12:45:13 +00:00
|
|
|
option(GLFW_USE_RETINA "Use the full resolution of Retina displays" ON)
|
2013-01-21 15:21:59 +00:00
|
|
|
else()
|
2012-12-02 18:01:20 +00:00
|
|
|
option(GLFW_USE_EGL "Use EGL for context creation" OFF)
|
|
|
|
endif()
|
2011-09-06 13:23:44 +00:00
|
|
|
|
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()
|
|
|
|
|
2012-04-25 04:56:17 +00:00
|
|
|
if (GLFW_USE_EGL)
|
2013-01-15 03:26:11 +00:00
|
|
|
set(GLFW_CLIENT_LIBRARY "opengl" CACHE STRING
|
2013-01-15 23:08:01 +00:00
|
|
|
"The client library to use; one of opengl, glesv1 or glesv2")
|
2013-01-15 03:26:11 +00:00
|
|
|
|
|
|
|
if (${GLFW_CLIENT_LIBRARY} STREQUAL "opengl")
|
|
|
|
set(_GLFW_USE_OPENGL 1)
|
|
|
|
elseif (${GLFW_CLIENT_LIBRARY} STREQUAL "glesv1")
|
|
|
|
set(_GLFW_USE_GLESV1 1)
|
|
|
|
elseif (${GLFW_CLIENT_LIBRARY} STREQUAL "glesv2")
|
|
|
|
set(_GLFW_USE_GLESV2 1)
|
|
|
|
else()
|
|
|
|
message(FATAL_ERROR "Unsupported client library")
|
|
|
|
endif()
|
|
|
|
|
2012-07-19 20:14:08 +00:00
|
|
|
set(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/CMake/modules)
|
2012-04-25 04:56:17 +00:00
|
|
|
find_package(EGL REQUIRED)
|
2012-11-27 14:02:26 +00:00
|
|
|
|
2013-02-11 00:29:45 +00:00
|
|
|
if (NOT _GLFW_USE_OPENGL)
|
|
|
|
set(GLFW_BUILD_EXAMPLES OFF)
|
|
|
|
set(GLFW_BUILD_TESTS OFF)
|
|
|
|
message(STATUS "NOTE: Examples and tests require OpenGL")
|
|
|
|
endif()
|
2012-04-25 04:56:17 +00:00
|
|
|
else()
|
2013-01-15 03:26:11 +00:00
|
|
|
set(_GLFW_USE_OPENGL 1)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if (_GLFW_USE_OPENGL)
|
2012-04-25 04:56:17 +00:00
|
|
|
find_package(OpenGL REQUIRED)
|
2013-01-15 03:26:11 +00:00
|
|
|
elseif (_GLFW_USE_GLESV1)
|
|
|
|
find_package(GLESv1 REQUIRED)
|
|
|
|
elseif (_GLFW_USE_GLESV2)
|
|
|
|
find_package(GLESv2 REQUIRED)
|
2012-04-25 04:56:17 +00:00
|
|
|
endif()
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2013-01-05 17:33:11 +00:00
|
|
|
find_package(Threads REQUIRED)
|
|
|
|
|
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
|
|
|
|
2013-11-07 17:22:44 +00:00
|
|
|
if (GLFW_DOCUMENT_INTERNALS)
|
|
|
|
set(GLFW_INTERNAL_DOCS "${GLFW_SOURCE_DIR}/src/internal.h ${GLFW_SOURCE_DIR}/docs/internal.dox")
|
|
|
|
endif()
|
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 (UNIX)
|
2012-03-25 11:58:07 +00:00
|
|
|
add_definitions(-Wall)
|
2013-06-17 08:25:17 +00:00
|
|
|
|
2013-06-17 09:58:46 +00:00
|
|
|
if (BUILD_SHARED_LIBS)
|
2013-06-17 08:25:17 +00:00
|
|
|
add_definitions(-fvisibility=hidden)
|
|
|
|
endif()
|
2012-03-22 22:25:39 +00:00
|
|
|
endif()
|
|
|
|
|
2013-06-17 09:58:46 +00:00
|
|
|
if (MSVC)
|
|
|
|
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
|
|
|
|
|
|
|
|
if (NOT USE_MSVC_RUNTIME_LIBRARY_DLL)
|
|
|
|
foreach (flag CMAKE_C_FLAGS
|
|
|
|
CMAKE_C_FLAGS_DEBUG
|
|
|
|
CMAKE_C_FLAGS_RELEASE
|
|
|
|
CMAKE_C_FLAGS_MINSIZEREL
|
|
|
|
CMAKE_C_FLAGS_RELWITHDEBINFO)
|
|
|
|
|
|
|
|
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()
|
|
|
|
|
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
|
|
|
#--------------------------------------------------------------------
|
2010-09-07 15:34:51 +00:00
|
|
|
if (WIN32)
|
2012-11-27 14:02:26 +00:00
|
|
|
set(_GLFW_WIN32 1)
|
|
|
|
message(STATUS "Using Win32 for window creation")
|
|
|
|
|
|
|
|
if (GLFW_USE_EGL)
|
|
|
|
set(_GLFW_EGL 1)
|
|
|
|
message(STATUS "Using EGL for context creation")
|
|
|
|
else()
|
|
|
|
set(_GLFW_WGL 1)
|
|
|
|
message(STATUS "Using WGL for context creation")
|
|
|
|
endif()
|
|
|
|
elseif (APPLE)
|
|
|
|
set(_GLFW_COCOA 1)
|
|
|
|
message(STATUS "Using Cocoa for window creation")
|
2013-01-15 23:08:01 +00:00
|
|
|
set(_GLFW_NSGL 1)
|
|
|
|
message(STATUS "Using NSGL for context creation")
|
2012-11-27 14:02:26 +00:00
|
|
|
elseif (UNIX)
|
2012-04-25 04:56:17 +00:00
|
|
|
set(_GLFW_X11 1)
|
2012-11-27 14:02:26 +00:00
|
|
|
message(STATUS "Using X11 for window creation")
|
|
|
|
|
2012-04-25 04:56:17 +00:00
|
|
|
if (GLFW_USE_EGL)
|
2012-11-27 14:02:26 +00:00
|
|
|
set(_GLFW_EGL 1)
|
|
|
|
message(STATUS "Using EGL for context creation")
|
2012-04-25 04:56:17 +00:00
|
|
|
else()
|
2012-11-27 14:02:26 +00:00
|
|
|
set(_GLFW_GLX 1)
|
|
|
|
message(STATUS "Using GLX for context creation")
|
2012-04-25 04:56:17 +00:00
|
|
|
endif()
|
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
|
|
|
|
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
|
|
|
|
|
|
|
set(GLFW_PKG_LIBS "${GLFW_PKG_LIBS} -lgdi32 -lwinmm")
|
|
|
|
|
2013-06-17 09:58:46 +00:00
|
|
|
# The DLL links against winmm; the static library loads it
|
|
|
|
# That way, both code paths receive testing
|
2012-03-25 11:53:53 +00:00
|
|
|
if (BUILD_SHARED_LIBS)
|
2013-06-17 09:58:46 +00:00
|
|
|
set(_GLFW_NO_DLOAD_WINMM 1)
|
2012-03-25 14:34:36 +00:00
|
|
|
list(APPEND glfw_LIBRARIES winmm)
|
2012-03-25 11:53:53 +00:00
|
|
|
endif()
|
2013-07-07 21:29:13 +00:00
|
|
|
|
|
|
|
if (GLFW_USE_DWM_SWAP_INTERVAL)
|
|
|
|
set(_GLFW_USE_DWM_SWAP_INTERVAL 1)
|
|
|
|
endif()
|
2013-08-07 16:07:33 +00:00
|
|
|
if (GLFW_USE_OPTIMUS_HPG)
|
|
|
|
set(_GLFW_USE_OPTIMUS_HPG 1)
|
|
|
|
endif()
|
2013-09-13 10:22:28 +00:00
|
|
|
|
|
|
|
# HACK: When building on MinGW, WINVER and UNICODE need to be defined before
|
|
|
|
# the inclusion of stddef.h (by glfw3.h), which is itself included before
|
|
|
|
# win32_platform.h. We define them here until a saner solution can be found
|
|
|
|
# NOTE: MinGW-w64 and Visual C++ do /not/ need this hack.
|
|
|
|
add_definitions(-DUNICODE)
|
|
|
|
add_definitions(-DWINVER=0x0501)
|
2012-02-29 19:15:39 +00:00
|
|
|
endif()
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2013-01-15 03:26:11 +00:00
|
|
|
#--------------------------------------------------------------------
|
2013-01-15 23:08:01 +00:00
|
|
|
# Use WGL for context creation
|
2013-01-15 03:26:11 +00:00
|
|
|
#--------------------------------------------------------------------
|
|
|
|
if (_GLFW_WGL)
|
2014-02-10 14:30:51 +00:00
|
|
|
|
|
|
|
set(GLFW_PKG_LIBS "${GLFW_PKG_LIBS} -lopengl32")
|
|
|
|
|
2013-01-15 03:26:11 +00:00
|
|
|
list(APPEND glfw_INCLUDE_DIRS ${OPENGL_INCLUDE_DIR})
|
|
|
|
list(APPEND glfw_LIBRARIES ${OPENGL_gl_LIBRARY})
|
2014-02-10 14:30:51 +00:00
|
|
|
|
2013-01-15 03:26:11 +00:00
|
|
|
endif()
|
|
|
|
|
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)
|
|
|
|
|
2013-01-15 03:26:11 +00:00
|
|
|
set(GLFW_PKG_DEPS "${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
|
|
|
|
list(APPEND glfw_INCLUDE_DIRS ${X11_X11_INCLUDE_PATH})
|
2013-05-07 19:39:09 +00:00
|
|
|
list(APPEND glfw_LIBRARIES ${X11_X11_LIB} ${CMAKE_THREAD_LIBS_INIT})
|
|
|
|
if (UNIX AND NOT APPLE)
|
|
|
|
list(APPEND glfw_LIBRARIES ${RT_LIBRARY})
|
|
|
|
endif()
|
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
|
|
|
|
2013-01-12 18:12:55 +00:00
|
|
|
list(APPEND glfw_INCLUDE_DIRS ${X11_Xrandr_INCLUDE_PATH})
|
|
|
|
list(APPEND glfw_LIBRARIES ${X11_Xrandr_LIB})
|
|
|
|
set(GLFW_PKG_DEPS "${GLFW_PKG_DEPS} xrandr")
|
2012-03-25 12:51:56 +00:00
|
|
|
|
2013-05-19 06:16:19 +00:00
|
|
|
# Check for XInput (high-resolution cursor motion)
|
|
|
|
if (NOT X11_Xinput_FOUND)
|
|
|
|
message(FATAL_ERROR "The XInput library and headers were not found")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
list(APPEND glfw_INCLUDE_DIRS ${X11_Xinput_INCLUDE_PATH})
|
2013-09-13 12:41:13 +00:00
|
|
|
|
|
|
|
if (X11_Xinput_LIB)
|
|
|
|
list(APPEND glfw_LIBRARIES ${X11_Xinput_LIB})
|
|
|
|
else()
|
|
|
|
# Backwards compatibility (bug in CMake 2.8.7)
|
|
|
|
list(APPEND glfw_LIBRARIES Xi)
|
|
|
|
endif()
|
2013-05-20 11:06:09 +00:00
|
|
|
set(GLFW_PKG_DEPS "${GLFW_PKG_DEPS} xi")
|
2013-05-19 06:16:19 +00:00
|
|
|
|
2013-01-12 18:12:55 +00:00
|
|
|
# Check for Xf86VidMode (fallback gamma control)
|
|
|
|
if (NOT X11_xf86vmode_FOUND)
|
2013-01-13 00:35:49 +00:00
|
|
|
message(FATAL_ERROR "The Xf86VidMode library and headers were not found")
|
2013-01-12 18:12:55 +00:00
|
|
|
endif()
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2013-01-12 18:12:55 +00:00
|
|
|
list(APPEND glfw_INCLUDE_DIRS ${X11_xf86vmode_INCLUDE_PATH})
|
|
|
|
set(GLFW_PKG_DEPS "${GLFW_PKG_DEPS} xxf86vm")
|
|
|
|
|
2013-06-16 01:17:20 +00:00
|
|
|
if (X11_Xxf86vm_LIB)
|
|
|
|
list(APPEND glfw_LIBRARIES ${X11_Xxf86vm_LIB})
|
2013-01-07 17:08:07 +00:00
|
|
|
else()
|
2013-06-16 01:17:20 +00:00
|
|
|
# Backwards compatibility (see CMake bug 0006976)
|
2013-01-12 18:12:55 +00:00
|
|
|
list(APPEND glfw_LIBRARIES Xxf86vm)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# 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")
|
2012-02-19 04:28:15 +00:00
|
|
|
endif()
|
2011-01-03 20:44:05 +00:00
|
|
|
|
2013-01-12 18:12:55 +00:00
|
|
|
list(APPEND glfw_INCLUDE_DIR ${X11_Xkb_INCLUDE_PATH})
|
|
|
|
|
2012-03-25 12:51:56 +00:00
|
|
|
find_library(RT_LIBRARY rt)
|
2012-03-25 13:05:48 +00:00
|
|
|
mark_as_advanced(RT_LIBRARY)
|
2012-03-25 12:51:56 +00:00
|
|
|
if (RT_LIBRARY)
|
2012-03-25 14:34:36 +00:00
|
|
|
list(APPEND glfw_LIBRARIES ${RT_LIBRARY})
|
2012-03-25 15:31:22 +00:00
|
|
|
set(GLFW_PKG_LIBS "${GLFW_PKG_LIBS} -lrt")
|
2012-03-25 12:51:56 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
find_library(MATH_LIBRARY m)
|
2012-03-25 13:05:48 +00:00
|
|
|
mark_as_advanced(MATH_LIBRARY)
|
2012-03-25 12:51:56 +00:00
|
|
|
if (MATH_LIBRARY)
|
2012-03-25 14:34:36 +00:00
|
|
|
list(APPEND glfw_LIBRARIES ${MATH_LIBRARY})
|
2012-03-25 15:31:22 +00:00
|
|
|
set(GLFW_PKG_LIBS "${GLFW_PKG_LIBS} -lm")
|
2012-03-25 12:51:56 +00:00
|
|
|
endif()
|
|
|
|
|
2012-04-25 04:56:17 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
#--------------------------------------------------------------------
|
2013-01-15 23:08:01 +00:00
|
|
|
# Use GLX for context creation
|
2012-04-25 04:56:17 +00:00
|
|
|
#--------------------------------------------------------------------
|
2012-11-27 14:02:26 +00:00
|
|
|
if (_GLFW_GLX)
|
2012-04-25 04:56:17 +00:00
|
|
|
|
2012-11-27 13:02:48 +00:00
|
|
|
list(APPEND glfw_INCLUDE_DIRS ${OPENGL_INCLUDE_DIR})
|
2012-04-25 04:56:17 +00:00
|
|
|
list(APPEND glfw_LIBRARIES ${OPENGL_gl_LIBRARY})
|
|
|
|
|
|
|
|
set(GLFW_PKG_DEPS "${GLFW_PKG_DEPS} gl")
|
|
|
|
|
|
|
|
include(CheckFunctionExists)
|
|
|
|
|
2012-03-25 15:22:35 +00:00
|
|
|
set(CMAKE_REQUIRED_LIBRARIES ${OPENGL_gl_LIBRARY})
|
2011-11-03 01:41:53 +00:00
|
|
|
check_function_exists(glXGetProcAddress _GLFW_HAS_GLXGETPROCADDRESS)
|
2013-06-17 09:58:46 +00:00
|
|
|
check_function_exists(glXGetProcAddressARB _GLFW_HAS_GLXGETPROCADDRESSARB)
|
|
|
|
check_function_exists(glXGetProcAddressEXT _GLFW_HAS_GLXGETPROCADDRESSEXT)
|
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")
|
2012-03-25 15:22:35 +00:00
|
|
|
|
|
|
|
# Check for dlopen support as a fallback
|
|
|
|
|
2013-10-13 14:24:33 +00:00
|
|
|
set(CMAKE_REQUIRED_LIBRARIES ${CMAKE_DL_LIBS})
|
2012-03-25 15:22:35 +00:00
|
|
|
check_function_exists(dlopen _GLFW_HAS_DLOPEN)
|
|
|
|
if (NOT _GLFW_HAS_DLOPEN)
|
|
|
|
message(FATAL_ERROR "No entry point retrieval mechanism found")
|
|
|
|
endif()
|
|
|
|
|
2013-10-13 14:24:33 +00:00
|
|
|
if (CMAKE_DL_LIBS)
|
|
|
|
list(APPEND glfw_LIBRARIES ${CMAKE_DL_LIBS})
|
|
|
|
set(GLFW_PKG_LIBS "${GLFW_PKG_LIBS} -l${CMAKE_DL_LIBS}")
|
2012-03-25 15:22:35 +00:00
|
|
|
endif()
|
2012-02-29 19:15:39 +00:00
|
|
|
endif()
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2012-04-25 04:56:17 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
#--------------------------------------------------------------------
|
2013-01-15 03:26:11 +00:00
|
|
|
# Use EGL for context creation
|
2012-04-25 04:56:17 +00:00
|
|
|
#--------------------------------------------------------------------
|
2012-11-27 14:02:26 +00:00
|
|
|
if (_GLFW_EGL)
|
2012-04-25 04:56:17 +00:00
|
|
|
|
2012-07-19 20:14:08 +00:00
|
|
|
list(APPEND glfw_INCLUDE_DIRS ${EGL_INCLUDE_DIR})
|
2012-04-25 04:56:17 +00:00
|
|
|
list(APPEND glfw_LIBRARIES ${EGL_LIBRARY})
|
|
|
|
|
2014-02-10 14:30:51 +00:00
|
|
|
set(GLFW_PKG_DEPS "${GLFW_PKG_DEPS} egl")
|
2012-04-25 04:56:17 +00:00
|
|
|
|
2013-01-15 03:26:11 +00:00
|
|
|
if (_GLFW_USE_OPENGL)
|
|
|
|
list(APPEND glfw_LIBRARIES ${OPENGL_gl_LIBRARY})
|
|
|
|
list(APPEND glfw_INCLUDE_DIRS ${OPENGL_INCLUDE_DIR})
|
|
|
|
set(GLFW_PKG_DEPS "${GLFW_PKG_DEPS} gl")
|
|
|
|
elseif (_GLFW_USE_GLESV1)
|
|
|
|
list(APPEND glfw_LIBRARIES ${GLESv1_LIBRARY})
|
|
|
|
list(APPEND glfw_INCLUDE_DIRS ${GLESv1_INCLUDE_DIR})
|
|
|
|
set(GLFW_PKG_DEPS "${GLFW_PKG_DEPS} glesv1_cm")
|
|
|
|
elseif (_GLFW_USE_GLESV2)
|
|
|
|
list(APPEND glfw_LIBRARIES ${GLESv2_LIBRARY})
|
|
|
|
list(APPEND glfw_INCLUDE_DIRS ${GLESv2_INCLUDE_DIR})
|
|
|
|
set(GLFW_PKG_DEPS "${GLFW_PKG_DEPS} glesv2")
|
|
|
|
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 03:26:11 +00:00
|
|
|
# Use Cocoa for window creation and NSOpenGL for context creation
|
2010-09-17 02:22:48 +00:00
|
|
|
#--------------------------------------------------------------------
|
2012-11-27 14:02:26 +00:00
|
|
|
if (_GLFW_COCOA AND _GLFW_NSGL)
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2013-01-24 18:45:21 +00:00
|
|
|
if (GLFW_USE_MENUBAR)
|
|
|
|
set(_GLFW_USE_MENUBAR 1)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if (GLFW_USE_CHDIR)
|
|
|
|
set(_GLFW_USE_CHDIR 1)
|
2013-01-21 15:21:59 +00:00
|
|
|
endif()
|
|
|
|
|
2014-02-10 12:45:13 +00:00
|
|
|
if (GLFW_USE_RETINA)
|
|
|
|
set(_GLFW_USE_RETINA 1)
|
|
|
|
endif()
|
|
|
|
|
2010-11-17 15:36:09 +00:00
|
|
|
if (GLFW_BUILD_UNIVERSAL)
|
|
|
|
message(STATUS "Building GLFW as Universal Binaries")
|
2013-01-12 18:48:26 +00:00
|
|
|
set(CMAKE_OSX_ARCHITECTURES i386;x86_64)
|
2012-07-19 00:35:34 +00:00
|
|
|
else()
|
2010-11-17 15:36:09 +00:00
|
|
|
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)
|
2013-10-09 17:45:39 +00:00
|
|
|
find_library(CORE_VIDEO_FRAMEWORK CoreVideo)
|
2012-03-25 14:34:36 +00:00
|
|
|
list(APPEND glfw_LIBRARIES ${COCOA_FRAMEWORK}
|
2012-03-25 11:49:35 +00:00
|
|
|
${OPENGL_gl_LIBRARY}
|
|
|
|
${IOKIT_FRAMEWORK}
|
2013-10-09 17:45:39 +00:00
|
|
|
${CORE_FOUNDATION_FRAMEWORK}
|
|
|
|
${CORE_VIDEO_FRAMEWORK})
|
2012-03-26 11:35:14 +00:00
|
|
|
|
|
|
|
set(GLFW_PKG_DEPS "")
|
2013-10-09 17:45:39 +00:00
|
|
|
set(GLFW_PKG_LIBS "-framework Cocoa -framework OpenGL -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
|
|
|
|
#--------------------------------------------------------------------
|
|
|
|
set(GLFW_LIBRARIES ${glfw_LIBRARIES} CACHE STRING "Dependencies of GLFW")
|
|
|
|
|
2012-07-30 00:04:08 +00:00
|
|
|
#--------------------------------------------------------------------
|
|
|
|
# Choose library output name
|
|
|
|
#--------------------------------------------------------------------
|
|
|
|
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()
|
|
|
|
|
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
|
|
|
#--------------------------------------------------------------------
|
2012-03-26 11:14:06 +00:00
|
|
|
configure_file(${GLFW_SOURCE_DIR}/docs/Doxyfile.in
|
|
|
|
${GLFW_BINARY_DIR}/docs/Doxyfile @ONLY)
|
2012-03-26 10:54:50 +00:00
|
|
|
|
2013-10-04 13:41:08 +00:00
|
|
|
configure_file(${GLFW_SOURCE_DIR}/src/glfw_config.h.in
|
|
|
|
${GLFW_BINARY_DIR}/src/glfw_config.h @ONLY)
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2013-05-09 13:47:44 +00:00
|
|
|
configure_file(${GLFW_SOURCE_DIR}/src/glfwConfig.cmake.in
|
|
|
|
${GLFW_BINARY_DIR}/src/glfwConfig.cmake @ONLY)
|
2013-06-16 11:31:39 +00:00
|
|
|
|
2013-05-09 13:47:44 +00:00
|
|
|
configure_file(${GLFW_SOURCE_DIR}/src/glfwConfigVersion.cmake.in
|
|
|
|
${GLFW_BINARY_DIR}/src/glfwConfigVersion.cmake @ONLY)
|
|
|
|
|
2014-02-10 14:30:51 +00:00
|
|
|
configure_file(${GLFW_SOURCE_DIR}/src/glfw3.pc.in
|
|
|
|
${GLFW_BINARY_DIR}/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)
|
|
|
|
install(DIRECTORY include/GLFW DESTINATION include
|
|
|
|
FILES_MATCHING PATTERN glfw3.h PATTERN glfw3native.h)
|
2012-03-26 10:54:50 +00:00
|
|
|
|
2013-06-16 11:31:39 +00:00
|
|
|
install(FILES ${GLFW_BINARY_DIR}/src/glfwConfig.cmake
|
|
|
|
${GLFW_BINARY_DIR}/src/glfwConfigVersion.cmake
|
|
|
|
DESTINATION lib${LIB_SUFFIX}/cmake/glfw)
|
|
|
|
|
2014-02-10 14:30:51 +00:00
|
|
|
install(EXPORT glfwTargets DESTINATION lib${LIB_SUFFIX}/cmake/glfw)
|
|
|
|
install(FILES ${GLFW_BINARY_DIR}/src/glfw3.pc
|
|
|
|
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)
|
|
|
|
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
|
|
|
|
2013-06-17 09:58:46 +00:00
|
|
|
add_custom_target(uninstall
|
|
|
|
${CMAKE_COMMAND} -P
|
|
|
|
${GLFW_BINARY_DIR}/cmake_uninstall.cmake)
|
|
|
|
endif()
|
2011-07-27 13:46:19 +00:00
|
|
|
endif()
|
2010-09-07 15:34:51 +00:00
|
|
|
|