From 03267b63fb9b07aad0c4206606afe935db6e6fc5 Mon Sep 17 00:00:00 2001 From: Karl Schultz Date: Mon, 18 Jun 2018 16:49:45 -0600 Subject: build: Fix dest of vcxproj file copy These vcxproj.user files are not useful anyway since the layers dir isn't here. But this fix at least prevents the creation of a demos directory in the build dir. --- vulkaninfo/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vulkaninfo/CMakeLists.txt b/vulkaninfo/CMakeLists.txt index 6f0af14e..64b2ebe3 100644 --- a/vulkaninfo/CMakeLists.txt +++ b/vulkaninfo/CMakeLists.txt @@ -66,7 +66,7 @@ if(WIN32) endif() endforeach() - file(COPY vulkaninfo.vcxproj.user DESTINATION ${CMAKE_BINARY_DIR}/demos) + file(COPY vulkaninfo.vcxproj.user DESTINATION ${CMAKE_BINARY_DIR}/vulkaninfo) elseif(APPLE) add_definitions(-DVK_USE_PLATFORM_MACOS_MVK) endif() -- cgit v1.2.3