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
Merge requests
!24
Resolve "cmake: remove iri-algorithms from include install path"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "cmake: remove iri-algorithms from include install path"
20-cmake-remove-iri-algorithms-from-include-install-path
into
devel
Overview
0
Commits
2
Pipelines
3
Changes
1
Merged
Mederic Fourmy
requested to merge
20-cmake-remove-iri-algorithms-from-include-install-path
into
devel
3 years ago
Overview
0
Commits
2
Pipelines
3
Changes
1
Expand
Closes
#20 (closed)
Edited
3 years ago
by
Mederic Fourmy
0
0
Merge request reports
Viewing commit
7feb4914
Prev
Next
Show latest version
1 file
+
0
−
37
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
7feb4914
Remove useless Find...cmake file
· 7feb4914
Mederic Fourmy
authored
3 years ago
Findgnss_utils.cmake deleted
100644 → 0
+
0
−
37
Options
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
)
Loading