mirror of
https://github.com/redstrate/dxbc.git
synced 2025-04-24 13:17:46 +00:00
17 lines
No EOL
362 B
CMake
17 lines
No EOL
362 B
CMake
cmake_minimum_required(VERSION 3.20)
|
|
|
|
project(dxbc LANGUAGES CXX)
|
|
|
|
option(BUILD_EXAMPLE "Build example application" ON)
|
|
|
|
find_package(Vulkan REQUIRED)
|
|
find_package(SPIRV-Headers REQUIRED)
|
|
|
|
add_subdirectory(include/windows)
|
|
add_subdirectory(src/util)
|
|
add_subdirectory(src/spirv)
|
|
add_subdirectory(src/dxbc)
|
|
|
|
if (BUILD_EXAMPLE)
|
|
add_subdirectory(example)
|
|
endif() |