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
1313 MutationData.cpp
1414 StarWarsData.cpp)
1515target_link_libraries (star_wars PUBLIC learn_schema)
16- target_include_directories (star_wars PUBLIC star_wars)
1716target_include_directories (star_wars INTERFACE ${CMAKE_CURRENT_SOURCE_DIR} )
1817
1918add_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
1111 proxy_schema
1212 proxy_client
1313 graphqljson)
14- target_include_directories (client PRIVATE
15- proxy_schema
16- proxy_client)
14+ target_include_directories (client SYSTEM PRIVATE ${Boost_INCLUDE_DIR} )
1715
1816add_executable (server server.cpp)
1917target_link_libraries (server PRIVATE
2018 star_wars
2119 graphqljson)
20+ target_include_directories (server SYSTEM PRIVATE ${Boost_INCLUDE_DIR} )
2221
2322if (MSVC )
2423 target_compile_options (client PRIVATE "-wd4702" )
You can’t perform that action at this time.
0 commit comments