feat: initial commit

This commit is contained in:
2020-05-27 20:23:28 +02:00
commit 5fd5ea8564
13 changed files with 1132 additions and 0 deletions

15
CMakeLists.txt Normal file
View File

@@ -0,0 +1,15 @@
cmake_minimum_required(VERSION 3.16)
project(VulkanTest)
set(CMAKE_CXX_STANDARD 17)
find_package(glfw3 REQUIRED)
find_package(Vulkan REQUIRED)
add_compile_definitions(WITH_VALIDATION_LAYERS)
set(CMAKE_BUILD_TYPE Debug)
FILE(GLOB_RECURSE CXX_SOURCES src/*.cpp)
add_executable(VulkanTest ${CXX_SOURCES})
target_link_libraries(VulkanTest glfw vulkan)