feat(display)!: Add libdisplaydevice dependency and output name mapping (#2894)

This commit is contained in:
Lukas Senionis 2024-12-11 21:17:44 +02:00 committed by GitHub
commit 1543f584ab
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
20 changed files with 327 additions and 101 deletions

View file

@ -32,6 +32,9 @@ modules:
# Test dependencies
- "modules/xvfb/xvfb.json"
# Build dependencies
- "modules/nlohmann_json.json"
# Runtime dependencies
- shared-modules/libayatana-appindicator/libayatana-appindicator-gtk3.json
- "modules/avahi.json"

View file

@ -0,0 +1,15 @@
{
"name": "nlohmann_json",
"buildsystem": "cmake-ninja",
"config-opts": [
"-DJSON_MultipleHeaders=OFF",
"-DJSON_BuildTests=OFF"
],
"sources": [
{
"type": "archive",
"url": "https://github.com/nlohmann/json/releases/download/v3.11.3/json.tar.xz",
"sha256": "d6c65aca6b1ed68e7a182f4757257b107ae403032760ed6ef121c9d55e81757d"
}
]
}