Skip to content

Commit

Permalink
Add explicit catch2 dependency for tests
Browse files Browse the repository at this point in the history
When I try to build the dev branch using the docker builder, the tests
target isn't properly checking out and building catch2 for the
dependency catch2.hpp. Adding this explicit dependency allowed the build
to succeed.
  • Loading branch information
mstemm committed Oct 7, 2019
1 parent 2bc4bfd commit f0a169d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ if(FALCO_BUILD_TESTS)
"${YAMLCPP_INCLUDE_DIR}"
"${CIVETWEB_INCLUDE_DIR}"
"${PROJECT_SOURCE_DIR}/userspace/falco")
add_dependencies(falco_test catch2)

include(CMakeParseArguments)
include(CTest)
Expand Down

0 comments on commit f0a169d

Please sign in to comment.