chore: define dev dependencies in vcpkg

This commit is contained in:
2025-09-18 21:07:46 +02:00
parent babcdb68de
commit 796882cd4c
2 changed files with 18 additions and 7 deletions

View File

@@ -54,11 +54,15 @@
"vcpkg" "vcpkg"
], ],
"cacheVariables": { "cacheVariables": {
"VCPKG_MANIFEST_FEATURES": "dev",
"DRAMSYS_USE_FETCH_CONTENT": "ON", "DRAMSYS_USE_FETCH_CONTENT": "ON",
"DRAMSYS_USE_FETCH_CONTENT_INTERNAL": "ON", "DRAMSYS_USE_FETCH_CONTENT_INTERNAL": "ON",
"DRAMSYS_USE_FETCH_CONTENT_SYSTEMC": "OFF", "DRAMSYS_USE_FETCH_CONTENT_SYSTEMC": "OFF",
"DRAMSYS_USE_FETCH_CONTENT_SQLITE3": "OFF", "DRAMSYS_USE_FETCH_CONTENT_SQLITE3": "OFF",
"DRAMSYS_USE_FETCH_CONTENT_NLOHMANN_JSON": "OFF" "DRAMSYS_USE_FETCH_CONTENT_NLOHMANN_JSON": "OFF",
"DRAMSYS_USE_FETCH_CONTENT_PYBIND": "OFF",
"DRAMSYS_USE_FETCH_CONTENT_GOOGLE_TEST": "OFF",
"DRAMSYS_USE_FETCH_CONTENT_GOOGLE_BENCHMARK": "OFF"
} }
}, },
{ {

View File

@@ -2,17 +2,24 @@
"name": "dramsys", "name": "dramsys",
"version": "5.1.0", "version": "5.1.0",
"dependencies": [ "dependencies": [
"benchmark", "systemc",
"gtest",
"pybind11",
"python3",
{ {
"name": "sqlite3", "name": "sqlite3",
"features": [ "features": [
"rtree" "rtree"
] ]
}, },
"systemc" "pybind11",
"python3"
], ],
"features": {
"dev": {
"description": "Development dependencies",
"dependencies": [
"benchmark",
"gtest"
]
}
},
"builtin-baseline": "ce613c41372b23b1f51333815feb3edd87ef8a8b" "builtin-baseline": "ce613c41372b23b1f51333815feb3edd87ef8a8b"
} }