aboutsummaryrefslogtreecommitdiff
path: root/scripts/cmake/vcpkg_build_cmake.cmake
diff options
context:
space:
mode:
authorJason Juang <jasjuang@gmail.com>2018-02-13 00:00:27 -0800
committerRobert Schumacher <roschuma@microsoft.com>2018-02-13 00:00:27 -0800
commitd8f3fffd5e12b241d9cc0ef67a46c087d4c63949 (patch)
tree85c9c27b7ef5b387911ae5223f41d9063b8639eb /scripts/cmake/vcpkg_build_cmake.cmake
parentcd8fa6f75e2ba3a526a236ba1ff35d4300cc722c (diff)
downloadvcpkg-d8f3fffd5e12b241d9cc0ef67a46c087d4c63949.tar.gz
vcpkg-d8f3fffd5e12b241d9cc0ef67a46c087d4c63949.zip
change compile order to debug first, fix #2767 (#2785)
Diffstat (limited to 'scripts/cmake/vcpkg_build_cmake.cmake')
-rw-r--r--scripts/cmake/vcpkg_build_cmake.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/cmake/vcpkg_build_cmake.cmake b/scripts/cmake/vcpkg_build_cmake.cmake
index 8bafee4d4..bdf192792 100644
--- a/scripts/cmake/vcpkg_build_cmake.cmake
+++ b/scripts/cmake/vcpkg_build_cmake.cmake
@@ -61,7 +61,7 @@ function(vcpkg_build_cmake)
set(PARALLEL_ARG ${NO_PARALLEL_ARG})
endif()
- foreach(BUILDTYPE "release" "debug")
+ foreach(BUILDTYPE "debug" "release")
if(NOT DEFINED VCPKG_BUILD_TYPE OR VCPKG_BUILD_TYPE STREQUAL BUILDTYPE)
if(BUILDTYPE STREQUAL "debug")
set(SHORT_BUILDTYPE "dbg")