forked from LunarG/gfxreconstruct
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
305 lines (251 loc) · 10.6 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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
###############################################################################
# Copyright (c) 2018-2023 LunarG, Inc.
# Copyright (c) 2019-2020 Advanced Micro Devices, Inc.
# All rights reserved
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
#
# Author: LunarG Team
# Author: AMD Developer Tools Team
# Description: CMake script for framework util target
###############################################################################
cmake_minimum_required(VERSION 3.16.3)
project(GFXReconstruct LANGUAGES CXX)
set_property(GLOBAL PROPERTY TEST_SCRIPT ${CMAKE_ROOT})
include(GNUInstallDirs)
set(CMAKE_CXX_STANDARD 17)
set(CXX_STANDARD_REQUIRED ON)
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake" "${CMAKE_SOURCE_DIR}/external/cmake-modules")
# Version info
set(GFXRECONSTRUCT_PROJECT_VERSION_MAJOR 0)
set(GFXRECONSTRUCT_PROJECT_VERSION_MINOR 9)
set(GFXRECONSTRUCT_PROJECT_VERSION_PATCH 20)
set(GFXRECON_PROJECT_VERSION_SHA1 "unknown-build-source")
option(BUILD_STATIC "Build static binaries for HPC clusters (will not build the tracer library)" OFF)
if (NOT DEFINED HEADLESS)
set(HEADLESS TRUE)
endif()
include(GetGitRevisionDescription)
get_git_head_revision(GIT_REFSPEC GIT_SHA1)
git_get_exact_tag(GIT_TAG)
set(GIT_BRANCH "")
if (GIT_REFSPEC)
string(REGEX REPLACE ".*/(.+)$" "\\1" GIT_BRANCH ${GIT_REFSPEC})
string(COMPARE EQUAL ${GIT_BRANCH} "master" GIT_IS_MASTER)
string(REGEX MATCH "^sdk-[0-9]+\.[0-9]+\.[0-9]+$" GIT_IS_SDK ${GIT_BRANCH})
if (GIT_IS_MASTER OR GIT_IS_SDK)
if (GIT_TAG)
set(GIT_BRANCH ${GIT_TAG})
else()
set(GIT_BRANCH "")
endif()
if(NOT DEFINED GFXRECON_PROJECT_VERSION_DESIGNATION)
set(GFXRECON_PROJECT_VERSION_DESIGNATION "")
endif()
elseif(NOT DEFINED GFXRECON_PROJECT_VERSION_DESIGNATION)
set(GFXRECON_PROJECT_VERSION_DESIGNATION "-dev")
endif()
elseif(GIT_TAG)
string(REGEX MATCH "^v[0-9]+\.[0-9]+\.[0-9]+$" GIT_IS_VERSION_RELEASE_TAG ${GIT_TAG})
if (GIT_IS_VERSION_RELEASE_TAG)
set(GIT_BRANCH ${GIT_TAG})
set(GFXRECON_PROJECT_VERSION_DESIGNATION "")
endif()
elseif(NOT DEFINED GFXRECON_PROJECT_VERSION_DESIGNATION)
set(GFXRECON_PROJECT_VERSION_DESIGNATION "-unknown")
endif()
if (GIT_SHA1)
string(SUBSTRING ${GIT_SHA1} 0 7 GFXRECON_PROJECT_VERSION_SHA1)
if (GIT_BRANCH)
string(CONCAT GFXRECON_PROJECT_VERSION_SHA1 ${GIT_BRANCH} ":" ${GFXRECON_PROJECT_VERSION_SHA1})
endif()
git_local_changes(GIT_LOCAL_STATE)
string(COMPARE EQUAL ${GIT_LOCAL_STATE} "DIRTY" GIT_DIRTY)
if (GIT_DIRTY)
string(CONCAT GFXRECON_PROJECT_VERSION_SHA1 ${GFXRECON_PROJECT_VERSION_SHA1} "*")
endif()
endif()
configure_file("${CMAKE_SOURCE_DIR}/project_version.h.in" "${CMAKE_BINARY_DIR}/project_version.h")
option(BUILD_WERROR "Build with warnings as errors" ON)
# Code checks
include("CodeStyle")
include("Lint")
include("Test")
include("FindVulkanVersion")
# Apply misc build directives to the given target
macro(common_build_directives TARGET)
target_code_style_build_directives(${TARGET})
target_lint_build_directives(${TARGET})
add_target_to_test_package(${TARGET})
endmacro()
option(GFXRECON_ENABLE_RELEASE_ASSERTS "Enable release builds to output failed conditions caught by GFXRECON_ASSERT macro." OFF)
if(${GFXRECON_ENABLE_RELEASE_ASSERTS})
add_definitions(-DGFXRECON_ENABLE_RELEASE_ASSERTS)
endif()
if(MSVC)
# The host toolchain architecture (i.e. are the compiler and other tools compiled to ARM/Intel 32bit/64bit binaries):
message("CMAKE_VS_PLATFORM_TOOLSET_HOST_ARCHITECTURE: " ${CMAKE_VS_PLATFORM_TOOLSET_HOST_ARCHITECTURE})
# The platform name (architecture), we want to build our project for:
# e.g. passed through the commandline -A option: cmake -G "Visual Studio 17 2022" -A ARM64
message("CMAKE_GENERATOR_PLATFORM: " ${CMAKE_GENERATOR_PLATFORM})
set(GFXR_ARM_WINDOWS_BUILD FALSE)
if(CMAKE_GENERATOR_PLATFORM STREQUAL "ARM64")
set(GFXR_ARM_WINDOWS_BUILD TRUE)
endif()
# Default to using the precompiled LZ4 and ZLIB binaries for VisualStudio builds.
set (PRECOMPILED_ARCH "64")
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
set (PRECOMPILED_ARCH "32")
endif(CMAKE_SIZEOF_VOID_P EQUAL 4)
if(GFXR_ARM_WINDOWS_BUILD)
set (PRECOMPILED_ARCH "64-arm")
endif()
set(CMAKE_PREFIX_PATH
${CMAKE_PREFIX_PATH}
"${CMAKE_SOURCE_DIR}/external/precompiled/win${PRECOMPILED_ARCH}"
"${CMAKE_SOURCE_DIR}/external/precompiled/win${PRECOMPILED_ARCH}")
# Enable LARGEADDRESSAWARE to increase memory address space for 32-bit executables
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /LARGEADDRESSAWARE")
# Add option to enable/disable D3D12 support.
option(D3D12_SUPPORT "Build with Direct3D 12 support enabled" ON)
# Add option to enable/disable launcher and interceptor.
option(BUILD_LAUNCHER_AND_INTERCEPTOR "Build launcher and interceptor" OFF)
# Add option to enable/disable D3D12 gfxrecon-convert support.
option(CONVERT_EXPERIMENTAL_D3D12 "Build with convert DX12 enabled" OFF)
if(${D3D12_SUPPORT})
add_definitions(-DD3D12_SUPPORT)
if(${CONVERT_EXPERIMENTAL_D3D12})
add_definitions(-DCONVERT_EXPERIMENTAL_D3D12)
endif()
else()
set(BUILD_LAUNCHER_AND_INTERCEPTOR OFF)
endif()
if(${BUILD_LAUNCHER_AND_INTERCEPTOR})
add_definitions(-DBUILD_LAUNCHER_AND_INTERCEPTOR)
endif()
# Add option to enable/disable AGS support.
option(GFXRECON_AGS_SUPPORT "Build with AGS support enabled" ON)
else(MSVC)
# Turn off D3D12 support for non MSVC builds.
set(D3D12_SUPPORT OFF)
set(BUILD_LAUNCHER_AND_INTERCEPTOR OFF)
if(CMAKE_SYSTEM_PROCESSOR STREQUAL "aarch64")
set(CMAKE_PREFIX_PATH
${CMAKE_PREFIX_PATH}
"${CMAKE_SOURCE_DIR}/external/precompiled/linux/lib/arm64-v8a")
elseif(CMAKE_SYSTEM_PROCESSOR STREQUAL "arm")
set(CMAKE_PREFIX_PATH
${CMAKE_PREFIX_PATH}
"${CMAKE_SOURCE_DIR}/external/precompiled/linux/lib/arm")
endif()
endif(MSVC)
# GFXReconstruct provided find modules
if(${D3D12_SUPPORT})
if (${GFXRECON_AGS_SUPPORT})
find_package(AGS)
endif() # GFXRECON_AGS_SUPPORT
endif() # D3D12_SUPPORT
if(WIN32)
find_package(Detours)
endif() # WIN32
find_package(LZ4)
find_package(ZSTD)
if(CMAKE_SIZEOF_VOID_P EQUAL 8)
if (TARGET AGS::AGS)
add_definitions(-DGFXRECON_AGS_SUPPORT)
endif()
endif()
if(UNIX)
option(BUILD_WSI_XCB_SUPPORT "Build XCB WSI support" ON)
option(BUILD_WSI_WAYLAND_SUPPORT "Build Wayland WSI support" ON)
option(BUILD_WSI_DISPLAY_SUPPORT "Build direct-to-display swapchain support" ON)
if(BUILD_WSI_XCB_SUPPORT)
find_package(XCB)
endif()
if(BUILD_WSI_WAYLAND_SUPPORT)
find_package(WAYLAND)
endif()
endif(UNIX)
# CMake provided find modules
if(BUILD_STATIC)
find_library(ZLIB NAMES libz.a REQUIRED PATH_SUFFIXES lib lib/x86_64-linux-gnu lib64)
else()
find_package(ZLIB)
endif()
if(UNIX)
option(BUILD_WSI_XLIB_SUPPORT "Build Xlib WSI support" ON)
if(BUILD_WSI_XLIB_SUPPORT)
find_package(X11)
endif()
endif(UNIX)
add_library(windows_specific INTERFACE)
target_compile_definitions(windows_specific INTERFACE
WIN32_LEAN_AND_MEAN
NOMINMAX
VK_USE_PLATFORM_WIN32_KHR
$<$<BOOL:${HEADLESS}>:VK_USE_PLATFORM_HEADLESS>
$<$<BOOL:${BUILD_LAUNCHER_AND_INTERCEPTOR}>:"GFXR_INTERCEPTOR_PATH=\"$<TARGET_FILE:gfxrecon_interceptor>\"">
$<$<BOOL:${D3D12_SUPPORT}>:"GFXR_D3D12_CAPTURE_PATH=\"$<TARGET_FILE:d3d12_capture>\"">
$<$<BOOL:${D3D12_SUPPORT}>:"GFXR_D3D12_PATH=\"$<TARGET_FILE:d3d12>\"">
$<$<BOOL:${D3D12_SUPPORT}>:"GFXR_DXGI_PATH=\"$<TARGET_FILE:dxgi>\"">)
add_library(linux_specific INTERFACE)
target_compile_definitions(linux_specific INTERFACE _FILE_OFFSET_BITS=64 PAGE_GUARD_ENABLE_UCONTEXT_WRITE_DETECTION
$<$<BOOL:${X11_FOUND}>:VK_USE_PLATFORM_XLIB_KHR>
$<$<BOOL:${X11_Xrandr_FOUND}>:VK_USE_PLATFORM_XLIB_XRANDR_EXT>
$<$<BOOL:${XCB_FOUND}>:VK_USE_PLATFORM_XCB_KHR>
$<$<BOOL:${WAYLAND_FOUND}>:VK_USE_PLATFORM_WAYLAND_KHR>
$<$<BOOL:${BUILD_WSI_DISPLAY_SUPPORT}>:VK_USE_PLATFORM_DISPLAY_KHR>
$<$<BOOL:${HEADLESS}>:VK_USE_PLATFORM_HEADLESS>)
add_library(platform_specific INTERFACE)
target_link_libraries(platform_specific INTERFACE
$<$<BOOL:${WIN32}>:windows_specific>
$<$<NOT:$<BOOL:${WIN32}>>:linux_specific>)
if(BUILD_WERROR)
if(MSVC)
target_compile_options(platform_specific INTERFACE /WX)
else()
target_compile_options(platform_specific INTERFACE -Werror)
endif()
endif()
add_library(vulkan_registry INTERFACE)
target_include_directories(vulkan_registry INTERFACE ${CMAKE_SOURCE_DIR}/external/Vulkan-Headers/include)
target_compile_definitions(vulkan_registry INTERFACE VK_NO_PROTOTYPES VK_ENABLE_BETA_EXTENSIONS)
add_library(vulkan_memory_allocator INTERFACE)
target_compile_options(vulkan_memory_allocator INTERFACE
$<$<OR:$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:AppleClang>>:
-Wno-nullability-completeness>
)
target_include_directories(vulkan_memory_allocator INTERFACE ${CMAKE_SOURCE_DIR}/external/VulkanMemoryAllocator/include)
if (${RUN_TESTS})
add_library(catch2 INTERFACE)
target_include_directories(catch2 INTERFACE external)
endif()
add_subdirectory(external/nlohmann)
add_subdirectory(framework)
if(NOT BUILD_STATIC)
add_subdirectory(layer)
endif()
add_subdirectory(tools)
if (${RUN_TESTS})
add_test_package_file(${CMAKE_CURRENT_LIST_DIR}/scripts/build.py)
add_test_package_file(${CMAKE_CURRENT_LIST_DIR}/scripts/test.py)
generate_test_package(gfx_reconstruct_test)
endif()
add_subdirectory(scripts)