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(Events)
set(HEADERS
)
set(SOURCES
Events.cpp
)
source_group(headers FILES ${HEADERS})
source_group(sources FILES ${SOURCES})
add_executable(Events
${HEADERS}
${SOURCES}
)
set_target_properties(Events PROPERTIES FOLDER "Samples")
target_link_libraries(Events PRIVATE utils)
vulkan_hpp__setup_sample_dynamic( NAME Events )

View File

@@ -16,7 +16,6 @@
// Use basic events
#include "../utils/utils.hpp"
#include "vulkan/vulkan.hpp"
#include <iostream>