Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[lcm] Fix tools #26547

Closed
wants to merge 12 commits into from
14 changes: 13 additions & 1 deletion ports/lcm/portfile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,19 @@ file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/share/man")

vcpkg_copy_tools(TOOL_NAMES lcm-gen lcm-logger lcm-logplayer AUTO_CLEAN)
set(LCM_TOOLS
lcm-example
lcm-gen
lcm-logfilter
lcm-logger
lcm-logplayer
lcm-sink
lcm-source
lcm-tester
)

vcpkg_copy_tools(TOOL_NAMES ${LCM_TOOLS} AUTO_CLEAN)
vcpkg_copy_tool_dependencies("${CURRENT_PACKAGES_DIR}/tools/lcm")

if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin" "${CURRENT_PACKAGES_DIR}/debug/bin")
Expand Down
5 changes: 5 additions & 0 deletions versions/l-/lcm.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"versions": [
{
"git-tree": "a343ac3cfd9e21dbc9289f076626b605920b3526",
"version": "1.4.0",
"port-version": 5
},
{
"git-tree": "4277e71373ff869df31475afceb6b2e6881e4650",
"version": "1.4.0",
Expand Down