diff options
Diffstat (limited to 'vcpkg/ports/qtshadertools')
| -rw-r--r-- | vcpkg/ports/qtshadertools/portfile.cmake | 13 | ||||
| -rw-r--r-- | vcpkg/ports/qtshadertools/vcpkg.json | 21 |
2 files changed, 34 insertions, 0 deletions
diff --git a/vcpkg/ports/qtshadertools/portfile.cmake b/vcpkg/ports/qtshadertools/portfile.cmake new file mode 100644 index 0000000..0311a48 --- /dev/null +++ b/vcpkg/ports/qtshadertools/portfile.cmake @@ -0,0 +1,13 @@ +set(SCRIPT_PATH "${CURRENT_INSTALLED_DIR}/share/qtbase") +include("${SCRIPT_PATH}/qt_install_submodule.cmake") + +set(${PORT}_PATCHES) + +set(TOOL_NAMES qsb) + +qt_install_submodule(PATCHES ${${PORT}_PATCHES} + TOOL_NAMES ${TOOL_NAMES} + CONFIGURE_OPTIONS + CONFIGURE_OPTIONS_RELEASE + CONFIGURE_OPTIONS_DEBUG + ) diff --git a/vcpkg/ports/qtshadertools/vcpkg.json b/vcpkg/ports/qtshadertools/vcpkg.json new file mode 100644 index 0000000..41765b7 --- /dev/null +++ b/vcpkg/ports/qtshadertools/vcpkg.json @@ -0,0 +1,21 @@ +{ + "name": "qtshadertools", + "version": "6.9.1", + "description": "The Qt Shader Tools module is designed to provide a set of tools and utilities to work with graphics shaders.", + "homepage": "https://www.qt.io/", + "license": null, + "dependencies": [ + { + "name": "qtbase", + "default-features": false, + "features": [ + "gui" + ] + }, + { + "name": "qtshadertools", + "host": true, + "default-features": false + } + ] +} |