diff options
| author | SvenPStarFinanz <spa@starfinanz.de> | 2020-10-30 21:29:32 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-30 13:29:32 -0700 |
| commit | fe78675f817144710dd3f602f90f8f93b9dc2754 (patch) | |
| tree | fd8045b362c3d3f36baeda27cbcd08e3ffcbdfdb /ports/sqlitecpp/vcpkg.json | |
| parent | 5d4fb44aca482e593f9d6558699ef7fed119868e (diff) | |
| download | vcpkg-fe78675f817144710dd3f602f90f8f93b9dc2754.tar.gz vcpkg-fe78675f817144710dd3f602f90f8f93b9dc2754.zip | |
[sqlitecpp] Additions for sqlcipher port (#14029)
Diffstat (limited to 'ports/sqlitecpp/vcpkg.json')
| -rw-r--r-- | ports/sqlitecpp/vcpkg.json | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/ports/sqlitecpp/vcpkg.json b/ports/sqlitecpp/vcpkg.json new file mode 100644 index 000000000..c86c7b95e --- /dev/null +++ b/ports/sqlitecpp/vcpkg.json @@ -0,0 +1,27 @@ +{ + "name": "sqlitecpp", + "version-string": "3.1.1", + "port-version": 1, + "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" + ] + } + } +} |
