forked from gazebosim/gz-common
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Geospatial component for heightmap & DEMs (gazebosim#267)
Signed-off-by: Jenn Nguyen <[email protected]> Co-authored-by: Steve Peters <[email protected]> Co-authored-by: Ian Chen <[email protected]>
- Loading branch information
1 parent
be3aa32
commit 28eb6c7
Showing
17 changed files
with
248 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
|
||
ign_install_all_headers(COMPONENT geospatial) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
|
||
ign_get_libsources_and_unittests(sources gtest_sources) | ||
|
||
ign_add_component(geospatial | ||
SOURCES ${sources} | ||
DEPENDS_ON_COMPONENTS graphics | ||
GET_TARGET_NAME geospatial_target) | ||
|
||
target_link_libraries(${geospatial_target} | ||
PUBLIC | ||
${PROJECT_LIBRARY_TARGET_NAME}-graphics | ||
ignition-math${IGN_MATH_VER}::ignition-math${IGN_MATH_VER} | ||
ignition-utils${IGN_UTILS_VER}::ignition-utils${IGN_UTILS_VER} | ||
PRIVATE | ||
${GDAL_LIBRARY}) | ||
|
||
target_include_directories(${geospatial_target} | ||
PRIVATE | ||
${GDAL_INCLUDE_DIR}) | ||
|
||
ign_build_tests(TYPE UNIT SOURCES ${gtest_sources} | ||
LIB_DEPS ${geospatial_target}) |
Oops, something went wrong.