-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #584 from gazebosim/merge_5_main_20240313
Merge 5 -> main
- Loading branch information
Showing
24 changed files
with
463 additions
and
66 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,4 +14,3 @@ jobs: | |
with: | ||
project-url: https://github.com/orgs/gazebosim/projects/7 | ||
github-token: ${{ secrets.TRIAGE_TOKEN }} | ||
|
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 |
---|---|---|
@@ -1,24 +1,27 @@ | ||
gz_get_libsources_and_unittests(sources gtest_sources) | ||
if (TARGET ${PROJECT_LIBRARY_TARGET_NAME}-graphics) | ||
gz_get_libsources_and_unittests(sources gtest_sources) | ||
gz_add_component(geospatial | ||
SOURCES ${sources} | ||
DEPENDS_ON_COMPONENTS graphics | ||
GET_TARGET_NAME geospatial_target) | ||
|
||
gz_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 | ||
gz-math${GZ_MATH_VER}::gz-math${GZ_MATH_VER} | ||
gz-utils${GZ_UTILS_VER}::gz-utils${GZ_UTILS_VER} | ||
PRIVATE | ||
${GDAL_LIBRARY}) | ||
|
||
target_link_libraries(${geospatial_target} | ||
PUBLIC | ||
${PROJECT_LIBRARY_TARGET_NAME}-graphics | ||
gz-math${GZ_MATH_VER}::gz-math${GZ_MATH_VER} | ||
gz-utils${GZ_UTILS_VER}::gz-utils${GZ_UTILS_VER} | ||
PRIVATE | ||
${GDAL_LIBRARY}) | ||
target_include_directories(${geospatial_target} | ||
PRIVATE | ||
${GDAL_INCLUDE_DIR}) | ||
|
||
target_include_directories(${geospatial_target} | ||
PRIVATE | ||
${GDAL_INCLUDE_DIR}) | ||
|
||
gz_build_tests(TYPE UNIT SOURCES ${gtest_sources} | ||
LIB_DEPS | ||
${geospatial_target} | ||
gz-common${GZ_COMMON_VER}-testing | ||
) | ||
gz_build_tests(TYPE UNIT SOURCES ${gtest_sources} | ||
LIB_DEPS | ||
${geospatial_target} | ||
gz-common${GZ_COMMON_VER}-testing | ||
) | ||
else() | ||
message(WARNING "Skipping component [geospatial]: Missing component [graphics].\n ^~~~~ Set SKIP_geospatial=true in cmake to suppress this warning.") | ||
endif() |
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
Oops, something went wrong.