diff options
Diffstat (limited to 'vcpkg/ports/dbus/vcpkg.json')
| -rw-r--r-- | vcpkg/ports/dbus/vcpkg.json | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/vcpkg/ports/dbus/vcpkg.json b/vcpkg/ports/dbus/vcpkg.json new file mode 100644 index 0000000..afd561f --- /dev/null +++ b/vcpkg/ports/dbus/vcpkg.json @@ -0,0 +1,45 @@ +{ + "name": "dbus", + "version": "1.16.2", + "port-version": 2, + "description": "D-Bus specification and reference implementation, including libdbus and dbus-daemon", + "homepage": "https://gitlab.freedesktop.org/dbus/dbus", + "license": "AFL-2.1 OR GPL-2.0-or-later", + "supports": "!uwp & !staticcrt & !android & !ios", + "dependencies": [ + "expat", + { + "name": "vcpkg-cmake", + "host": true + }, + { + "name": "vcpkg-cmake-config", + "host": true + } + ], + "default-features": [ + { + "name": "systemd", + "platform": "linux" + } + ], + "features": { + "systemd": { + "description": "Build with systemd at_console support", + "supports": "linux", + "dependencies": [ + { + "name": "libsystemd", + "platform": "linux" + } + ] + }, + "x11": { + "description": "Build with X11 autolaunch support", + "supports": "!windows", + "dependencies": [ + "libx11" + ] + } + } +} |