File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -88,6 +88,7 @@ target_sources(graphql_internal_modules PUBLIC FILE_SET HEADERS
88
88
FILES
89
89
${INCLUDE_ROOT} /graphqlservice/internal/Awaitable.h
90
90
${INCLUDE_ROOT} /graphqlservice/internal/Base64.h
91
+ ${INCLUDE_ROOT} /graphqlservice/internal/DllExports.h
91
92
${INCLUDE_ROOT} /graphqlservice/internal/Grammar.h
92
93
${INCLUDE_ROOT} /graphqlservice/internal/Introspection.h
93
94
${INCLUDE_ROOT} /graphqlservice/internal/Schema.h
@@ -389,9 +390,10 @@ endif()
389
390
390
391
if (GRAPHQL_USE_TAOCPP_JSON )
391
392
find_package (taocpp-json CONFIG REQUIRED )
393
+ get_target_property (TAOCPP_JSON_INCLUDE_DIRS taocpp::json INTERFACE_INCLUDE_DIRECTORIES )
392
394
set (BUILD_GRAPHQLJSON ON )
393
395
add_library (graphqljson TaoCppJSONResponse.cpp )
394
- target_link_libraries (graphqljson PRIVATE taocpp::json )
396
+ target_include_directories (graphqljson PRIVATE ${TAOCPP_JSON_INCLUDE_DIRS} )
395
397
elseif (GRAPHQL_USE_RAPIDJSON )
396
398
find_package (RapidJSON CONFIG REQUIRED )
397
399
set (BUILD_GRAPHQLJSON ON )
You can’t perform that action at this time.
0 commit comments