Skip to content

Commit

Permalink
Enable c++17 for abseil
Browse files Browse the repository at this point in the history
  • Loading branch information
1yefuwang1 committed Jun 16, 2024
1 parent 9499f6e commit 426b852
Showing 1 changed file with 27 additions and 6 deletions.
33 changes: 27 additions & 6 deletions vcpkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,33 @@
"license": "MIT",
"description": "SQLite extension for fast vector search",
"dependencies": [
{ "name": "sqlite3", "version>=": "3.43.1" },
{ "name": "rapidjson", "version>=": "2023-07-17" },
{ "name": "hnswlib", "version>=": "0.8.0" },
{ "name": "gtest", "version>=": "1.14.0" },
{ "name": "abseil", "version>=": "20240116.2" },
{ "name": "re2", "version>=": "2023-07-01" }
{
"name": "sqlite3",
"version>=": "3.43.1"
},
{
"name": "rapidjson",
"version>=": "2023-07-17"
},
{
"name": "hnswlib",
"version>=": "0.8.0"
},
{
"name": "gtest",
"version>=": "1.14.0"
},
{
"name": "abseil",
"features": [
"cxx17"
],
"version>=": "20240116.2"
},
{
"name": "re2",
"version>=": "2023-07-01"
}
],
"builtin-baseline": "67cc1677c3bf5c23ea14b9d2416c7422fdeac492"
}

0 comments on commit 426b852

Please sign in to comment.