diff options
| author | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
|---|---|---|
| committer | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
| commit | 54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch) | |
| tree | d915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/cpp-channel/portfile.cmake | |
Diffstat (limited to 'vcpkg/ports/cpp-channel/portfile.cmake')
| -rw-r--r-- | vcpkg/ports/cpp-channel/portfile.cmake | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/vcpkg/ports/cpp-channel/portfile.cmake b/vcpkg/ports/cpp-channel/portfile.cmake new file mode 100644 index 0000000..91308e4 --- /dev/null +++ b/vcpkg/ports/cpp-channel/portfile.cmake @@ -0,0 +1,21 @@ +vcpkg_from_github( + OUT_SOURCE_PATH SOURCE_PATH + REPO andreiavrammsd/cpp-channel + REF "v${VERSION}" + SHA512 143f6872dc0388e18605374a4daa9857abe27a68904aef6661b2d0dbb25f59f4e3f139ae537b041b8990b225b6ef7a9f72e645d28a4926c9b015d03ea4395c66 + HEAD_REF master +) + +# header-only +set(VCPKG_BUILD_TYPE "release") + +vcpkg_cmake_configure( + SOURCE_PATH "${SOURCE_PATH}" + OPTIONS + -DCPP_CHANNEL_BUILD_TESTS=OFF + -DCPP_CHANNEL_BUILD_EXAMPLES=OFF +) + +vcpkg_cmake_install() + +vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE") |