Skip to content

Commit 34cd6a9

Browse files
committed
Update configuration and make file
1 parent 34cf30e commit 34cd6a9

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

CMakeLists.txt

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.0.2)
2-
project(tcp_to_ros)
2+
project(tcp_ros_bridge)
33

44
## Compile as C++11, supported in ROS Kinetic and newer
55
add_compile_options(-std=c++11)
@@ -57,6 +57,13 @@ include_directories(
5757
# add_library(uuv_ctrl_msg_parser_test
5858
# src/uuv_ctrl_msg_parser_test.cpp
5959
# )
60+
add_library(message719
61+
src/message719.c
62+
)
63+
64+
add_library(tcp_ros_bridge
65+
src/tcp_ros_bridge.cpp
66+
)
6067

6168
add_executable(async_tcp_server_test src/async_tcp_server_test.cpp)
6269
add_executable(uuv_ctrl_msg_parser_test src/uuv_ctrl_msg_parser_test.cpp)

package.xml

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0"?>
22
<package format="2">
3-
<name>tcp_to_ros</name>
3+
<name>tcp_ros_bridge</name>
44
<version>0.0.0</version>
55
<description>The tcp_to_ros package</description>
66

0 commit comments

Comments
 (0)