File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ add_library(star_wars STATIC
13
13
MutationData.cpp
14
14
StarWarsData.cpp )
15
15
target_link_libraries (star_wars PUBLIC learn_schema )
16
- target_include_directories (star_wars PUBLIC star_wars )
17
16
target_include_directories (star_wars INTERFACE ${CMAKE_CURRENT_SOURCE_DIR} )
18
17
19
18
add_executable (learn_star_wars sample.cpp )
Original file line number Diff line number Diff line change @@ -11,14 +11,13 @@ target_link_libraries(client PRIVATE
11
11
proxy_schema
12
12
proxy_client
13
13
graphqljson )
14
- target_include_directories (client PRIVATE
15
- proxy_schema
16
- proxy_client )
14
+ target_include_directories (client SYSTEM PRIVATE ${Boost_INCLUDE_DIR} )
17
15
18
16
add_executable (server server.cpp )
19
17
target_link_libraries (server PRIVATE
20
18
star_wars
21
19
graphqljson )
20
+ target_include_directories (server SYSTEM PRIVATE ${Boost_INCLUDE_DIR} )
22
21
23
22
if (MSVC )
24
23
target_compile_options (client PRIVATE "-wd4702" )
You can’t perform that action at this time.
0 commit comments