diff options
Diffstat (limited to 'vcpkg/ports/qt5-wayland')
| -rw-r--r-- | vcpkg/ports/qt5-wayland/portfile.cmake | 8 | ||||
| -rw-r--r-- | vcpkg/ports/qt5-wayland/vcpkg.json | 13 |
2 files changed, 21 insertions, 0 deletions
diff --git a/vcpkg/ports/qt5-wayland/portfile.cmake b/vcpkg/ports/qt5-wayland/portfile.cmake new file mode 100644 index 0000000..42560f1 --- /dev/null +++ b/vcpkg/ports/qt5-wayland/portfile.cmake @@ -0,0 +1,8 @@ +#Will not build on Windows! +message(WARNING "This port is just a placeholder until the required wayland libraries have been added into VCPKG! \ + As such the build will most likely fail until your system has the required wayland libraries installed (untested)") +message(WARNING "qtwayland requires libwayland-dev from your system package manager. You can install it with +sudo apt install libwayland-dev +on Ubuntu systems.") +include(${CURRENT_INSTALLED_DIR}/share/qt5/qt_port_functions.cmake) +qt_submodule_installation() diff --git a/vcpkg/ports/qt5-wayland/vcpkg.json b/vcpkg/ports/qt5-wayland/vcpkg.json new file mode 100644 index 0000000..ca8d310 --- /dev/null +++ b/vcpkg/ports/qt5-wayland/vcpkg.json @@ -0,0 +1,13 @@ +{ + "name": "qt5-wayland", + "version": "5.15.18", + "description": "QtWayland is a Qt 5 module that wraps the functionality of Wayland.", + "license": null, + "supports": "linux", + "dependencies": [ + { + "name": "qt5-base", + "default-features": false + } + ] +} |