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/exprtk | |
Diffstat (limited to 'vcpkg/ports/exprtk')
| -rw-r--r-- | vcpkg/ports/exprtk/portfile.cmake | 11 | ||||
| -rw-r--r-- | vcpkg/ports/exprtk/vcpkg.json | 7 |
2 files changed, 18 insertions, 0 deletions
diff --git a/vcpkg/ports/exprtk/portfile.cmake b/vcpkg/ports/exprtk/portfile.cmake new file mode 100644 index 0000000..e65acf3 --- /dev/null +++ b/vcpkg/ports/exprtk/portfile.cmake @@ -0,0 +1,11 @@ +vcpkg_from_github( + OUT_SOURCE_PATH SOURCE_PATH + REPO ArashPartow/exprtk + REF ${VERSION} + SHA512 1493b68929d3cb4e97c0180ef6f111ae4edbbee072ab78223976005b8402e4e7b56d94f013fbbc009f4db2652167fa3b4ba3c33d4029572ebbe61a36df9da9e4 + HEAD_REF master +) + +file(COPY "${SOURCE_PATH}/exprtk.hpp" DESTINATION "${CURRENT_PACKAGES_DIR}/include") + +vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/license.txt") diff --git a/vcpkg/ports/exprtk/vcpkg.json b/vcpkg/ports/exprtk/vcpkg.json new file mode 100644 index 0000000..fa6f24d --- /dev/null +++ b/vcpkg/ports/exprtk/vcpkg.json @@ -0,0 +1,7 @@ +{ + "name": "exprtk", + "version": "0.0.3", + "description": "Simple to use, easy to integrate and extremely efficient run-time C++ mathematical expression parser and evaluation engine.", + "homepage": "https://www.partow.net/programming/exprtk/index.html", + "license": "MIT" +} |