Skip to content

Commit d2884d9

Browse files
committed
[add]first commit
0 parents  commit d2884d9

File tree

3 files changed

+67
-0
lines changed

3 files changed

+67
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.vscode/

CMakeLists.txt

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
cmake_minimum_required(VERSION 3.0.2)
2+
project(gnss_preprocessing)
3+
4+
find_package(catkin REQUIRED
5+
roscpp
6+
rospy
7+
std_msgs
8+
nav_msgs
9+
sensor_msgs
10+
geometry_msgs
11+
tf
12+
)
13+
14+
find_package(Eigen3 REQUIRED)
15+
16+
catkin_package(
17+
# INCLUDE_DIRS include
18+
# LIBRARIES gnss_preprocessing
19+
# CATKIN_DEPENDS other_catkin_pkg
20+
# DEPENDS system_lib
21+
)
22+
23+
include_directories(
24+
include
25+
${PROJECT_SOURCE_DIR}/../../devel/include
26+
${catkin_INCLUDE_DIRS}
27+
${EIGEN3_INCLUDE_DIRS}
28+
)

package.xml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<?xml version="1.0"?>
2+
<package format="2">
3+
<name>gnss_preprocessing</name>
4+
<version>0.0.0</version>
5+
<description>The gnss_preprocessing package</description>
6+
7+
<maintainer email="[email protected]">ramune</maintainer>
8+
9+
<license>TODO</license>
10+
11+
<buildtool_depend>catkin</buildtool_depend>
12+
13+
<build_depend>roscpp</build_depend>
14+
<build_depend>rospy</build_depend>
15+
<build_depend>std_msgs</build_depend>
16+
<build_depend>nav_msgs</build_depend>
17+
<build_depend>sensor_msgs</build_depend>
18+
<build_depend>geometry_msgs</build_depend>
19+
<build_depend>tf</build_depend>
20+
21+
<build_export_depend>roscpp</build_export_depend>
22+
<build_export_depend>rospy</build_export_depend>
23+
<build_export_depend>std_msgs</build_export_depend>
24+
<build_export_depend>nav_msgs</build_export_depend>
25+
<build_export_depend>sensor_msgs</build_export_depend>
26+
<build_export_depend>geometry_msgs</build_export_depend>
27+
<build_export_depend>tf</build_export_depend>
28+
29+
<exec_depend>roscpp</exec_depend>
30+
<exec_depend>rospy</exec_depend>
31+
<exec_depend>std_msgs</exec_depend>
32+
<exec_depend>nav_msgs</exec_depend>
33+
<exec_depend>sensor_msgs</exec_depend>
34+
<exec_depend>geometry_msgs</exec_depend>
35+
<exec_depend>tf</exec_depend>
36+
37+
<export></export>
38+
</package>

0 commit comments

Comments
 (0)