[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>
This commit is contained in:
Alexander Neumann 2020-02-05 20:23:36 +01:00 committed by GitHub
parent 1fd6cc945d
commit d12f839d2e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -1 +1 @@
"2020.01.18"
"2020.02.04"

View File

@ -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;