Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
talos-data
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Guilhem Saurel
talos-data
Commits
0035a67d
Commit
0035a67d
authored
5 years ago
by
Guilhem Saurel
Browse files
Options
Downloads
Plain Diff
Merge branch 'cmake-export' into 'devel'
Cmake export See merge request pyrene-dev/talos_data!10
parents
1ecd2c70
63a50213
Branches
devel
master
Tags
v2.1.0
No related merge requests found
Pipeline
#7770
passed
5 years ago
Stage: test
Changes
3
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CMakeLists.txt
+16
-10
16 additions, 10 deletions
CMakeLists.txt
cmake
+1
-1
1 addition, 1 deletion
cmake
package.xml
+2
-0
2 additions, 0 deletions
package.xml
with
19 additions
and
11 deletions
CMakeLists.txt
+
16
−
10
View file @
0035a67d
...
...
@@ -5,40 +5,46 @@ SET(PROJECT_NAME talos_data)
SET
(
PROJECT_DESCRIPTION
"Talos urdf model, srdf model and other data"
)
SET
(
PROJECT_URL
"https://gepgitlab.laas.fr/
${
PROJECT_ORG
}
/
${
PROJECT_NAME
}
"
)
SET
(
PROJECT_USE_CMAKE_EXPORT TRUE
)
SET
(
CXX_DISABLE_WERROR True
)
SET
(
CMAKE_CXX_STANDARD 11
)
#include(cmake/ros.cmake)
INCLUDE
(
cmake/base.cmake
)
set
(
CXX_DISABLE_WERROR True
)
# Specify the project.
COMPUTE_PROJECT_ARGS
(
PROJECT_ARGS LANGUAGES CXX
)
PROJECT
(
${
PROJECT_NAME
}
${
PROJECT_ARGS
}
)
find_package
(
catkin REQUIRED
)
find_package
(
catkin REQUIRED COMPONENTS
roscpp
)
catkin_package
(
# INCLUDE_DIRS include
# LIBRARIES talos_description
# CATKIN_DEPENDS
other_catkin_pkg
# CATKIN_DEPENDS
roscpp
# DEPENDS system_lib
)
# Find xml_reflection
ADD_
REQUIRED
_DEPENDENCY
(
"
urdfdom
>= 0.2.9"
)
ADD_
REQUIRED
_DEPENDENCY
(
"
gazebo
>= 7.0.0"
)
ADD_
PROJECT
_DEPENDENCY
(
urdfdom
REQUIRED
)
ADD_
PROJECT
_DEPENDENCY
(
gazebo
REQUIRED
)
ADD_COMPILE_DEPENDENCY
(
roscpp
)
ADD_LIBRARY
(
SpringPlugin
ADD_LIBRARY
(
${
PROJECT_NAME
}
SHARED
src/SpringPlugin.cc
)
TARGET_INCLUDE_DIRECTORIES
(
${
PROJECT_NAME
}
PRIVATE
${
GAZEBO_INCLUDE_DIRS
}
)
TARGET_INCLUDE_DIRECTORIES
(
${
PROJECT_NAME
}
PRIVATE
${
catkin_INCLUDE_DIRS
}
)
INSTALL
(
TARGETS
SpringPlugin
${
PROJECT_NAME
}
EXPORT
${
TARGETS_EXPORT_NAME
}
DESTINATION
${
CATKIN_PACKAGE_BIN_DESTINATION
}
LIBRARY DESTINATION
${
CATKIN_PACKAGE_LIB_DESTINATION
}
)
PKG_CONFIG_USE_DEPENDENCY
(
SpringPlugin roscpp
)
PKG_CONFIG_USE_DEPENDENCY
(
SpringPlugin gazebo
)
FOREACH
(
dir config gazebo meshes robots urdf srdf launch
)
INSTALL
(
DIRECTORY
${
dir
}
/
...
...
This diff is collapsed.
Click to expand it.
cmake
@
54ece258
Compare
f5e01889
...
54ece258
Subproject commit
f5e018896d0b1746a03f07ba02a5199e17eaee67
Subproject commit
54ece258eed16da94c7f10979588fcb47b744eb8
This diff is collapsed.
Click to expand it.
package.xml
+
2
−
0
View file @
0035a67d
...
...
@@ -10,6 +10,8 @@
<buildtool_depend>
catkin
</buildtool_depend>
<build_depend>
roscpp
</build_depend>
<exec_depend>
talos_description_calibration
</exec_depend>
<exec_depend>
talos_description_inertial
</exec_depend>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment