2021-09-03 16:56:57 +00:00
|
|
|
################################################################################
|
2022-03-06 16:54:05 +00:00
|
|
|
## Project for working with OpenGL and Qt6 widgets ##
|
2023-01-02 03:26:58 +00:00
|
|
|
## ##
|
|
|
|
## Author: Shaun Reed | Contact: shaunrd0@gmail.com | URL: www.shaunreed.com ##
|
|
|
|
## All Content (c) 2023 Shaun Reed, all rights reserved ##
|
2021-09-03 16:56:57 +00:00
|
|
|
################################################################################
|
2022-12-18 14:19:04 +00:00
|
|
|
cmake_minimum_required(VERSION 3.23)
|
2021-09-03 16:56:57 +00:00
|
|
|
|
2022-12-18 14:19:04 +00:00
|
|
|
################################################################################
|
|
|
|
# Includes
|
|
|
|
################################################################################
|
|
|
|
include("${CMAKE_SOURCE_DIR}/cmake/include/git_submodule.cmake")
|
2023-01-03 03:18:53 +00:00
|
|
|
include(CMakePackageConfigHelpers)
|
2021-09-03 16:56:57 +00:00
|
|
|
|
2022-12-18 14:19:04 +00:00
|
|
|
################################################################################
|
|
|
|
# Constants
|
|
|
|
################################################################################
|
2021-09-03 16:56:57 +00:00
|
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|
|
|
set(CMAKE_AUTOUIC ON)
|
|
|
|
set(CMAKE_AUTOMOC ON)
|
|
|
|
set(CMAKE_AUTORCC ON)
|
2022-08-07 17:12:12 +00:00
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
2021-09-03 16:56:57 +00:00
|
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
2022-11-24 22:26:53 +00:00
|
|
|
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
2023-01-21 13:01:13 +00:00
|
|
|
set(CMAKE_MACOSX_BUNDLE ON)
|
2023-01-14 21:33:06 +00:00
|
|
|
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
|
2021-09-03 16:56:57 +00:00
|
|
|
|
2023-01-21 13:01:13 +00:00
|
|
|
if(WIN32)
|
2023-01-15 22:50:50 +00:00
|
|
|
set(CMAKE_COMPILE_WARNING_AS_ERROR OFF)
|
|
|
|
add_compile_options(/wd4131 /wd4127)
|
2022-08-14 22:17:05 +00:00
|
|
|
endif()
|
|
|
|
|
2022-12-18 14:19:04 +00:00
|
|
|
################################################################################
|
|
|
|
# Project
|
|
|
|
################################################################################
|
|
|
|
project(
|
|
|
|
#[[NAME]] Qtk
|
2023-01-14 21:33:06 +00:00
|
|
|
VERSION 0.2
|
|
|
|
DESCRIPTION "Qt OpenGL library and desktop application."
|
2022-12-18 14:19:04 +00:00
|
|
|
LANGUAGES CXX C
|
2022-08-21 19:37:42 +00:00
|
|
|
)
|
2022-08-14 22:08:06 +00:00
|
|
|
|
2022-12-18 14:19:04 +00:00
|
|
|
################################################################################
|
|
|
|
# Options
|
|
|
|
################################################################################
|
|
|
|
option(QTK_DEBUG "Enable debugger" ON)
|
|
|
|
option(QTK_BUILD_GUI "Build the Qtk desktop application" ON)
|
2023-01-17 00:34:50 +00:00
|
|
|
option(QTK_BUILD_EXAMPLE "Build the Qtk example desktop application" ON)
|
2023-01-14 21:33:06 +00:00
|
|
|
option(QTK_UPDATE_SUBMODULES "Update external project (assimp) submodule" OFF)
|
|
|
|
# Install Qtk for use within Qt Creator projects only, instead of system-wide.
|
|
|
|
option(QTK_PREFIX_QTCREATOR "Install Qtk to Qt Creator." OFF)
|
|
|
|
# Option for bringing your own assimp installation; Otherwise not needed
|
2022-08-21 19:37:42 +00:00
|
|
|
# + If assimp is available system-wide we can just set QTK_UPDATE_SUBMODULES OFF
|
2023-01-14 21:33:06 +00:00
|
|
|
option(
|
|
|
|
QTK_ASSIMP_NEW_INTERFACE
|
|
|
|
"Use the assimp::assimp interface (WIN / OSX)"
|
|
|
|
OFF
|
|
|
|
)
|
2022-08-07 17:12:12 +00:00
|
|
|
|
2023-01-21 13:01:13 +00:00
|
|
|
if(NOT QTK_DEBUG)
|
|
|
|
set(CMAKE_BUILD_TYPE Release)
|
|
|
|
else()
|
|
|
|
set(CMAKE_BUILD_TYPE Debug)
|
|
|
|
endif()
|
|
|
|
|
2023-01-15 00:01:34 +00:00
|
|
|
set(QT_DIR "$ENV{HOME}/Qt/" CACHE PATH "Path to Qt6")
|
2023-01-14 21:33:06 +00:00
|
|
|
|
2022-12-18 14:19:04 +00:00
|
|
|
# Qt Designer will look in different locations if WIN / Unix.
|
|
|
|
# These paths are for using Qt Designer integrated within Qt Creator.
|
|
|
|
# Standalone Qt Designer may use different paths.
|
|
|
|
if (WIN32)
|
2023-01-03 03:18:53 +00:00
|
|
|
# These paths may be different on windows. I have not tested this.
|
|
|
|
set(QT_PLUGIN_INSTALL_DIR "${QT_DIR}/Tools/QtCreator/bin/plugins/designer")
|
|
|
|
set(QT_PLUGIN_LIBRARY_DIR "${QT_DIR}/Tools/QtCreator/lib/Qt/lib")
|
2022-12-18 14:19:04 +00:00
|
|
|
else()
|
2023-01-03 03:18:53 +00:00
|
|
|
set(QT_PLUGIN_INSTALL_DIR "${QT_DIR}/Tools/QtCreator/lib/Qt/plugins/designer")
|
|
|
|
set(QT_PLUGIN_LIBRARY_DIR "${QT_DIR}/Tools/QtCreator/lib/Qt/lib")
|
2022-12-18 14:19:04 +00:00
|
|
|
endif()
|
2022-08-07 17:12:12 +00:00
|
|
|
|
2022-12-18 14:19:04 +00:00
|
|
|
# This should be set to your Qt6 installation directory.
|
2023-01-15 00:01:34 +00:00
|
|
|
set(QT_INSTALL_DIR "${QT_DIR}/6.5.0/gcc_64" CACHE PATH "Path to Qt6 install")
|
2023-01-14 21:33:06 +00:00
|
|
|
# Point CMAKE_PREFIX_PATH to Qt6 install directory
|
|
|
|
# If Qtk is built within Qt Creator this is not required.
|
2022-12-18 14:19:04 +00:00
|
|
|
list(APPEND CMAKE_PREFIX_PATH "${QT_INSTALL_DIR}")
|
2022-08-07 17:12:12 +00:00
|
|
|
|
2022-12-18 14:19:04 +00:00
|
|
|
set(QTK_PLUGIN_LIBRARY_DIR "${QT_PLUGIN_LIBRARY_DIR}")
|
|
|
|
set(QTK_PLUGIN_INSTALL_DIR "${QT_PLUGIN_INSTALL_DIR}")
|
2023-01-14 21:33:06 +00:00
|
|
|
set(CMAKE_INSTALL_PREFIX "${CMAKE_SOURCE_DIR}/install")
|
|
|
|
if (QTK_PREFIX_QTCREATOR)
|
|
|
|
# TODO: This might be a bit strange and needs more testing.
|
|
|
|
set(CMAKE_INSTALL_PREFIX "${QT_INSTALL_DIR}")
|
|
|
|
endif()
|
2023-01-03 03:18:53 +00:00
|
|
|
message(STATUS "[Qtk] CMAKE_INSTALL_PREFIX=${CMAKE_INSTALL_PREFIX}")
|
2022-12-18 14:19:04 +00:00
|
|
|
set(QTK_RESOURCES "${CMAKE_SOURCE_DIR}/resources")
|
2023-01-15 22:50:50 +00:00
|
|
|
set(QTK_OSX_ICONS ${CMAKE_SOURCE_DIR}/resources/icons/osx/kilroy.icns)
|
2022-12-18 14:19:04 +00:00
|
|
|
|
|
|
|
# Print all QTK options and their values.
|
|
|
|
get_cmake_property(VAR_NAMES VARIABLES)
|
|
|
|
list(FILTER VAR_NAMES INCLUDE REGEX "^QTK_.*$")
|
|
|
|
list(SORT VAR_NAMES)
|
|
|
|
foreach(VAR_NAME ${VAR_NAMES})
|
|
|
|
message(STATUS "[Qtk] ${VAR_NAME}=${${VAR_NAME}}")
|
|
|
|
endforeach()
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# External Dependencies
|
|
|
|
################################################################################
|
2022-08-07 17:12:12 +00:00
|
|
|
# Find Qt
|
2022-12-18 14:19:04 +00:00
|
|
|
find_package(Qt6 COMPONENTS Core UiPlugin OpenGLWidgets)
|
2023-01-15 00:01:34 +00:00
|
|
|
qt_standard_project_setup()
|
2022-11-26 18:24:38 +00:00
|
|
|
if(NOT Qt6_FOUND)
|
2023-01-03 03:18:53 +00:00
|
|
|
message(
|
|
|
|
SEND_ERROR "[Qtk] Error: Unable to find Qt6 at CMAKE_PREFIX_PATH: "
|
2022-08-21 19:37:42 +00:00
|
|
|
"${CMAKE_PREFIX_PATH}"
|
|
|
|
)
|
2023-01-03 03:18:53 +00:00
|
|
|
message(
|
|
|
|
FATAL_ERROR "[Qtk] Error: Specify path to Qt6 with `cmake "
|
2022-08-21 19:37:42 +00:00
|
|
|
"-DCMAKE_PREFIX_PATH=/path/to/Qt/6.x.x/gcc_64 -S /path/to/qtk -B "
|
|
|
|
"/path/to/qtk/build && cmake --build /path/to/qtk/build -j $(nprocs)`"
|
|
|
|
)
|
2022-07-31 22:50:02 +00:00
|
|
|
endif()
|
2021-09-03 16:56:57 +00:00
|
|
|
|
2022-12-18 14:19:04 +00:00
|
|
|
# Find Assimp
|
2023-01-21 13:01:13 +00:00
|
|
|
set(ASSIMP_BUILD_TESTS OFF CACHE STRING "Do not build assimp tests." FORCE)
|
|
|
|
set(ASSIMP_INSTALL ON CACHE STRING "Use assimp as a submodule." FORCE)
|
|
|
|
set(ASSIMP_WARNINGS_AS_ERRORS OFF CACHE STRING "No warnings as errors." FORCE)
|
|
|
|
set(ASSIMP_INJECT_DEBUG_POSTFIX OFF CACHE STRING "Do not postfix assimp with -dev" FORCE)
|
|
|
|
set(BUILD_SHARED_LIBS OFF CACHE STRING "Build static assimp libs" FORCE)
|
|
|
|
set(ASSIMP_OPT_BUILD_PACKAGES ON CACHE STRING "Build static assimp libs" FORCE)
|
2022-11-26 18:24:38 +00:00
|
|
|
if(QTK_UPDATE_SUBMODULES)
|
2022-08-21 19:37:42 +00:00
|
|
|
message(STATUS "[Qtk] Updating submodules...")
|
|
|
|
submodule_update("${CMAKE_CURRENT_SOURCE_DIR}/extern/assimp/assimp/")
|
|
|
|
add_subdirectory("${CMAKE_CURRENT_SOURCE_DIR}/extern/assimp/assimp/")
|
|
|
|
else()
|
|
|
|
find_package(assimp REQUIRED)
|
2022-08-14 21:02:50 +00:00
|
|
|
endif()
|
|
|
|
|
2022-08-02 02:33:33 +00:00
|
|
|
if(WIN32)
|
2022-08-07 17:12:12 +00:00
|
|
|
find_package(OpenGL REQUIRED)
|
2022-08-02 02:33:33 +00:00
|
|
|
endif()
|
2021-09-12 16:49:59 +00:00
|
|
|
|
2022-08-07 17:12:12 +00:00
|
|
|
################################################################################
|
2022-12-18 14:19:04 +00:00
|
|
|
# Qtk
|
2022-08-07 17:12:12 +00:00
|
|
|
################################################################################
|
2022-12-18 14:19:04 +00:00
|
|
|
add_subdirectory(src)
|
2023-01-17 00:34:50 +00:00
|
|
|
|
|
|
|
if(QTK_BUILD_EXAMPLE)
|
|
|
|
# Create a namespaced alias for linking with qtk_library in the example.
|
|
|
|
add_library(${PROJECT_NAME}::qtk_library ALIAS qtk_library)
|
|
|
|
add_subdirectory(example-app)
|
|
|
|
endif()
|