Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RobotAPI
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lennard Hofmann
RobotAPI
Commits
8b29c86d
Commit
8b29c86d
authored
9 years ago
by
Mirko Wächter
Browse files
Options
Downloads
Patches
Plain Diff
added libraries to DMPComponent
parent
1fb03af6
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
source/RobotAPI/components/DMPComponent/CMakeLists.txt
+13
-7
13 additions, 7 deletions
source/RobotAPI/components/DMPComponent/CMakeLists.txt
with
13 additions
and
7 deletions
source/RobotAPI/components/DMPComponent/CMakeLists.txt
+
13
−
7
View file @
8b29c86d
armarx_component_set_name
(
"DMPComponent"
)
#find_package(MyLib QUIET)
#armarx_build_if(MyLib_FOUND "MyLib not available")
#
find_package
(
DMP QUIET
)
armarx_build_if
(
DMP_FOUND
"MyLib not available"
)
find_package
(
MMMCore QUIET
)
armarx_build_if
(
MMMCore_FOUND
"MMMCore not available"
)
find_package
(
Eigen3 QUIET
)
armarx_build_if
(
Eigen3_FOUND
"Eigen3 not available"
)
# all include_directories must be guarded by if(Xyz_FOUND)
# for multiple libraries write: if(X_FOUND AND Y_FOUND)....
#
if(
MyLib
_FOUND)
#
include_directories(${
MyLib
_INCLUDE_DIRS})
#
endif()
if
(
DMP_FOUND AND MMMCore_FOUND AND Eigen3
_FOUND
)
include_directories
(
${
Eigen3_INCLUDE_DIR
}
${
DMP_INCLUDE_DIRS
}
${
MMMCORE
_INCLUDE_DIRS
}
)
endif
()
set
(
COMPONENT_LIBS ArmarXInterfaces ArmarXCore
)
set
(
COMPONENT_LIBS ArmarXInterfaces ArmarXCore
${
DMP_LIBRARIES
}
${
MMMCORE_LIBRARIES
}
)
set
(
SOURCES
./DMPComponent.cpp
...
...
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