Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
gnss_utils
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
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
gnss_utils
Commits
7feb4914
Commit
7feb4914
authored
3 years ago
by
Mederic Fourmy
Browse files
Options
Downloads
Patches
Plain Diff
Remove useless Find...cmake file
parent
82e1fa6c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!26
cmake fixes
,
!24
Resolve "cmake: remove iri-algorithms from include install path"
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Findgnss_utils.cmake
+0
-37
0 additions, 37 deletions
Findgnss_utils.cmake
with
0 additions
and
37 deletions
Findgnss_utils.cmake
deleted
100644 → 0
+
0
−
37
View file @
82e1fa6c
FIND_PATH
(
gnss_utils_INCLUDE_DIRS
NAMES gnss_utils/gnss_utils.h
PATHS /usr/local/include/iri-algorithms
)
IF
(
gnss_utils_INCLUDE_DIRS
)
MESSAGE
(
"Found gnss_utils include dirs:
${
gnss_utils_INCLUDE_DIRS
}
"
)
ELSE
(
gnss_utils_INCLUDE_DIRS
)
MESSAGE
(
"Couldn't find gnss_utils include dirs"
)
ENDIF
(
gnss_utils_INCLUDE_DIRS
)
FIND_LIBRARY
(
gnss_utils_LIBRARIES
NAMES libgnss_utils.so libgnss_utils.dylib
PATHS /usr/local/lib/iri-algorithms
)
IF
(
gnss_utils_LIBRARIES
)
MESSAGE
(
"Found gnss_utils lib:
${
gnss_utils_LIBRARIES
}
"
)
ELSE
(
gnss_utils_LIBRARIES
)
MESSAGE
(
"Couldn't find gnss_utils lib"
)
ENDIF
(
gnss_utils_LIBRARIES
)
IF
(
gnss_utils_INCLUDE_DIRS AND gnss_utils_LIBRARIES
)
SET
(
gnss_utils_FOUND TRUE
)
SET
(
gnss_utils_INCLUDE_DIR
${
gnss_utils_INCLUDE_DIRS
}
)
SET
(
gnss_utils_LIBRARY
${
gnss_utils_LIBRARIES
}
)
ELSE
(
gnss_utils_INCLUDE_DIRS AND gnss_utils_LIBRARIES
)
set
(
gnss_utils_FOUND FALSE
)
ENDIF
(
gnss_utils_INCLUDE_DIRS AND gnss_utils_LIBRARIES
)
IF
(
gnss_utils_FOUND
)
IF
(
NOT gnss_utils_FIND_QUIETLY
)
MESSAGE
(
STATUS
"Found gnss_utils:
${
gnss_utils_LIBRARIES
}
"
)
ENDIF
(
NOT gnss_utils_FIND_QUIETLY
)
ELSE
(
gnss_utils_FOUND
)
IF
(
gnss_utils_FIND_REQUIRED
)
MESSAGE
(
FATAL_ERROR
"Could not find gnss_utils"
)
ENDIF
(
gnss_utils_FIND_REQUIRED
)
ENDIF
(
gnss_utils_FOUND
)
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