mirror of
https://github.com/redstrate/dxbc.git
synced 2025-04-26 05:57:46 +00:00
15 lines
No EOL
324 B
CMake
15 lines
No EOL
324 B
CMake
cmake_minimum_required(VERSION 3.27)
|
|
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() |