Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
laser_scan_utils
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
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
labrobotica
algorithms
laser_scan_utils
Merge requests
!7
Resolve "Adapt to core CMakeLists.txt refactor"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Adapt to core CMakeLists.txt refactor"
28-adapt-to-core-cmakelists-txt-refactor
into
main
Overview
1
Commits
22
Pipelines
22
Changes
1
Merged
Mederic Fourmy
requested to merge
28-adapt-to-core-cmakelists-txt-refactor
into
main
3 years ago
Overview
1
Commits
22
Pipelines
22
Changes
1
Expand
Closes
#28 (closed)
Edited
3 years ago
by
Joan Vallvé Navarro
0
0
Merge request reports
Viewing commit
e3ab8557
Prev
Next
Show latest version
1 file
+
0
−
28
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
e3ab8557
remove the useless cmake file
· e3ab8557
Mederic Fourmy
authored
3 years ago
Findlaser_scan_utils.cmake deleted
100644 → 0
+
0
−
28
Options
FIND_PATH
(
laser_scan_utils_INCLUDE_DIRS
NAMES laser_scan_utils.h
PATHS /usr/local/include/iri-algorithms/laser_scan_utils
)
#change INCLUDE_DIRS to its parent directory
get_filename_component
(
laser_scan_utils_INCLUDE_DIRS
${
laser_scan_utils_INCLUDE_DIRS
}
DIRECTORY
)
FIND_LIBRARY
(
laser_scan_utils_LIBRARY
NAMES laser_scan_utils
PATHS /usr/lib /usr/local/lib
)
IF
(
laser_scan_utils_INCLUDE_DIRS AND laser_scan_utils_LIBRARY
)
SET
(
laser_scan_utils_FOUND TRUE
)
SET
(
laser_scan_utils_INCLUDE_DIR
${
laser_scan_utils_INCLUDE_DIRS
}
)
SET
(
laser_scan_utils_LIBRARIES
${
laser_scan_utils_LIBRARY
}
)
ENDIF
(
laser_scan_utils_INCLUDE_DIRS AND laser_scan_utils_LIBRARY
)
IF
(
laser_scan_utils_FOUND
)
IF
(
NOT laser_scan_utils_FIND_QUIETLY
)
MESSAGE
(
STATUS
"Found laser_scan_utils:
${
laser_scan_utils_LIBRARY
}
"
)
ENDIF
(
NOT laser_scan_utils_FIND_QUIETLY
)
ELSE
(
laser_scan_utils_FOUND
)
IF
(
laser_scan_utils_FIND_REQUIRED
)
MESSAGE
(
FATAL_ERROR
"Could not find laser_scan_utils"
)
ENDIF
(
laser_scan_utils_FIND_REQUIRED
)
ENDIF
(
laser_scan_utils_FOUND
)
Loading