mirror of
https://github.com/redstrate/dxbc.git
synced 2025-04-25 21:47:45 +00:00
16 lines
No EOL
325 B
CMake
16 lines
No EOL
325 B
CMake
cmake_minimum_required(VERSION 3.20)
|
|
|
|
project(dxbc LANGUAGES CXX)
|
|
|
|
option(BUILD_EXAMPLE "Build example application" ON)
|
|
|
|
find_package(Vulkan REQUIRED)
|
|
|
|
add_subdirectory(include/windows)
|
|
add_subdirectory(src/util)
|
|
add_subdirectory(src/spirv)
|
|
add_subdirectory(src/dxbc)
|
|
|
|
if (BUILD_EXAMPLE)
|
|
add_subdirectory(example)
|
|
endif() |