Skip to content

Commit

Permalink
Merge branch 'fri-1.15' into fri-1.11
Browse files Browse the repository at this point in the history
  • Loading branch information
mhubii committed Jun 2, 2024
2 parents 6f19287 + b79dc5b commit 5edf25c
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,14 @@ message("Found nanopb of version: " ${NANOPB_VERSION})

# try to find FRIClient version
file(READ ${CMAKE_CURRENT_BINARY_DIR}/${FRIClient_SDK_NAME}/include/friClientIf.h FRI_CLIENT_IF_HEADER)
string(REGEX MATCH "\\version {([0-9]*).([0-9]*)}" _ ${FRI_CLIENT_IF_HEADER})
string(REGEX MATCH "version \\{([0-9]+)\\.([0-9]+)" _ ${FRI_CLIENT_IF_HEADER})

set(FRICLIENT_VERSION_MAJOR ${CMAKE_MATCH_1})
set(FRICLIENT_VERSION_MINOR ${CMAKE_MATCH_2})
set(FRICLIENT_VERSION ${FRICLIENT_VERSION_MAJOR}.${FRICLIENT_VERSION_MINOR})

if (NOT FRICLIENT_VERSION STREQUAL "1.11")
message(FATAL_ERROR "Expected FRIClient ersion 1.11, found: " ${FRICLIENT_VERSION})
message(FATAL_ERROR "Expected FRIClient version 1.11, found: " ${FRICLIENT_VERSION})
endif()

message("Found FRIClient of version: " ${FRICLIENT_VERSION})
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ This folder adds CMake support to KUKA's Fast Robot Interface (FRI).
| `1.15` | [![Build status](https://github.com/lbr-stack/fri/actions/workflows/build.yaml/badge.svg?branch=fri-1.15)](https://github.com/lbr-stack/fri/actions/workflows/build.yaml) |
| `1.16` | [![Build status](https://github.com/lbr-stack/fri/actions/workflows/build.yaml/badge.svg?branch=fri-1.16)](https://github.com/lbr-stack/fri/actions/workflows/build.yaml) |
| `2.5` | [![Build status](https://github.com/lbr-stack/fri/actions/workflows/build.yaml/badge.svg?branch=fri-2.5)](https://github.com/lbr-stack/fri/actions/workflows/build.yaml) |
| `2.7` | [![Build status](https://github.com/lbr-stack/fri/actions/workflows/build.yaml/badge.svg?branch=fri-2.7)](https://github.com/lbr-stack/fri/actions/workflows/build.yaml) |

## Build
To build, run
Expand Down
19 changes: 19 additions & 0 deletions package.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?xml version="1.0"?>
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>fri_client_sdk</name>
<version>2.0.0</version>
<description>CMake support for KUKA's FRI.</description>
<maintainer email="[email protected]">bowangFromMars</maintainer>
<maintainer email="[email protected]">fredRocs</maintainer>
<maintainer email="[email protected]">liver121888</maintainer>
<maintainer email="[email protected]">peterMitrano</maintainer>
<maintainer email="[email protected]">mhubii</maintainer>
<maintainer email="[email protected]">OmidRezayof</maintainer>

<license>Apache-2.0</license>

<export>
<build_type>cmake</build_type>
</export>
</package>

0 comments on commit 5edf25c

Please sign in to comment.