Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
uam_task_ctrl
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
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
Pep Martí Saumell
uam_task_ctrl
Commits
cea5a27d
Commit
cea5a27d
authored
9 years ago
by
Angel Santamaria-Navarro
Browse files
Options
Downloads
Patches
Plain Diff
Moved to Eigen3
parent
cf889b7a
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/CMakeLists.txt
+3
-3
3 additions, 3 deletions
src/CMakeLists.txt
src/quadarm_task_priority_ctrl.h
+3
-3
3 additions, 3 deletions
src/quadarm_task_priority_ctrl.h
with
6 additions
and
6 deletions
src/CMakeLists.txt
+
3
−
3
View file @
cea5a27d
...
...
@@ -20,18 +20,18 @@ set(Boost_USE_STATIC_RUNTIME OFF)
FIND_PACKAGE
(
Boost REQUIRED
)
# Eigen #######
FIND_PACKAGE
(
Eigen REQUIRED
)
FIND_PACKAGE
(
Eigen
3
REQUIRED
)
SET
(
CMAKE_BUILD_TYPE release
)
# add the necessary include directories
INCLUDE_DIRECTORIES
(
.
${
EIGEN_INCLUDE_DIR
}
${
Boost_INCLUDE_DIRS
}
)
INCLUDE_DIRECTORIES
(
.
${
EIGEN
3
_INCLUDE_DIR
}
${
Boost_INCLUDE_DIRS
}
)
# create the shared library
ADD_LIBRARY
(
quadarm_task_priority_ctrl SHARED
${
sources
}
)
#TARGET_LINK_LIBRARIES(quadarm_task_priority_ctrl ${EIGEN_LIBRARY} ${Boost_LIBRARIES} orocos-kdl)
TARGET_LINK_LIBRARIES
(
quadarm_task_priority_ctrl
${
EIGEN_LIBRARY
}
${
Boost_LIBRARIES
}
)
TARGET_LINK_LIBRARIES
(
quadarm_task_priority_ctrl
${
EIGEN
3
_LIBRARY
}
${
Boost_LIBRARIES
}
)
# link necessary libraries
...
...
This diff is collapsed.
Click to expand it.
src/quadarm_task_priority_ctrl.h
+
3
−
3
View file @
cea5a27d
...
...
@@ -9,9 +9,9 @@
#include
<sstream>
#include
<pwd.h>
#include
<math.h>
#include
<Eigen/Dense>
#include
<Eigen/Eigenvalues>
#include
<Eigen/SVD>
#include
<
eigen3/
Eigen/Dense>
#include
<
eigen3/
Eigen/Eigenvalues>
#include
<
eigen3/
Eigen/SVD>
#include
<sys/stat.h>
...
...
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