This commit is contained in:
Luna 2025-04-18 06:18:45 +02:00
commit 9d7a6ec8c0
7 changed files with 301 additions and 0 deletions

9
CMakeLists.txt Normal file
View file

@ -0,0 +1,9 @@
cmake_minimum_required(VERSION 3.10.0)
project(vk_test VERSION 0.1.0 LANGUAGES C CXX)
set(CMAKE_CXX_STANDARD 23)
find_package(Vulkan REQUIRED)
add_executable(vk_test main.cpp)
target_link_libraries(vk_test glfw Vulkan::Vulkan)