Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
E
eigenpy
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
eigenpy
Commits
8ba32fee
Verified
Commit
8ba32fee
authored
5 years ago
by
Justin Carpentier
Browse files
Options
Downloads
Patches
Plain Diff
package: remove manual generation of eigenpyConfig.cmake
parent
16b247f0
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
CMakeLists.txt
+0
-4
0 additions, 4 deletions
CMakeLists.txt
eigenpyConfig.cmake
+0
-14
0 additions, 14 deletions
eigenpyConfig.cmake
with
0 additions
and
18 deletions
CMakeLists.txt
+
0
−
4
View file @
8ba32fee
...
...
@@ -157,10 +157,6 @@ INSTALL(FILES
${
CMAKE_CURRENT_BINARY_DIR
}
/eigenpy/
${
PROJECT_NAME
}
_export.h
DESTINATION include/eigenpy
)
# This is a temporary work-around to fix MoveIt until jrl-cmakemodules
# can correctly create non-target CMake configs
install
(
FILES eigenpyConfig.cmake DESTINATION share/eigenpy/cmake
)
# Install package for ROS
install
(
FILES package.xml DESTINATION share/eigenpy
)
...
...
This diff is collapsed.
Click to expand it.
eigenpyConfig.cmake
deleted
100644 → 0
+
0
−
14
View file @
16b247f0
cmake_minimum_required
(
VERSION 2.8.3
)
message
(
STATUS
"Loading eigenpy from PkgConfig"
)
find_package
(
PkgConfig REQUIRED
)
pkg_check_modules
(
eigenpy REQUIRED eigenpy
)
# find absolute library paths for all eigenpy_LIBRARIES
set
(
libs
${
eigenpy_LIBRARIES
}
)
set
(
eigenpy_LIBRARIES
""
)
foreach
(
lib
${
libs
}
)
find_library
(
abs_lib_
${
lib
}
${
lib
}
HINTS
${
eigenpy_LIBRARY_DIRS
}
)
list
(
APPEND eigenpy_LIBRARIES
"
${
abs_lib_
${
lib
}}
"
)
endforeach
()
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