fix: boost's include dir was listed first (#2384)

This commit is contained in:
Henry Schreiner
2020-08-12 09:33:08 -04:00
committed by GitHub
parent 173204639e
commit f7abac6689
2 changed files with 3 additions and 3 deletions

View File

@@ -14,7 +14,7 @@ else()
endif()
add_executable(test_embed catch.cpp test_interpreter.cpp)
target_include_directories(test_embed PRIVATE "${CATCH_INCLUDE_DIR}")
target_include_directories(test_embed SYSTEM PRIVATE "${CATCH_INCLUDE_DIR}")
pybind11_enable_warnings(test_embed)
target_link_libraries(test_embed PRIVATE pybind11::embed)