Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
sot-core
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
Stack Of Tasks
sot-core
Commits
3e8a2a45
Commit
3e8a2a45
authored
4 years ago
by
Guilhem Saurel
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' into devel
parents
d50e1601
54896934
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Pipeline
#13477
passed
4 years ago
Stage: test
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
CMakeLists.txt
+4
-6
4 additions, 6 deletions
CMakeLists.txt
cmake
+1
-1
1 addition, 1 deletion
cmake
package.xml
+1
-1
1 addition, 1 deletion
package.xml
src/CMakeLists.txt
+4
-0
4 additions, 0 deletions
src/CMakeLists.txt
with
10 additions
and
8 deletions
CMakeLists.txt
+
4
−
6
View file @
3e8a2a45
...
...
@@ -35,8 +35,8 @@ PROJECT(${PROJECT_NAME} ${PROJECT_ARGS})
CHECK_MINIMAL_CXX_STANDARD
(
11 ENFORCE
)
# Project dependencies
ADD_PROJECT_DEPENDENCY
(
dynamic-graph REQUIRED
PKG_CONFIG_REQUIRES dynamic-graph
)
ADD_PROJECT_DEPENDENCY
(
pinocchio REQUIRED
PKG_CONFIG_REQUIRES pinocchio
)
ADD_PROJECT_DEPENDENCY
(
dynamic-graph REQUIRED
)
ADD_PROJECT_DEPENDENCY
(
pinocchio REQUIRED
)
ADD_PROJECT_DEPENDENCY
(
Boost REQUIRED COMPONENTS regex
)
IF
(
BUILD_TESTING
)
ADD_PROJECT_DEPENDENCY
(
example-robot-data
)
...
...
@@ -52,9 +52,8 @@ ENDIF()
IF
(
BUILD_PYTHON_INTERFACE
)
FINDPYTHON
()
STRING
(
REGEX REPLACE
"-"
"_"
PYTHON_DIR
${
CUSTOM_HEADER_DIR
}
)
ADD_PROJECT_DEPENDENCY
(
dynamic-graph-python 4.0.0 REQUIRED
PKG_CONFIG_REQUIRES dynamic-graph-python
)
ADD_PROJECT_DEPENDENCY
(
eigenpy REQUIRED PKG_CONFIG_REQUIRES eigenpy
)
ADD_PROJECT_DEPENDENCY
(
dynamic-graph-python 4.0.0 REQUIRED
)
ADD_PROJECT_DEPENDENCY
(
eigenpy REQUIRED
)
SEARCH_FOR_BOOST_PYTHON
(
REQUIRED
)
ENDIF
(
BUILD_PYTHON_INTERFACE
)
...
...
@@ -196,7 +195,6 @@ IF(BUILD_TESTING)
ENDIF
(
BUILD_TESTING
)
ADD_SUBDIRECTORY
(
doc
)
PKG_CONFIG_APPEND_LIBS
(
${
PROJECT_NAME
}
)
IF
(
NOT INSTALL_PYTHON_INTERFACE_ONLY
)
INSTALL
(
FILES package.xml DESTINATION share/
${
PROJECT_NAME
}
)
ENDIF
(
NOT INSTALL_PYTHON_INTERFACE_ONLY
)
This diff is collapsed.
Click to expand it.
cmake
@
7e797cbc
Compare
7febe8d7
...
7e797cbc
Subproject commit 7
febe8d72c61b48ebf0af7731ffa802f2e7a33fa
Subproject commit 7
e797cbcae0947acce802c0bc63765a2b7c75828
This diff is collapsed.
Click to expand it.
package.xml
+
1
−
1
View file @
3e8a2a45
<?xml version="1.0"?>
<package
format=
"3"
>
<name>
sot-core
</name>
<version>
4.11.
4
</version>
<version>
4.11.
5
</version>
<description>
Hierarchical task solver plug-in for dynamic-graph
</description>
...
...
This diff is collapsed.
Click to expand it.
src/CMakeLists.txt
+
4
−
0
View file @
3e8a2a45
# Copyright 2010, 2020, François Bleibel, Olivier Stasse, Guilhem Saurel, JRL, CNRS/AIST, LAAS-CNRS
# ROS buildfarm uses isolated environments, in which the build rpath is used
set
(
BUILD_WITH_INSTALL_RPATH TRUE
)
SET
(
plugins
sot/sot
...
...
@@ -91,6 +94,7 @@ set(task-unilateral_deps task)
FOREACH
(
plugin
${
plugins
}
)
GET_FILENAME_COMPONENT
(
LIBRARY_NAME
${
plugin
}
NAME
)
ADD_LIBRARY
(
${
LIBRARY_NAME
}
SHARED
${
plugin
}
)
SET_TARGET_PROPERTIES
(
${
LIBRARY_NAME
}
PROPERTIES INSTALL_RPATH $ORIGIN
)
IF
(
SUFFIX_SO_VERSION
)
SET_TARGET_PROPERTIES
(
${
LIBRARY_NAME
}
PROPERTIES SOVERSION
${
PROJECT_VERSION
}
)
...
...
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