Skip to content

Commit

Permalink
fix path search error in build stage (autowarefoundation#45)
Browse files Browse the repository at this point in the history
* fix path search error in build stage

* fix tier4/YabLoc#45 (comment)
  • Loading branch information
comoc authored and KYabuuchi committed May 31, 2023
1 parent f09cba8 commit 8fc58a9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ find_package(Sophus REQUIRED)
# GeographicLib
find_package(PkgConfig)
find_path(GeographicLib_INCLUDE_DIR GeographicLib/Config.h
PAHT_SUFFIXES GeographicLib
PATH_SUFFIXES GeographicLib
)
set(GeographicLib_INCLUDE_DIRS ${GeographicLib_INCLUDE_DIR})
find_library(GeographicLib_LIBRARIES NAMES Geographic)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ find_package(Sophus REQUIRED)
# GeographicLib
find_package(PkgConfig)
find_path(GeographicLib_INCLUDE_DIR GeographicLib/Config.h
PAHT_SUFFIXES GeographicLib
PATH_SUFFIXES GeographicLib
)
set(GeographicLib_INCLUDE_DIRS ${GeographicLib_INCLUDE_DIR})
find_library(GeographicLib_LIBRARIES NAMES Geographic)
Expand Down
2 changes: 1 addition & 1 deletion localization/yabloc/yabloc_common/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ find_package(Sophus REQUIRED)
# GeographicLib
find_package(PkgConfig)
find_path(GeographicLib_INCLUDE_DIR GeographicLib/Config.h
PAHT_SUFFIXES GeographicLib
PATH_SUFFIXES GeographicLib
)
set(GeographicLib_INCLUDE_DIRS ${GeographicLib_INCLUDE_DIR})
find_library(GeographicLib_LIBRARIES NAMES Geographic)
Expand Down

0 comments on commit 8fc58a9

Please sign in to comment.