diff options
Diffstat (limited to 'vcpkg/ports/ade')
| -rw-r--r-- | vcpkg/ports/ade/portfile.cmake | 23 | ||||
| -rw-r--r-- | vcpkg/ports/ade/vcpkg.json | 15 |
2 files changed, 38 insertions, 0 deletions
diff --git a/vcpkg/ports/ade/portfile.cmake b/vcpkg/ports/ade/portfile.cmake new file mode 100644 index 0000000..747037c --- /dev/null +++ b/vcpkg/ports/ade/portfile.cmake @@ -0,0 +1,23 @@ +vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO opencv/ade
+ REF "v${VERSION}"
+ SHA512 0a27e2e3278c34b76cc437823fdcf73d597cb4866fc6fd13059da41138b23e0eaea0326782a46b86967d9174d3aa67bfc8bdc281724cb7d0a8329387d56b9635
+ HEAD_REF master
+)
+
+vcpkg_cmake_configure(
+ SOURCE_PATH "${SOURCE_PATH}"
+ OPTIONS_DEBUG
+ -DCMAKE_DEBUG_POSTFIX=d
+)
+
+vcpkg_cmake_install()
+
+vcpkg_cmake_config_fixup()
+
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
+
+# Handle copyright
+vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE")
diff --git a/vcpkg/ports/ade/vcpkg.json b/vcpkg/ports/ade/vcpkg.json new file mode 100644 index 0000000..1cf88db --- /dev/null +++ b/vcpkg/ports/ade/vcpkg.json @@ -0,0 +1,15 @@ +{ + "name": "ade", + "version-string": "0.1.2e", + "description": "ADE Framework is a graph construction, manipulation, and processing framework. ADE Framework is suitable for organizing data flow processing and execution.", + "dependencies": [ + { + "name": "vcpkg-cmake", + "host": true + }, + { + "name": "vcpkg-cmake-config", + "host": true + } + ] +} |