Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
gnss
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor 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
mobile_robotics
wolf_projects
wolf_lib
plugins
gnss
Merge requests
!24
Resolve "Change destination of libxxx.so for WOLF and dependencies"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Change destination of libxxx.so for WOLF and dependencies"
19-change-destination-of-libxxx-so-for-wolf-and-dependencies
into
devel
Overview
0
Commits
2
Pipelines
0
Changes
2
Merged
Joan Vallvé Navarro
requested to merge
19-change-destination-of-libxxx-so-for-wolf-and-dependencies
into
devel
3 years ago
Overview
0
Commits
2
Pipelines
0
Changes
2
Expand
Closes
#19 (closed)
Edited
3 years ago
by
Joan Vallvé Navarro
0
0
Merge request reports
Compare
devel
version 1
d2fb47f8
3 years ago
devel (base)
and
latest version
latest version
2543be67
2 commits,
3 years ago
version 1
d2fb47f8
1 commit,
3 years ago
2 files
+
14
−
105
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
cmake_modules/wolfgnssConfig.cmake
+
7
−
2
Options
@@ -12,7 +12,7 @@ ENDIF(wolfgnss_INCLUDE_DIRS)
FIND_LIBRARY
(
wolfgnss_LIBRARIES
NAMES libwolfgnss.so
PATHS /usr/local/lib
/iri-algorithms
)
PATHS /usr/local/lib
)
IF
(
wolfgnss_LIBRARIES
)
MESSAGE
(
"Found gnss lib:
${
wolfgnss_LIBRARIES
}
"
)
ELSE
(
wolfgnss_LIBRARIES
)
@@ -80,4 +80,9 @@ if(NOT wolf_FOUND)
list
(
REVERSE wolfgnss_LIBRARIES
)
list
(
APPEND wolfgnss_LIBRARIES
${
wolfcore_LIBRARIES
}
)
list
(
REVERSE wolfgnss_LIBRARIES
)
endif
()
\ No newline at end of file
endif
()
# provide both INCLUDE_DIR and INCLUDE_DIRS
SET
(
wolfgnss_INCLUDE_DIR
${
wolfgnss_INCLUDE_DIRS
}
)
# provide both LIBRARY and LIBRARIES
SET
(
wolfgnss_LIBRARY
${
wolfgnss_LIBRARIES
}
)
\ No newline at end of file
Loading