Replace spirv-helper stuff with a library that combines everything

This commit is contained in:
2026-03-19 15:54:01 +01:00
parent 71563e8979
commit 66602a79e0
19 changed files with 50 additions and 524 deletions

View File

@@ -2,10 +2,14 @@ cmake_minimum_required(VERSION 3.22)
project(ppam LANGUAGES CXX VERSION 1.0.0)
### Requires C++ 20
# ## Requires C++ 20
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED true)
add_executable(ppam
source/main.cpp
)
install(
TARGETS ppam
)