Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
wolf_ros_laser
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor 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
mobile_robotics
wolf_projects
wolf_ros
wolf_ros_laser
Commits
99e51b3c
Commit
99e51b3c
authored
3 years ago
by
Joan Vallvé Navarro
Browse files
Options
Downloads
Patches
Plain Diff
still debuging
parent
d32449ed
No related branches found
Branches containing commit
No related tags found
2 merge requests
!6
After cmake and const refactor
,
!5
Resolve "Adapt to core cmake refactor"
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CMakeLists.txt
+7
-6
7 additions, 6 deletions
CMakeLists.txt
with
7 additions
and
6 deletions
CMakeLists.txt
+
7
−
6
View file @
99e51b3c
...
...
@@ -20,9 +20,9 @@ find_package(catkin REQUIRED COMPONENTS
## System dependencies are found with CMake's conventions
find_package
(
wolfcore REQUIRED
)
find_package
(
wolflaser REQUIRED
)
find_package
(
falkolib QUIET
)
find_package
(
PkgConfig
)
pkg_check_modules
(
csm QUIET csm
)
#
find_package(falkolib QUIET)
#
find_package(PkgConfig)
#
pkg_check_modules(csm QUIET csm)
# link_directories(${csm_LIBRARY_DIRS})
# produces the XXXConfig.cmake file among other things
...
...
@@ -51,13 +51,14 @@ add_library(subscriber_${PROJECT_NAME}
${
CMAKE_CURRENT_SOURCE_DIR
}
/src/subscriber_laser2d.cpp
)
if
(
falkolib_FOUND
)
message
(
"Found Falkolib. Compiling publisher_falko."
)
find_file
(
FALKO laser/processor/processor_loop_cosure_falko.h wolflaser_INCLUDE_DIRS
)
if
(
FALKO
)
message
(
"Found 'processor_loop_cosure_falko.h'. Compiling publisher_falko."
)
target_sources
(
publisher_
${
PROJECT_NAME
}
PUBLIC
${
CMAKE_CURRENT_SOURCE_DIR
}
/src/publisher_falko.cpp
)
endif
()
find_file
(
ICP laser/processor/processor_odom_icp.h wolflaser_INCLUDE_DIRS
)
if
(
NOT
ICP
)
if
(
ICP
)
message
(
"Found 'processor_odom_icp.h'. Compiling publisher_odom_icp."
)
target_sources
(
publisher_
${
PROJECT_NAME
}
PUBLIC
${
CMAKE_CURRENT_SOURCE_DIR
}
/src/publisher_odom_icp.cpp
)
endif
()
...
...
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