TGUI/CMakeLists.txt

250 lines
10 KiB
CMake
Raw Permalink Normal View History

if(CMAKE_SYSTEM_NAME MATCHES "Android")
2018-04-01 06:38:13 -07:00
cmake_minimum_required(VERSION 3.7) # CMake's built-in Android support requires 3.7
else()
2018-04-01 06:38:13 -07:00
cmake_minimum_required(VERSION 3.5) # Can be at most 3.5.1 as long as Ubuntu 16.04 is supported
endif()
2013-09-12 14:44:36 -07:00
# Use new RPATH behavior on macOS (CMake 3.9 and newer)
2018-05-10 05:15:19 -07:00
if(POLICY CMP0068)
cmake_policy(SET CMP0068 NEW)
endif()
# Don't warn about existence of SFML_ROOT variable (CMake 3.12 and newer)
if(POLICY CMP0074)
cmake_policy(SET CMP0074 NEW)
endif()
2018-04-01 06:38:13 -07:00
include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/Macros.cmake)
2018-04-01 06:38:13 -07:00
# Set a default build type
2015-01-30 07:39:05 -08:00
tgui_set_option(CMAKE_BUILD_TYPE Release STRING "Choose the type of build (Debug or Release)")
2015-08-27 17:22:58 -07:00
# Set CMAKE_MODULE_PATH to find SFML < 2.5 without manually having to specify a module path
2018-04-01 06:38:13 -07:00
if(NOT SFML_DIR AND NOT CMAKE_MODULE_PATH)
set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules")
endif()
2015-08-27 17:22:58 -07:00
2018-04-01 06:38:13 -07:00
# Project name and version
2019-04-06 02:53:09 -07:00
project(TGUI VERSION 0.8.5)
2013-09-12 14:44:36 -07:00
2015-01-30 07:39:05 -08:00
# Include the configuration file
include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/Config.cmake)
2015-01-30 07:39:05 -08:00
# Add an option for choosing the build type (shared or static)
2018-04-01 06:38:13 -07:00
if(NOT TGUI_OS_IOS AND NOT TGUI_OS_ANDROID)
2015-01-30 07:39:05 -08:00
tgui_set_option(TGUI_SHARED_LIBS TRUE BOOL "TRUE to build TGUI as a shared library, FALSE to build it as a static library")
else()
2018-04-01 06:38:13 -07:00
if(TGUI_OS_IOS)
2015-01-30 07:39:05 -08:00
set(TGUI_SHARED_LIBS FALSE)
2018-04-01 06:38:13 -07:00
elseif(TGUI_OS_ANDROID)
2015-01-30 07:39:05 -08:00
set(TGUI_SHARED_LIBS TRUE)
endif()
endif()
# Add option to build the examples
2018-04-08 11:00:13 -07:00
if(NOT TGUI_OS_ANDROID)
tgui_set_option(TGUI_BUILD_EXAMPLES FALSE BOOL "TRUE to build the TGUI examples, FALSE to ignore them")
2018-04-01 06:38:13 -07:00
else()
set(TGUI_BUILD_EXAMPLES FALSE)
endif()
2015-01-30 07:39:05 -08:00
2017-08-26 08:27:28 -07:00
tgui_set_option(TGUI_BUILD_TESTS FALSE BOOL "TRUE to build the TGUI tests")
2019-02-04 09:59:37 -08:00
tgui_set_option(TGUI_BUILD_GUI_BUILDER TRUE BOOL "TRUE to compile the GUI Builder")
2017-08-26 08:27:28 -07:00
tgui_set_option(TGUI_BUILD_DOC FALSE BOOL "TRUE to generate the API documentation, FALSE to ignore it")
2015-01-30 07:39:05 -08:00
2018-04-01 06:38:13 -07:00
# Define the install directory for miscellaneous files
if(TGUI_OS_WINDOWS OR TGUI_OS_IOS)
set(DEFAULT_INSTALL_MISC_DIR .)
elseif(TGUI_OS_ANDROID)
set(DEFAULT_INSTALL_MISC_DIR ${CMAKE_ANDROID_NDK}/sources/third_party/tgui)
else()
set(DEFAULT_INSTALL_MISC_DIR share/tgui-${TGUI_VERSION_MAJOR}.${TGUI_VERSION_MINOR})
2018-04-01 06:38:13 -07:00
endif()
tgui_set_option(TGUI_MISC_INSTALL_PREFIX "${DEFAULT_INSTALL_MISC_DIR}" PATH "Prefix installation path for miscellaneous files")
mark_as_advanced(TGUI_MISC_INSTALL_PREFIX)
2018-08-11 04:10:43 -07:00
# Install pkg-config files by default on Linux and BSD
if (TGUI_OS_LINUX OR TGUI_OS_BSD)
set(TGUI_INSTALL_PKGCONFIG_DEFAULT TRUE)
else()
set(TGUI_INSTALL_PKGCONFIG_DEFAULT FALSE)
endif()
tgui_set_option(TGUI_INSTALL_PKGCONFIG_FILES ${TGUI_INSTALL_PKGCONFIG_DEFAULT} BOOL "TRUE to automatically install pkg-config files so other projects can find TGUI")
if (TGUI_INSTALL_PKGCONFIG_FILES)
tgui_set_option(TGUI_PKGCONFIG_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}/${TGUI_PKGCONFIG_DIR}" PATH "Install directory for TGUI's pkg-config .pc files")
configure_file("pkgconfig/tgui.pc.in" "pkgconfig/tgui.pc" @ONLY)
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/pkgconfig/tgui.pc" DESTINATION "${TGUI_PKGCONFIG_INSTALL_PREFIX}")
endif()
2018-04-01 06:38:13 -07:00
if(TGUI_USE_CPP17)
message(WARNING "The library is being build with c++17 features. Keep in mind that you MUST define TGUI_USE_CPP17 in the project using the library as well.")
2013-09-12 14:44:36 -07:00
endif()
2018-04-15 06:45:52 -07:00
# Define an option for choosing between static and dynamic C runtime
2018-04-01 06:38:13 -07:00
if(TGUI_OS_WINDOWS)
2013-09-12 14:44:36 -07:00
tgui_set_option(TGUI_USE_STATIC_STD_LIBS FALSE BOOL "TRUE to statically link to the standard libraries, FALSE to use them as DLLs. This option has to match with the one from sfml.")
# The following combination of flags is not valid
2018-04-01 06:38:13 -07:00
if(TGUI_SHARED_LIBS AND TGUI_USE_STATIC_STD_LIBS)
2013-10-16 07:46:01 -07:00
message(FATAL_ERROR "TGUI_SHARED_LIBS and TGUI_USE_STATIC_STD_LIBS cannot be used together")
endif()
2013-09-12 14:44:36 -07:00
endif()
2015-01-30 07:39:05 -08:00
# Mac OS X specific options
2018-04-01 06:38:13 -07:00
if(TGUI_OS_MACOSX)
2015-01-30 07:39:05 -08:00
# Add an option to build framework instead of dylib (release only)
tgui_set_option(TGUI_BUILD_FRAMEWORK FALSE BOOL "TRUE to build TGUI as a framework library (release only), FALSE to build according to TGUI_SHARED_LIBS")
2015-01-30 07:39:05 -08:00
# Only the default architecture (i.e. 64-bit) is supported
if(CMAKE_OSX_ARCHITECTURES AND NOT "${CMAKE_OSX_ARCHITECTURES}" STREQUAL "x86_64")
message(FATAL_ERROR "Only 64-bit architecture is supported")
return()
endif()
# Enable to use of rpath according to CMake Policy CMP0042
set(CMAKE_MACOSX_RPATH 1)
2018-04-01 06:38:13 -07:00
if(TGUI_BUILD_FRAMEWORK)
# Frameworks are only available for release (because cmake currently doesn't allow specifying a custom framework name so TGUI-d is not possible)
if(NOT CMAKE_BUILD_TYPE STREQUAL "Release")
message(FATAL_ERROR "CMAKE_BUILD_TYPE should be \"Release\" when TGUI_BUILD_FRAMEWORK is TRUE")
return()
endif()
# Frameworks only work with TGUI_SHARED_LIBS enabled
2018-04-01 06:38:13 -07:00
if(NOT TGUI_SHARED_LIBS)
message(FATAL_ERROR "TGUI_SHARED_LIBS should be TRUE when TGUI_BUILD_FRAMEWORK is TRUE")
return()
endif()
endif()
2015-01-30 07:39:05 -08:00
endif()
# Android options
2018-04-01 06:38:13 -07:00
if(TGUI_OS_ANDROID)
2015-01-30 07:39:05 -08:00
# Make sure there's the android library available
2018-04-01 06:38:13 -07:00
if(CMAKE_ANDROID_API LESS 19)
message(FATAL_ERROR "Android API level (${CMAKE_ANDROID_API}) must be equal or greater than 19.")
2015-08-27 17:22:58 -07:00
endif()
2015-01-30 07:39:05 -08:00
2015-08-27 17:22:58 -07:00
# CMake doesn't support defining the STL to be used with Nsight Tegra, so warn the user
if(CMAKE_VS_PLATFORM_NAME STREQUAL "Tegra-Android")
message(WARNING "CMake might not properly support setting the STL. Make sure to adjust all generated library projects!")
2013-10-12 02:48:37 -07:00
endif()
2015-01-30 07:39:05 -08:00
# Install everything in $NDK/sources/third_party by default
if (CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
set(CMAKE_INSTALL_PREFIX ${CMAKE_ANDROID_NDK}/sources/third_party/tgui CACHE PATH "Installation path (should be inside your NDK's 'sources' directory)" FORCE)
endif()
2015-01-30 07:39:05 -08:00
# We install libs in a subdirectory named after the ABI (e.g. lib/armeabi/libtgui.so)
set(LIB_SUFFIX "/${CMAKE_ANDROID_ARCH_ABI}")
2013-10-12 02:48:37 -07:00
endif()
# Link SFML in the same way as TGUI, unless SFML_STATIC_LIBRARIES is manually specified
2018-04-01 06:38:13 -07:00
if(NOT DEFINED SFML_STATIC_LIBRARIES)
if(TGUI_SHARED_LIBS)
set(SFML_STATIC_LIBRARIES FALSE)
else()
2013-09-12 14:44:36 -07:00
set(SFML_STATIC_LIBRARIES TRUE)
endif()
endif()
# Attempt to find the SFML dependencies when linking statically
if(NOT TGUI_SHARED_LIBS)
2018-04-01 06:38:13 -07:00
if(SFML_ROOT)
if(TGUI_OS_WINDOWS)
set(CMAKE_INCLUDE_PATH ${CMAKE_INCLUDE_PATH} "${SFML_ROOT}/extlibs/headers")
if(ARCH_32BITS)
2018-04-01 06:38:13 -07:00
if(TGUI_COMPILER_MSVC AND MSVC_VERSION LESS 1900) # older than VC++14
set(CMAKE_LIBRARY_PATH ${CMAKE_LIBRARY_PATH} "${SFML_ROOT}/extlibs/libs-msvc/x86")
2018-04-01 06:38:13 -07:00
elseif(TGUI_COMPILER_MSVC) # VC++14 or newer
set(CMAKE_LIBRARY_PATH ${CMAKE_LIBRARY_PATH} "${SFML_ROOT}/extlibs/libs-msvc-universal/x86")
else() # gcc
set(CMAKE_LIBRARY_PATH ${CMAKE_LIBRARY_PATH} "${SFML_ROOT}/extlibs/libs-mingw/x86")
endif()
elseif(ARCH_64BITS)
2018-04-01 06:38:13 -07:00
if(TGUI_COMPILER_MSVC AND MSVC_VERSION LESS 1900) # older than VC++14
set(CMAKE_LIBRARY_PATH ${CMAKE_LIBRARY_PATH} "${SFML_ROOT}/extlibs/libs-msvc/x64")
2018-04-01 06:38:13 -07:00
elseif(TGUI_COMPILER_MSVC) # VC++14 or newer
set(CMAKE_LIBRARY_PATH ${CMAKE_LIBRARY_PATH} "${SFML_ROOT}/extlibs/libs-msvc-universal/x64")
else() # gcc
set(CMAKE_LIBRARY_PATH ${CMAKE_LIBRARY_PATH} "${SFML_ROOT}/extlibs/libs-mingw/x64")
endif()
endif()
2018-04-01 06:38:13 -07:00
elseif(TGUI_OS_MACOSX)
set(CMAKE_INCLUDE_PATH ${CMAKE_INCLUDE_PATH} "${SFML_ROOT}/extlibs/headers")
set(CMAKE_LIBRARY_PATH ${CMAKE_LIBRARY_PATH} "${SFML_ROOT}/extlibs/libs-osx/lib/")
2018-04-01 06:38:13 -07:00
elseif(TGUI_OS_ANDROID)
set(CMAKE_LIBRARY_PATH ${CMAKE_LIBRARY_PATH} "${CMAKE_ANDROID_NDK}/sources/third_party/sfml/extlibs/lib/${CMAKE_ANDROID_ARCH_ABI}/")
2018-04-01 06:38:13 -07:00
elseif(TGUI_OS_IOS)
2015-02-07 16:42:56 -08:00
set(CMAKE_LIBRARY_PATH ${CMAKE_LIBRARY_PATH} "${SFML_ROOT}/extlibs/libs-ios/")
endif()
endif()
2013-09-12 14:44:36 -07:00
endif()
# Find sfml
2018-04-01 06:38:13 -07:00
if(TGUI_OS_WINDOWS AND TGUI_COMPILER_MSVC) # Also look for the main component when using Visual Studio
2015-01-30 07:39:05 -08:00
find_package(SFML 2 COMPONENTS main graphics window system)
elseif(TGUI_OS_ANDROID) # Search for SFML in the android NDK (if no other directory is specified)
find_package(SFML 2 COMPONENTS graphics window system PATHS "${CMAKE_ANDROID_NDK}/sources/third_party/sfml/lib/${CMAKE_ANDROID_ARCH_ABI}/cmake/SFML")
2018-04-01 06:38:13 -07:00
elseif(TGUI_OS_IOS) # Use the find_host_package macro from the toolchain on iOS
2018-04-12 13:32:52 -07:00
find_host_package(SFML 2 COMPONENTS main graphics window system)
2013-09-12 14:44:36 -07:00
else()
2015-01-30 07:39:05 -08:00
find_package(SFML 2 COMPONENTS graphics window system)
2013-09-12 14:44:36 -07:00
endif()
2018-04-01 06:38:13 -07:00
# find_package couldn't find SFML
if(NOT SFML_FOUND)
set(SFML_DIR "" CACHE PATH "Path to SFMLConfig.cmake")
set(SFML_ROOT "" CACHE PATH "SFML root directory")
message(FATAL_ERROR "CMake couldn't find SFML.\nEither set SFML_DIR to the directory containing SFMLConfig.cmake or set the SFML_ROOT entry to SFML's root directory (containing \"include\" and \"lib\" directories).")
2013-09-12 14:44:36 -07:00
endif()
# Set the path for the libraries
2018-04-01 06:38:13 -07:00
set(LIBRARY_OUTPUT_PATH "${PROJECT_BINARY_DIR}/lib")
2015-09-06 04:52:24 -07:00
2013-09-12 14:44:36 -07:00
# Jump to the CMakeLists.txt file in the source folder
add_subdirectory(src/TGUI)
# Build the documentation when requested
2018-04-01 06:38:13 -07:00
if(TGUI_BUILD_DOC)
add_subdirectory(doc)
endif()
# Build the examples if requested
2018-04-01 06:38:13 -07:00
if(TGUI_BUILD_EXAMPLES)
add_subdirectory(examples)
endif()
# Build the tests if requested
2018-04-01 06:38:13 -07:00
if(TGUI_BUILD_TESTS)
if(NOT ${CMAKE_BUILD_TYPE} STREQUAL "Debug")
message(FATAL_ERROR "TGUI_BUILD_TESTS should only be enabled when CMAKE_BUILD_TYPE is Debug")
endif()
add_subdirectory(tests)
endif()
2017-08-26 08:27:28 -07:00
# Build the GUI Builder if requested
2018-04-01 06:38:13 -07:00
if(TGUI_BUILD_GUI_BUILDER)
2017-08-26 08:27:28 -07:00
add_subdirectory("${PROJECT_SOURCE_DIR}/gui-builder")
endif()
# Install include files
2018-04-01 06:38:13 -07:00
if(NOT TGUI_BUILD_FRAMEWORK)
install(DIRECTORY include
DESTINATION .
COMPONENT devel
FILES_MATCHING PATTERN "*.hpp" PATTERN "*.inl")
endif()
2013-09-12 14:44:36 -07:00
2018-04-01 06:38:13 -07:00
# Install miscellaneous files
install(FILES license.txt DESTINATION ${TGUI_MISC_INSTALL_PREFIX})
install(FILES README.md DESTINATION ${TGUI_MISC_INSTALL_PREFIX})
install(DIRECTORY themes DESTINATION "${TGUI_MISC_INSTALL_PREFIX}")