1
0

Moved to CMake as a build system

This commit is contained in:
2025-07-09 20:34:37 +02:00
parent db3bd3a1e7
commit 4ea58f4eac
7 changed files with 54 additions and 113 deletions

View File

@@ -0,0 +1,23 @@
# project 2
add_executable(HelloVulkan main.cpp)
# linker settings
target_link_directories( HelloVulkan PUBLIC
"../libs/GLFW"
"../libs/glm"
"../libs/imgui"
"c:/VulkanSDK/1.4.304.1/Lib"
)
target_include_directories(HelloVulkan PUBLIC
"c:/VulkanSDK/1.4.304.1/Include"
"../libs"
)
target_link_libraries(HelloVulkan
glfw3
vulkan-1
)
target_compile_definitions(HelloVulkan PUBLIC $<CONFIG:Release>:NDEBUG)
target_compile_definitions(HelloVulkan PUBLIC $<CONFIG:Debug>:DEBUG)

View File

@@ -1,6 +0,0 @@
project "HelloVulkan"
files {
"**.cpp",
"**.h"
}