1
Fork 0
mirror of https://github.com/redstrate/dxbc.git synced 2025-04-21 12:17:45 +00:00
dxbc/CMakeLists.txt

15 lines
324 B
Text
Raw Normal View History

2023-09-22 15:54:45 -04:00
cmake_minimum_required(VERSION 3.27)
project(dxbc LANGUAGES CXX)
option(BUILD_EXAMPLE "Build example application" ON)
2023-09-22 15:54:45 -04:00
find_package(Vulkan REQUIRED)
add_subdirectory(include/windows)
2023-09-22 15:54:45 -04:00
add_subdirectory(src/util)
add_subdirectory(src/spirv)
add_subdirectory(src/dxbc)
2023-09-22 15:54:45 -04:00
if (BUILD_EXAMPLE)
add_subdirectory(example)
endif()