-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
141 lines (115 loc) · 5.23 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
################################################################################
# #
# CMake configuration #
# #
################################################################################
cmake_minimum_required( VERSION 3.24 )
################################################################################
# #
# Toggles #
# #
################################################################################
option( RENDERBOI_SKIP_TESTS "Whether or not to skip tests" OFF )
option( RENDERBOI_BUILD_EXAMPLES "Whether or not to build examples" ON )
if( WIN32 AND BUILD_SHARED_LIBS )
set( CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON )
endif( )
set( CMAKE_EXPORT_COMPILE_COMMANDS ON )
################################################################################
# #
# Project definition #
# #
################################################################################
# Project general info
set(PROJECT_VERSION "1.0")
set(PROJECT_NAME "RenderBoi")
project(
${PROJECT_NAME}
VERSION ${PROJECT_VERSION}
DESCRIPTION "A rendering engine with a modest feature set"
LANGUAGES CXX
)
set( CMAKE_CXX_STANDARD 23 )
################################################################################
# #
# Project-wide toggles #
# #
################################################################################
option(WINDOW_BACKEND_GLFW3 "Use GLFW3 as the window backend" ON)
option(
GLFW3_BORDERLESS_POLICY_NATIVE
"Have GLFW3 detect borderless fullscreen parameters upon starting up
(default, overrides GLFW3_BORDERLESS_POLICY_MAX_MODE)"
ON
)
option(
GLFW3_BORDERLESS_POLICY_MAX_MODE
"Have GLFW3 use the largest available video mode for borderless fullscreen"
OFF
)
################################################################################
# #
# Dependencies #
# #
################################################################################
include( FetchContent )
include( ExternalProject )
# cpptools
FetchContent_Declare(
cpptools
DOWNLOAD_EXTRACT_TIMESTAMP ON
URL https://github.com/deqyra/CppTools/archive/refs/tags/v1.1.zip
FIND_PACKAGE_ARGS 1.1
)
set( CPPTOOLS_SKIP_TESTS ON )
FetchContent_MakeAvailable( cpptools )
# stb
set( STB_SOURCE_DIR ${CMAKE_CURRENT_BINARY_DIR}/stb )
ExternalProject_Add(
stb
DOWNLOAD_EXTRACT_TIMESTAMP ON
SOURCE_DIR ${STB_SOURCE_DIR}/stb # putting it one dir further in order not to pollute include paths
CONFIGURE_COMMAND ""
BUILD_COMMAND ""
INSTALL_COMMAND ""
GIT_REPOSITORY https://github.com/nothings/stb.git
GIT_TAG ae721c50eaf761660b4f90cc590453cdb0c2acd0
)
# stb_image
add_subdirectory( external/stb_image ${CMAKE_CURRENT_BINARY_DIR}/stb_image )
# glm
FetchContent_Declare(
glm
DOWNLOAD_EXTRACT_TIMESTAMP ON
URL https://github.com/g-truc/glm/archive/refs/tags/1.0.1.zip
FIND_PACKAGE_ARGS 1.0.1
)
enable_language( C )
set( GLM_ENABLE_CXX_20 ON )
FetchContent_MakeAvailable( glm )
target_compile_definitions( glm INTERFACE GLM_ENABLE_EXPERIMENTAL )
# glad
add_subdirectory( external/glad ${CMAKE_CURRENT_BINARY_DIR}/glad )
# entt
FetchContent_Declare(
entt
DOWNLOAD_EXTRACT_TIMESTAMP ON
URL https://github.com/skypjack/entt/archive/refs/tags/v3.13.2.zip
FIND_PACKAGE_ARGS 3.13
)
FetchContent_MakeAvailable( entt )
################################################################################
# #
# Build RenderBoi binaries #
# #
################################################################################
add_subdirectory( renderboi ${CMAKE_CURRENT_BINARY_DIR}/renderboi )
################################################################################
# #
# Unit tests #
# #
################################################################################
# Build and run tests
if( NOT RENDERBOI_SKIP_TESTS )
add_subdirectory( tests )
endif( )