-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
37 lines (28 loc) · 1.08 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
cmake_minimum_required(VERSION 3.12)
project(planet-vk)
set(PLANET_VK_VALIDATION NO CACHE BOOL
"Enable VK_LAYER_KHRONOS_validation")
if(CMAKE_SOURCE_DIR STREQUAL PROJECT_SOURCE_DIR)
add_custom_target(felspar-check)
set_property(TARGET felspar-check PROPERTY EXCLUDE_FROM_ALL TRUE)
add_custom_target(felspar-stress)
set_property(TARGET felspar-stress PROPERTY EXCLUDE_FROM_ALL TRUE)
add_custom_target(planet-examples)
set_property(TARGET planet-examples PROPERTY EXCLUDE_FROM_ALL TRUE)
include(requirements.cmake)
add_compile_options(
-Werror
-fdiagnostics-color=always
-fdiagnostics-show-option
-Wall -Wextra -Wpedantic
)
endif()
macro(vk_shader target input)
add_custom_command(OUTPUT ${input}.spirv
COMMAND glslc ${CMAKE_CURRENT_SOURCE_DIR}/${input} -o ${input}.spirv
MAIN_DEPENDENCY ${input})
add_custom_target(${target}-${input}.spirv DEPENDS ${input}.spirv)
add_dependencies(${target} ${target}-${input}.spirv)
endmacro()
add_subdirectory(examples)
add_subdirectory(src)