forked from LunarG/VulkanTools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
96 lines (69 loc) · 2.46 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
cmake_minimum_required(VERSION 3.17.2)
project(VULKAN_TOOLS LANGUAGES CXX)
add_subdirectory(scripts)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
set(CMAKE_CXX_VISIBILITY_PRESET "hidden")
set(CMAKE_VISIBILITY_INLINES_HIDDEN "YES")
include(GNUInstallDirs)
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
option(BUILD_WERROR "Treat compiler warnings as errors")
if (BUILD_WERROR)
add_compile_options("$<IF:$<CXX_COMPILER_ID:MSVC>,/WX,-Werror>")
endif()
find_package(VulkanHeaders REQUIRED CONFIG)
find_package(VulkanLoader CONFIG)
find_package(VulkanUtilityLibraries REQUIRED CONFIG)
find_package(valijson REQUIRED CONFIG)
if (MSVC)
add_compile_options("$<$<CONFIG:Release>:/Zi>")
add_link_options("$<$<CONFIG:Release>:/DEBUG:FULL>")
endif()
if (CMAKE_SYSTEM_NAME MATCHES "Windows|Linux|BSD")
option(BUILD_APIDUMP "Build api_dump layer" ON)
option(BUILD_MONITOR "Build monitor layer" ON)
option(BUILD_SCREENSHOT "Build screenshot layer" ON)
option(BUILD_VIA "Build via" ON)
option(BUILD_LAYERMGR "Build Vulkan Configurator" ON)
elseif(ANDROID)
# https://gitlab.kitware.com/cmake/cmake/issues/18787
# https://github.com/android-ndk/ndk/issues/463
if (CMAKE_VERSION VERSION_LESS "3.21")
message(FATAL_ERROR "Android build requires at least CMake 3.21!")
endif()
# Currently the Android build only build the API dump and screen shot layer.
# - libVkLayer_api_dump.so
# - libVkLayer_screenshot.so
option(BUILD_APIDUMP "Build api_dump layer" ON)
option(BUILD_SCREENSHOT "Build screenshot layer" ON)
set(BUILD_MONITOR OFF)
set(BUILD_VIA OFF)
set(BUILD_LAYERMGR OFF)
elseif (APPLE)
option(BUILD_APIDUMP "Build api_dump layer" ON)
option(BUILD_SCREENSHOT "Build screenshot layer" ON)
set(BUILD_MONITOR OFF)
if (CMAKE_SYSTEM_NAME STREQUAL "Darwin")
option(BUILD_VIA "Build via" ON)
option(BUILD_LAYERMGR "Build Vulkan Configurator" ON)
endif()
endif()
option(BUILD_TESTS "Build tests")
option(BUILD_TESTS_DEBUG "Build tests for debugging layers")
if(BUILD_TESTS)
enable_testing()
add_subdirectory(tests)
find_package(GTest REQUIRED CONFIG)
endif()
if(BUILD_VIA)
add_subdirectory(via)
endif()
if(BUILD_APIDUMP OR BUILD_MONITOR OR BUILD_SCREENSHOT)
add_subdirectory(layersvt)
endif()
if(BUILD_LAYERMGR)
add_subdirectory(vkconfig_core)
add_subdirectory(vkconfig)
endif()