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
Commits
493f0655
Commit
493f0655
authored
3 years ago
by
Joan Vallvé Navarro
Browse files
Options
Downloads
Patches
Plain Diff
commented out some cmake debugging
parent
fb412e58
No related branches found
No related tags found
1 merge request
!8
Cmake refactoring was merged to main, merge back to devel also
Pipeline
#11225
passed
3 years ago
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CMakeLists.txt
+9
-8
9 additions, 8 deletions
CMakeLists.txt
with
9 additions
and
8 deletions
CMakeLists.txt
+
9
−
8
View file @
493f0655
...
...
@@ -55,18 +55,19 @@ pkg_check_modules(csm QUIET csm )
link_directories
(
${
csm_LIBRARY_DIRS
}
)
if
(
csm_FOUND
)
if
(
NOT csm_LIBRARY_DIRS
)
message
(
"csm_LIBRARY_DIRS is empty"
)
message
(
"csm_LIBRARY_DIRS is empty"
)
else
()
# keep only the files in a lib folder: by default the "." is in csm_LIBRARY_DIRS,
# which is not acceptable for target_link_directories
message
(
csm_LIBRARY_DIRS:
)
foreach
(
my_entry IN LISTS csm_LIBRARY_DIRS
)
message
(
"
csm_LIBRARY_DIRS has
${
my_entry
}
"
)
endforeach
()
#
message(
"
csm_LIBRARY_DIRS:
"
)
#
foreach (my_entry IN LISTS csm_LIBRARY_DIRS)
#
message("
${my_entry}")
#
endforeach()
list
(
FILTER csm_LIBRARY_DIRS INCLUDE REGEX
"lib"
)
foreach
(
my_entry IN LISTS csm_LIBRARY_DIRS
)
message
(
"csm_LIBRARY_DIRS has
${
my_entry
}
"
)
endforeach
()
# message("after filtering csm_LIBRARY_DIRS:")
# foreach (my_entry IN LISTS csm_LIBRARY_DIRS)
# message(" ${my_entry}")
# endforeach()
endif
()
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