From 6e0289a0c3ae5fec1e738d3a921aa7e951fc7d22 Mon Sep 17 00:00:00 2001 From: Sean Farrell Date: Mon, 9 Sep 2019 17:48:38 +0200 Subject: Fix how to use VULKAN_SDK under Visual Studio (#8092) Environment variables are referenced with brackets not curly braces. Copying and using the line will not result frustration. --- ports/vulkan/usage | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ports/vulkan/usage b/ports/vulkan/usage index 7924cf3cd..62130b840 100644 --- a/ports/vulkan/usage +++ b/ports/vulkan/usage @@ -2,7 +2,7 @@ The package vulkan does not provide cmake or visual studio integration directly. However, it can still easily be used. Visual Studio: - Include ${VULKAN_SDK}/include to your include path. + Include $(VULKAN_SDK)/include to your include path. CMake: find_package(Vulkan REQUIRED) -- cgit v1.2.3