diff options
Diffstat (limited to 'vcpkg/ports/yasm-tool-helper')
| -rw-r--r-- | vcpkg/ports/yasm-tool-helper/portfile.cmake | 5 | ||||
| -rw-r--r-- | vcpkg/ports/yasm-tool-helper/vcpkg.json | 16 | ||||
| -rw-r--r-- | vcpkg/ports/yasm-tool-helper/yasm-tool-helper.cmake.in | 1 |
3 files changed, 22 insertions, 0 deletions
diff --git a/vcpkg/ports/yasm-tool-helper/portfile.cmake b/vcpkg/ports/yasm-tool-helper/portfile.cmake new file mode 100644 index 0000000..91f4fc7 --- /dev/null +++ b/vcpkg/ports/yasm-tool-helper/portfile.cmake @@ -0,0 +1,5 @@ +set(VCPKG_POLICY_EMPTY_PACKAGE enabled) +configure_file( + "${CMAKE_CURRENT_LIST_DIR}/yasm-tool-helper.cmake.in" + "${CURRENT_PACKAGES_DIR}/share/${PORT}/yasm-tool-helper.cmake" + @ONLY) diff --git a/vcpkg/ports/yasm-tool-helper/vcpkg.json b/vcpkg/ports/yasm-tool-helper/vcpkg.json new file mode 100644 index 0000000..dcc112c --- /dev/null +++ b/vcpkg/ports/yasm-tool-helper/vcpkg.json @@ -0,0 +1,16 @@ +{ + "name": "yasm-tool-helper", + "version-date": "2020-03-11", + "port-version": 1, + "description": "Backfill that depends on yasm:host", + "homepage": "https://github.com/Microsoft/vcpkg", + "dependencies": [ + { + "name": "yasm", + "host": true, + "features": [ + "tools" + ] + } + ] +} diff --git a/vcpkg/ports/yasm-tool-helper/yasm-tool-helper.cmake.in b/vcpkg/ports/yasm-tool-helper/yasm-tool-helper.cmake.in new file mode 100644 index 0000000..8e69ef5 --- /dev/null +++ b/vcpkg/ports/yasm-tool-helper/yasm-tool-helper.cmake.in @@ -0,0 +1 @@ +include("${CMAKE_CURRENT_LIST_DIR}/../../../@HOST_TRIPLET@/share/yasm/vcpkg-port-config.cmake") |