Refactor the CMakeLists for all the samples; use vulkan.hpp/vulkan_raii.hpp as precompiled header.

This commit is contained in:
asuessenbach
2022-08-10 11:19:06 +02:00
parent 1a64b5fcc0
commit 5480d192f5
200 changed files with 299 additions and 2068 deletions

View File

@@ -14,22 +14,4 @@
cmake_minimum_required(VERSION 3.2)
project(PipelineCache)
set(HEADERS
)
set(SOURCES
PipelineCache.cpp
)
source_group(headers FILES ${HEADERS})
source_group(sources FILES ${SOURCES})
add_executable(PipelineCache
${HEADERS}
${SOURCES}
)
set_target_properties(PipelineCache PROPERTIES FOLDER "Samples")
target_link_libraries(PipelineCache PRIVATE utils)
vulkan_hpp__setup_sample_dynamic( NAME PipelineCache )

View File

@@ -23,12 +23,12 @@
#else
// unknow compiler... just ignore the warnings for yourselves ;)
#endif
#include "../utils/geometries.hpp"
#include "../utils/math.hpp"
#include "../utils/shaders.hpp"
#include "../utils/utils.hpp"
#include "SPIRV/GlslangToSpv.h"
#include "vulkan/vulkan.hpp"
#include <fstream>
#include <iomanip>