aboutsummaryrefslogtreecommitdiff
path: root/ports/comms-ublox
diff options
context:
space:
mode:
authorMathis Logemann <mathisloge@gmail.com>2020-12-18 12:04:07 +0100
committerGitHub <noreply@github.com>2020-12-18 03:04:07 -0800
commite1417916bc1ed24bacd9cbc54bd42a99f996f618 (patch)
treef364cfdf40e2d33ba28b2c6ff051f777ad62ea6b /ports/comms-ublox
parentfe5852514a5cf82a3fadec6b9458caf134c451f1 (diff)
downloadvcpkg-e1417916bc1ed24bacd9cbc54bd42a99f996f618.tar.gz
vcpkg-e1417916bc1ed24bacd9cbc54bd42a99f996f618.zip
[comms] fixes debug build configuration (#15159)
* set include directory correctly * Revert "set include directory correctly" This reverts commit bde9f290215dc685acdf115e5c2a5f332e2bbeb2. * try suggested fix * try changes * apply fix for comms-ublox * fix commsdsl * try moving in port dir * Revert "try moving in port dir" This reverts commit 93546df6880c621aa3db36e7f60ef4bc7062d0e0. * set port version * fix port version Co-authored-by: Victor Romero <romerosanchezv@gmail.com> * add usage file to comms * add line to usage Co-authored-by: Victor Romero <romerosanchezv@gmail.com>
Diffstat (limited to 'ports/comms-ublox')
-rw-r--r--ports/comms-ublox/portfile.cmake6
-rw-r--r--ports/comms-ublox/vcpkg.json1
2 files changed, 5 insertions, 2 deletions
diff --git a/ports/comms-ublox/portfile.cmake b/ports/comms-ublox/portfile.cmake
index 87011252d..1bd6a7745 100644
--- a/ports/comms-ublox/portfile.cmake
+++ b/ports/comms-ublox/portfile.cmake
@@ -21,8 +21,10 @@ vcpkg_configure_cmake(
)
vcpkg_install_cmake()
-file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
-file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
+vcpkg_fixup_cmake_targets(CONFIG_PATH lib/ublox/cmake TARGET_PATH share/ublox)
+# currently this is only a header only library. after moving lib/ublox to share this lib path will be empty
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/lib")
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug")
# Handle copyright
file(INSTALL ${SOURCE_PATH}/LICENSE.txt DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
diff --git a/ports/comms-ublox/vcpkg.json b/ports/comms-ublox/vcpkg.json
index 2c18c713c..65b4f327f 100644
--- a/ports/comms-ublox/vcpkg.json
+++ b/ports/comms-ublox/vcpkg.json
@@ -1,6 +1,7 @@
{
"name": "comms-ublox",
"version-string": "0.20.0",
+ "port-version": 1,
"description": "UBLOX (UBX) protocol definition, generated out of cc.ublox.commsdsl",
"homepage": "https://commschamp.github.io/",
"documentation": "https://github.com/commschamp/cc.ublox.generated",