diff --git a/samples/01_InitInstance/CMakeLists.txt b/samples/01_InitInstance/CMakeLists.txt index c03f0a0..96b6c4b 100644 --- a/samples/01_InitInstance/CMakeLists.txt +++ b/samples/01_InitInstance/CMakeLists.txt @@ -32,4 +32,4 @@ add_executable(01_InitInstance ) set_target_properties(01_InitInstance PROPERTIES FOLDER "Samples") -target_link_libraries(01_InitInstance "$ENV{VK_SDK_PATH}/Lib/vulkan-1.lib") +target_link_libraries(01_InitInstance "$ENV{VULKAN_SDK}/Lib/vulkan-1.lib") diff --git a/samples/02_EnumerateDevices/CMakeLists.txt b/samples/02_EnumerateDevices/CMakeLists.txt index dbcfcf7..8fd3de3 100644 --- a/samples/02_EnumerateDevices/CMakeLists.txt +++ b/samples/02_EnumerateDevices/CMakeLists.txt @@ -32,4 +32,4 @@ add_executable(02_EnumerateDevices ) set_target_properties(02_EnumerateDevices PROPERTIES FOLDER "Samples") -target_link_libraries(02_EnumerateDevices "$ENV{VK_SDK_PATH}/Lib/vulkan-1.lib") +target_link_libraries(02_EnumerateDevices "$ENV{VULKAN_SDK}/Lib/vulkan-1.lib") diff --git a/samples/03_InitDevice/CMakeLists.txt b/samples/03_InitDevice/CMakeLists.txt index 075d4d8..e035f89 100644 --- a/samples/03_InitDevice/CMakeLists.txt +++ b/samples/03_InitDevice/CMakeLists.txt @@ -32,4 +32,4 @@ add_executable(03_InitDevice ) set_target_properties(03_InitDevice PROPERTIES FOLDER "Samples") -target_link_libraries(03_InitDevice "$ENV{VK_SDK_PATH}/Lib/vulkan-1.lib") +target_link_libraries(03_InitDevice "$ENV{VULKAN_SDK}/Lib/vulkan-1.lib") diff --git a/samples/04_InitCommandBuffer/CMakeLists.txt b/samples/04_InitCommandBuffer/CMakeLists.txt index f691917..aa94628 100644 --- a/samples/04_InitCommandBuffer/CMakeLists.txt +++ b/samples/04_InitCommandBuffer/CMakeLists.txt @@ -32,4 +32,4 @@ add_executable(04_InitCommandBuffer ) set_target_properties(04_InitCommandBuffer PROPERTIES FOLDER "Samples") -target_link_libraries(04_InitCommandBuffer "$ENV{VK_SDK_PATH}/Lib/vulkan-1.lib") +target_link_libraries(04_InitCommandBuffer "$ENV{VULKAN_SDK}/Lib/vulkan-1.lib") diff --git a/samples/05_InitSwapchain/CMakeLists.txt b/samples/05_InitSwapchain/CMakeLists.txt index 387ccba..9d99e45 100644 --- a/samples/05_InitSwapchain/CMakeLists.txt +++ b/samples/05_InitSwapchain/CMakeLists.txt @@ -32,4 +32,4 @@ add_executable(05_InitSwapchain ) set_target_properties(05_InitSwapchain PROPERTIES FOLDER "Samples") -target_link_libraries(05_InitSwapchain "$ENV{VK_SDK_PATH}/Lib/vulkan-1.lib") +target_link_libraries(05_InitSwapchain "$ENV{VULKAN_SDK}/Lib/vulkan-1.lib") diff --git a/samples/06_InitDepthBuffer/CMakeLists.txt b/samples/06_InitDepthBuffer/CMakeLists.txt index dd68297..30cea1c 100644 --- a/samples/06_InitDepthBuffer/CMakeLists.txt +++ b/samples/06_InitDepthBuffer/CMakeLists.txt @@ -32,4 +32,4 @@ add_executable(06_InitDepthBuffer ) set_target_properties(06_InitDepthBuffer PROPERTIES FOLDER "Samples") -target_link_libraries(06_InitDepthBuffer "$ENV{VK_SDK_PATH}/Lib/vulkan-1.lib") +target_link_libraries(06_InitDepthBuffer "$ENV{VULKAN_SDK}/Lib/vulkan-1.lib") diff --git a/samples/07_InitUniformBuffer/CMakeLists.txt b/samples/07_InitUniformBuffer/CMakeLists.txt index 392ab18..99c6ed4 100644 --- a/samples/07_InitUniformBuffer/CMakeLists.txt +++ b/samples/07_InitUniformBuffer/CMakeLists.txt @@ -32,4 +32,4 @@ add_executable(07_InitUniformBuffer ) set_target_properties(07_InitUniformBuffer PROPERTIES FOLDER "Samples") -target_link_libraries(07_InitUniformBuffer "$ENV{VK_SDK_PATH}/Lib/vulkan-1.lib") +target_link_libraries(07_InitUniformBuffer "$ENV{VULKAN_SDK}/Lib/vulkan-1.lib") diff --git a/samples/08_InitPipelineLayout/CMakeLists.txt b/samples/08_InitPipelineLayout/CMakeLists.txt index 3be46a5..ac6b2f9 100644 --- a/samples/08_InitPipelineLayout/CMakeLists.txt +++ b/samples/08_InitPipelineLayout/CMakeLists.txt @@ -32,4 +32,4 @@ add_executable(08_InitPipelineLayout ) set_target_properties(08_InitPipelineLayout PROPERTIES FOLDER "Samples") -target_link_libraries(08_InitPipelineLayout "$ENV{VK_SDK_PATH}/Lib/vulkan-1.lib") +target_link_libraries(08_InitPipelineLayout "$ENV{VULKAN_SDK}/Lib/vulkan-1.lib") diff --git a/samples/09_InitDescriptorSet/CMakeLists.txt b/samples/09_InitDescriptorSet/CMakeLists.txt index 8aa9778..0ce4a3a 100644 --- a/samples/09_InitDescriptorSet/CMakeLists.txt +++ b/samples/09_InitDescriptorSet/CMakeLists.txt @@ -32,4 +32,4 @@ add_executable(09_InitDescriptorSet ) set_target_properties(09_InitDescriptorSet PROPERTIES FOLDER "Samples") -target_link_libraries(09_InitDescriptorSet "$ENV{VK_SDK_PATH}/Lib/vulkan-1.lib") +target_link_libraries(09_InitDescriptorSet "$ENV{VULKAN_SDK}/Lib/vulkan-1.lib") diff --git a/samples/10_InitRenderPass/CMakeLists.txt b/samples/10_InitRenderPass/CMakeLists.txt index 79026de..09e1b8c 100644 --- a/samples/10_InitRenderPass/CMakeLists.txt +++ b/samples/10_InitRenderPass/CMakeLists.txt @@ -32,4 +32,4 @@ add_executable(10_InitRenderPass ) set_target_properties(10_InitRenderPass PROPERTIES FOLDER "Samples") -target_link_libraries(10_InitRenderPass "$ENV{VK_SDK_PATH}/Lib/vulkan-1.lib") +target_link_libraries(10_InitRenderPass "$ENV{VULKAN_SDK}/Lib/vulkan-1.lib") diff --git a/tests/DeviceFunctions/CMakeLists.txt b/tests/DeviceFunctions/CMakeLists.txt index 664c85f..46a6de5 100644 --- a/tests/DeviceFunctions/CMakeLists.txt +++ b/tests/DeviceFunctions/CMakeLists.txt @@ -32,4 +32,4 @@ add_executable(DeviceFunctions ) set_target_properties(DeviceFunctions PROPERTIES FOLDER "Tests") -target_link_libraries(DeviceFunctions "$ENV{VK_SDK_PATH}/Lib/vulkan-1.lib") +target_link_libraries(DeviceFunctions "$ENV{VULKAN_SDK}/Lib/vulkan-1.lib") diff --git a/tests/NoExceptions/CMakeLists.txt b/tests/NoExceptions/CMakeLists.txt index 39e5404..f22ff5e 100644 --- a/tests/NoExceptions/CMakeLists.txt +++ b/tests/NoExceptions/CMakeLists.txt @@ -32,4 +32,4 @@ add_executable(NoExceptions ) set_target_properties(NoExceptions PROPERTIES FOLDER "Tests") -target_link_libraries(NoExceptions "$ENV{VK_SDK_PATH}/Lib/vulkan-1.lib") +target_link_libraries(NoExceptions "$ENV{VULKAN_SDK}/Lib/vulkan-1.lib") diff --git a/tests/StructureChain/CMakeLists.txt b/tests/StructureChain/CMakeLists.txt index 46b8fa0..275bd51 100644 --- a/tests/StructureChain/CMakeLists.txt +++ b/tests/StructureChain/CMakeLists.txt @@ -32,4 +32,4 @@ add_executable(StructureChain ) set_target_properties(StructureChain PROPERTIES FOLDER "Tests") -target_link_libraries(StructureChain "$ENV{VK_SDK_PATH}/Lib/vulkan-1.lib") +target_link_libraries(StructureChain "$ENV{VULKAN_SDK}/Lib/vulkan-1.lib")