-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Be louder when graphics is missing for geospatial (#573)
Signed-off-by: Michael Carroll <[email protected]>
- Loading branch information
Showing
2 changed files
with
25 additions
and
22 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 |
---|---|---|
@@ -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() |