Skip to content

Commit 2daf84b

Browse files
authored
Fix case of RapidJSON on cmake files (#82)
1 parent a237aea commit 2daf84b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

CMakeLists.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@ add_subdirectory(GLTFSDK)
5353

5454
if(RapidJSON_FOUND)
5555
target_include_directories(GLTFSDK
56-
PUBLIC $<BUILD_INTERFACE:${RAPIDJSON_INCLUDE_DIRS}>
56+
PUBLIC $<BUILD_INTERFACE:${RapidJSON_INCLUDE_DIRS}>
5757
)
5858
elseif(TARGET RapidJSON)
59-
get_target_property(RAPIDJSON_INCLUDE_DIRS RapidJSON INTERFACE_INCLUDE_DIRECTORIES)
59+
get_target_property(RapidJSON_INCLUDE_DIRS RapidJSON INTERFACE_INCLUDE_DIRECTORIES)
6060
target_include_directories(GLTFSDK
61-
PUBLIC $<BUILD_INTERFACE:${RAPIDJSON_INCLUDE_DIRS}>
61+
PUBLIC $<BUILD_INTERFACE:${RapidJSON_INCLUDE_DIRS}>
6262
)
6363
endif()
6464

0 commit comments

Comments
 (0)