diff options
| author | Stefano Sinigardi <stesinigardi@hotmail.com> | 2021-05-19 00:26:14 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-18 15:26:14 -0700 |
| commit | 93dc66722307afadfe2160c84025141cf1a08518 (patch) | |
| tree | ed327ace09c62ed4f43816e6cb8d9a2682c8658c | |
| parent | 735d936ff43e6f5dd3f6ed432f798b763b7160f4 (diff) | |
| download | vcpkg-93dc66722307afadfe2160c84025141cf1a08518.tar.gz vcpkg-93dc66722307afadfe2160c84025141cf1a08518.zip | |
[ade] fix single config triplets (#17935)
* [ade] fix single config triplets
* [ade] fix version references
| -rw-r--r-- | ports/ade/CONTROL | 3 | ||||
| -rw-r--r-- | ports/ade/portfile.cmake | 7 | ||||
| -rw-r--r-- | versions/a-/ade.json | 5 | ||||
| -rw-r--r-- | versions/baseline.json | 2 |
4 files changed, 9 insertions, 8 deletions
diff --git a/ports/ade/CONTROL b/ports/ade/CONTROL index fd8286ecd..2837ebad3 100644 --- a/ports/ade/CONTROL +++ b/ports/ade/CONTROL @@ -1,3 +1,4 @@ Source: ade
Version: 0.1.1f
-Description: ADE Framework is a graph construction, manipulation, and processing framework. ADE Framework is suitable for organizing data flow processing and execution.
\ No newline at end of file +Port-Version: 1
+Description: ADE Framework is a graph construction, manipulation, and processing framework. ADE Framework is suitable for organizing data flow processing and execution.
diff --git a/ports/ade/portfile.cmake b/ports/ade/portfile.cmake index c5becf7eb..7af58d539 100644 --- a/ports/ade/portfile.cmake +++ b/ports/ade/portfile.cmake @@ -15,12 +15,7 @@ vcpkg_configure_cmake( vcpkg_install_cmake()
-file(COPY ${CURRENT_PACKAGES_DIR}/debug/share/ade/adeTargets-debug.cmake DESTINATION ${CURRENT_PACKAGES_DIR}/share/ade/)
-
-file(READ ${CURRENT_PACKAGES_DIR}/share/ade/adeTargets-debug.cmake ADE_TARGET_DEBUG)
-string(REPLACE "/lib/"
- "/debug/lib/" ADE_TARGET_DEBUG "${ADE_TARGET_DEBUG}")
-file(WRITE ${CURRENT_PACKAGES_DIR}/share/ade/adeTargets-debug.cmake "${ADE_TARGET_DEBUG}")
+vcpkg_fixup_cmake_targets()
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/share)
diff --git a/versions/a-/ade.json b/versions/a-/ade.json index be6e3c310..734019c3c 100644 --- a/versions/a-/ade.json +++ b/versions/a-/ade.json @@ -1,6 +1,11 @@ { "versions": [ { + "git-tree": "91083eb87a39190e6c0296d72931a8d39edcc7cd", + "version-string": "0.1.1f", + "port-version": 1 + }, + { "git-tree": "e767fb59fbab737caf770f1aec618a17b503c321", "version-string": "0.1.1f", "port-version": 0 diff --git a/versions/baseline.json b/versions/baseline.json index 5d62c111f..b02979a20 100644 --- a/versions/baseline.json +++ b/versions/baseline.json @@ -26,7 +26,7 @@ }, "ade": { "baseline": "0.1.1f", - "port-version": 0 + "port-version": 1 }, "aixlog": { "baseline": "1.4.0", |
