aboutsummaryrefslogtreecommitdiff
path: root/ports/sqlite-orm
diff options
context:
space:
mode:
Diffstat (limited to 'ports/sqlite-orm')
-rw-r--r--ports/sqlite-orm/CONTROL12
-rw-r--r--ports/sqlite-orm/vcpkg.json21
2 files changed, 21 insertions, 12 deletions
diff --git a/ports/sqlite-orm/CONTROL b/ports/sqlite-orm/CONTROL
deleted file mode 100644
index 3ae7f4611..000000000
--- a/ports/sqlite-orm/CONTROL
+++ /dev/null
@@ -1,12 +0,0 @@
-Source: sqlite-orm
-Version: 1.6
-Homepage: https://github.com/fnc12/sqlite_orm
-Build-Depends: sqlite3
-Description: SQLite ORM light header only library for modern C++
-
-Feature: test
-Description: Build sqlite_orm unit tests
-Build-Depends: catch2
-
-Feature: example
-Description: Build examples
diff --git a/ports/sqlite-orm/vcpkg.json b/ports/sqlite-orm/vcpkg.json
new file mode 100644
index 000000000..ab5e89652
--- /dev/null
+++ b/ports/sqlite-orm/vcpkg.json
@@ -0,0 +1,21 @@
+{
+ "name": "sqlite-orm",
+ "version-string": "1.6",
+ "port-version": 1,
+ "description": "SQLite ORM light header only library for modern C++",
+ "homepage": "https://github.com/fnc12/sqlite_orm",
+ "dependencies": [
+ "sqlite3"
+ ],
+ "features": {
+ "example": {
+ "description": "Build examples"
+ },
+ "test": {
+ "description": "Build sqlite_orm unit tests",
+ "dependencies": [
+ "catch2"
+ ]
+ }
+ }
+}