vcpkg/ports/sqlitecpp/vcpkg.json
Reder 8b7ac186bf
[sqlitecpp] do not use stack protection (#25761)
* do not use stack protection
fixes #25760

* update version

* update baseline

* only remove stack protection for mingw64

* update version

* Make variable visible even if unused

Co-authored-by: Cheney Wang <38240633+Cheney-W@users.noreply.github.com>

* update version

Co-authored-by: Cheney Wang <38240633+Cheney-W@users.noreply.github.com>
2022-07-18 15:09:27 -07:00

28 lines
616 B
JSON

{
"name": "sqlitecpp",
"version-string": "3.1.1",
"port-version": 2,
"description": "SQLiteC++ (SQLiteCpp) is a smart and easy to use C++ SQLite3 wrapper.",
"homepage": "https://github.com/SRombauts/SQLiteCpp",
"default-features": [
"sqlite"
],
"features": {
"sqlcipher": {
"description": "Use the sqlcipher port",
"dependencies": [
{
"name": "sqlcipher",
"default-features": false
}
]
},
"sqlite": {
"description": "Use the (unofficial) sqlite3 port of vcpkg",
"dependencies": [
"sqlite3"
]
}
}
}