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
762a62a1
Commit
762a62a1
authored
8 years ago
by
asantamaria
Browse files
Options
Downloads
Patches
Plain Diff
modified library path to uam/
parent
29af4db9
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
Finduam_task_ctrl.cmake
+1
-1
1 addition, 1 deletion
Finduam_task_ctrl.cmake
src/CMakeLists.txt
+6
-4
6 additions, 4 deletions
src/CMakeLists.txt
src/kinematics.h
+2
-2
2 additions, 2 deletions
src/kinematics.h
src/uam_task_ctrl.h
+3
-3
3 additions, 3 deletions
src/uam_task_ctrl.h
with
12 additions
and
10 deletions
Finduam_task_ctrl.cmake
+
1
−
1
View file @
762a62a1
...
...
@@ -3,7 +3,7 @@ FIND_PATH(uam_task_ctrl_INCLUDE_DIR uam_task_ctrl.h /usr/include/iridrivers /usr
FIND_LIBRARY
(
uam_task_ctrl_LIBRARY
NAMES uam_task_ctrl
PATHS /usr/lib /usr/lib/iridrivers /usr/local/lib /usr/local/lib/iridrivers
)
PATHS /usr/lib /usr/lib/iridrivers
/usr/lib/iridrivers/uam
/usr/local/lib /usr/local/lib/iridrivers
/usr/local/lib/iridrivers/uam
)
IF
(
uam_task_ctrl_INCLUDE_DIR AND uam_task_ctrl_LIBRARY
)
SET
(
uam_task_ctrl_FOUND TRUE
)
...
...
This diff is collapsed.
Click to expand it.
src/CMakeLists.txt
+
6
−
4
View file @
762a62a1
...
...
@@ -2,7 +2,8 @@
SET
(
sources common_fc.cpp kinematics.cpp uam_task_ctrl.cpp tasks/ir.cpp tasks/vs.cpp tasks/cog.cpp tasks/jl.cpp
)
# application header files
SET
(
headers common_obj.h common_fc.h kinematics.h uam_task_ctrl.h tasks/ir.h tasks/vs.h tasks/cog.h tasks/jl.h
)
SET
(
headers common_obj.h common_fc.h kinematics.h uam_task_ctrl.h
)
SET
(
headers_tasks tasks/ir.h tasks/vs.h tasks/cog.h tasks/jl.h
)
# locate the necessary dependencies
...
...
@@ -37,10 +38,11 @@ TARGET_LINK_LIBRARIES(uam_task_ctrl ${EIGEN3_LIBRARY} ${Boost_LIBRARIES})
# link necessary libraries
INSTALL
(
TARGETS uam_task_ctrl
RUNTIME DESTINATION bin
LIBRARY DESTINATION lib/iridrivers
ARCHIVE DESTINATION lib/iridrivers
)
LIBRARY DESTINATION lib/iridrivers
/uam
ARCHIVE DESTINATION lib/iridrivers
/uam
)
INSTALL
(
FILES
${
headers
}
DESTINATION include/iridrivers
)
INSTALL
(
FILES
${
headers
}
DESTINATION include/iridrivers/uam
)
INSTALL
(
FILES
${
headers_tasks
}
DESTINATION include/iridrivers/uam/tasks
)
INSTALL
(
FILES ../Finduam_task_ctrl.cmake DESTINATION
${
CMAKE_ROOT
}
/Modules/
)
...
...
This diff is collapsed.
Click to expand it.
src/kinematics.h
+
2
−
2
View file @
762a62a1
...
...
@@ -18,8 +18,8 @@
#include
<kdl/chainjnttojacsolver.hpp>
// Own stuff
#include
<
common_obj.h
>
#include
<
common_fc.h
>
#include
"
common_obj.h
"
#include
"
common_fc.h
"
namespace
UAM
{
...
...
This diff is collapsed.
Click to expand it.
src/uam_task_ctrl.h
+
3
−
3
View file @
762a62a1
...
...
@@ -29,9 +29,9 @@
#include
<boost/shared_ptr.hpp>
// Own libraries
#include
<
common_fc.h
>
#include
<
common_obj.h
>
#include
<
kinematics.h
>
#include
"
common_fc.h
"
#include
"
common_obj.h
"
#include
"
kinematics.h
"
using
namespace
Eigen
;
using
namespace
KDL
;
...
...
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