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 /toolsrc/src | |
| 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>
Diffstat (limited to 'toolsrc/src')
| -rw-r--r-- | toolsrc/src/vcpkg/cmakevars.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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; |
