Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
coal
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
Coal
coal
Commits
6c5c5be1
Commit
6c5c5be1
authored
1 year ago
by
Guilhem Saurel
Browse files
Options
Downloads
Patches
Plain Diff
CMake: improve status messages
parent
df15b8f8
No related branches found
No related tags found
No related merge requests found
Pipeline
#33006
passed
1 year ago
Stage: test
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CMakeLists.txt
+3
-2
3 additions, 2 deletions
CMakeLists.txt
with
3 additions
and
2 deletions
CMakeLists.txt
+
3
−
2
View file @
6c5c5be1
...
@@ -138,10 +138,10 @@ if(octomap_FOUND)
...
@@ -138,10 +138,10 @@ if(octomap_FOUND)
list
(
GET VERSION_LIST 0 OCTOMAP_MAJOR_VERSION
)
list
(
GET VERSION_LIST 0 OCTOMAP_MAJOR_VERSION
)
list
(
GET VERSION_LIST 1 OCTOMAP_MINOR_VERSION
)
list
(
GET VERSION_LIST 1 OCTOMAP_MINOR_VERSION
)
list
(
GET VERSION_LIST 2 OCTOMAP_PATCH_VERSION
)
list
(
GET VERSION_LIST 2 OCTOMAP_PATCH_VERSION
)
message
(
STATUS
"FCL uses Octomap"
)
message
(
STATUS
"
HPP-
FCL uses Octomap"
)
else
()
else
()
SET
(
HPP_FCL_HAS_OCTOMAP FALSE
)
SET
(
HPP_FCL_HAS_OCTOMAP FALSE
)
message
(
STATUS
"FCL does not use Octomap"
)
message
(
STATUS
"
HPP-
FCL does not use Octomap"
)
endif
()
endif
()
option
(
HPP_FCL_HAS_QHULL
"use qhull library to compute convex hulls."
FALSE
)
option
(
HPP_FCL_HAS_QHULL
"use qhull library to compute convex hulls."
FALSE
)
...
@@ -149,6 +149,7 @@ if(HPP_FCL_HAS_QHULL)
...
@@ -149,6 +149,7 @@ if(HPP_FCL_HAS_QHULL)
find_package
(
Qhull COMPONENTS qhull_r qhullcpp
)
find_package
(
Qhull COMPONENTS qhull_r qhullcpp
)
if
(
Qhull_FOUND
)
if
(
Qhull_FOUND
)
set
(
HPP_FCL_USE_SYSTEM_QHULL TRUE
)
set
(
HPP_FCL_USE_SYSTEM_QHULL TRUE
)
message
(
STATUS
"HPP-FCL uses system Qhull"
)
else
()
else
()
message
(
STATUS
"Qhullcpp not found: it will be build from sources, if Qhull_r is found"
)
message
(
STATUS
"Qhullcpp not found: it will be build from sources, if Qhull_r is found"
)
file
(
MAKE_DIRECTORY
${
CMAKE_CURRENT_BINARY_DIR
}
/third-parties
)
file
(
MAKE_DIRECTORY
${
CMAKE_CURRENT_BINARY_DIR
}
/third-parties
)
...
...
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