Skip to content

Commit 2ec5669

Browse files
authored
Merge branch 'main' into scpeters/spec_1_10
2 parents 878c442 + 51e19d7 commit 2ec5669

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ if (BUILD_SDF)
5151
# 2. if USE_INTERNAL_URDF is set to True, use the internal copy
5252
# 3. if USE_INTERNAL_URDF is set to False, force to search system installation, fail on error
5353
if (NOT DEFINED USE_INTERNAL_URDF OR NOT USE_INTERNAL_URDF)
54-
gz_find_package(IgnURDFDOM VERSION 1.0 QUIET)
55-
if (NOT IgnURDFDOM_FOUND)
54+
gz_find_package(GzURDFDOM VERSION 1.0 QUIET)
55+
if (NOT GzURDFDOM_FOUND)
5656
if (NOT DEFINED USE_INTERNAL_URDF)
5757
# fallback to internal urdf
5858
set(USE_INTERNAL_URDF ON)

src/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ if (USE_INTERNAL_URDF)
2424
endif()
2525
else()
2626
target_link_libraries(using_parser_urdf INTERFACE
27-
IgnURDFDOM::IgnURDFDOM)
27+
GzURDFDOM::GzURDFDOM)
2828
endif()
2929

3030
if (BUILD_TESTING)

0 commit comments

Comments
 (0)