aboutsummaryrefslogtreecommitdiff
path: root/ports/sqlitecpp/vcpkg.json
diff options
context:
space:
mode:
authorSvenPStarFinanz <spa@starfinanz.de>2020-10-30 21:29:32 +0100
committerGitHub <noreply@github.com>2020-10-30 13:29:32 -0700
commitfe78675f817144710dd3f602f90f8f93b9dc2754 (patch)
treefd8045b362c3d3f36baeda27cbcd08e3ffcbdfdb /ports/sqlitecpp/vcpkg.json
parent5d4fb44aca482e593f9d6558699ef7fed119868e (diff)
downloadvcpkg-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.json27
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"
+ ]
+ }
+ }
+}