diff options
| author | Alexander Neumann <30894796+Neumann-A@users.noreply.github.com> | 2020-02-05 20:23:36 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-05 11:23:36 -0800 |
| commit | d12f839d2e2635516ef11a3ef03baf24f0ff4a74 (patch) | |
| tree | aefba2ea8b1f7cd06188eb7895687579a30948bb | |
| parent | 1fd6cc945d215c45b1ecb0b94833fed88a5c6bf2 (diff) | |
| download | vcpkg-d12f839d2e2635516ef11a3ef03baf24f0ff4a74.tar.gz vcpkg-d12f839d2e2635516ef11a3ef03baf24f0ff4a74.zip | |
[vcpkg] fix missing " around path include (#9912)
* fix missing " around path
* Update VERSION.txt
* [vcpkg] Add quotes to include() in generated dep info file
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
| -rw-r--r-- | toolsrc/VERSION.txt | 2 | ||||
| -rw-r--r-- | toolsrc/src/vcpkg/cmakevars.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/toolsrc/VERSION.txt b/toolsrc/VERSION.txt index f9cb2e7e9..966303f8a 100644 --- a/toolsrc/VERSION.txt +++ b/toolsrc/VERSION.txt @@ -1 +1 @@ -"2020.01.18" +"2020.02.04" diff --git a/toolsrc/src/vcpkg/cmakevars.cpp b/toolsrc/src/vcpkg/cmakevars.cpp index 6a9d26ec8..6059833e7 100644 --- a/toolsrc/src/vcpkg/cmakevars.cpp +++ b/toolsrc/src/vcpkg/cmakevars.cpp @@ -18,7 +18,7 @@ namespace vcpkg::CMakeVars Files::Filesystem& fs = paths.get_filesystem(); static int tag_extract_id = 0; - std::string extraction_file("include(" + get_tags_path.generic_u8string() + ")\n\n"); + std::string extraction_file("include(\"" + get_tags_path.generic_u8string() + "\")\n\n"); std::map<Triplet, int> emitted_triplets; int emitted_triplet_id = 0; @@ -67,7 +67,7 @@ namespace vcpkg::CMakeVars static int dep_info_id = 0; Files::Filesystem& fs = paths.get_filesystem(); - std::string extraction_file("include(" + get_dep_info_path.generic_u8string() + ")\n\n"); + std::string extraction_file("include(\"" + get_dep_info_path.generic_u8string() + "\")\n\n"); std::map<Triplet, int> emitted_triplets; int emitted_triplet_id = 0; |
