diff options
| author | Karl Schultz <karl@lunarg.com> | 2018-06-18 16:49:45 -0600 |
|---|---|---|
| committer | Karl Schultz <karl@lunarg.com> | 2018-06-18 16:49:45 -0600 |
| commit | 03267b63fb9b07aad0c4206606afe935db6e6fc5 (patch) | |
| tree | 8d03344b767f969268c3b855566071dc9d76d865 | |
| parent | e69ded980cb5915cb6c13c69f3341dad5135c1d8 (diff) | |
| download | usermoji-03267b63fb9b07aad0c4206606afe935db6e6fc5.tar.xz | |
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.
| -rw-r--r-- | vulkaninfo/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
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() |
