Skip to content

Commit 3a9b2f6

Browse files
committed
Add graphqlservice_nointrospection.dll to dependencies
1 parent 2275bbd commit 3a9b2f6

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

samples/CMakeLists.txt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,12 @@ if(WIN32 AND BUILD_SHARED_LIBS)
180180
$<TARGET_FILE:graphqlresponse>
181181
${CMAKE_CURRENT_BINARY_DIR}
182182
COMMAND ${CMAKE_COMMAND} -E touch copied_sample_dlls
183-
DEPENDS graphqlservice graphqljson graphqlpeg graphqlresponse)
183+
DEPENDS
184+
graphqlservice_nointrospection
185+
graphqlservice
186+
graphqljson
187+
graphqlpeg
188+
graphqlresponse)
184189

185190
add_custom_target(copy_sample_dlls DEPENDS copied_sample_dlls)
186191

test/CMakeLists.txt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,12 @@ if(WIN32 AND BUILD_SHARED_LIBS)
7070
$<TARGET_FILE:graphqlresponse>
7171
${CMAKE_CURRENT_BINARY_DIR}
7272
COMMAND ${CMAKE_COMMAND} -E touch ${CMAKE_CURRENT_BINARY_DIR}/copied_test_dlls
73-
DEPENDS graphqlservice graphqljson graphqlpeg graphqlresponse
73+
DEPENDS
74+
graphqlservice_nointrospection
75+
graphqlservice
76+
graphqljson
77+
graphqlpeg
78+
graphqlresponse)
7479
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/../src)
7580

7681
add_custom_target(copy_test_dlls DEPENDS copied_test_dlls)

0 commit comments

Comments
 (0)