cmake: Add CxxTest include directory to unit test includes. (#2642)
authorMathias Preiner <mathias.preiner@gmail.com>
Tue, 16 Oct 2018 19:24:12 +0000 (12:24 -0700)
committerAndrew Reynolds <andrew.j.reynolds@gmail.com>
Tue, 16 Oct 2018 19:24:12 +0000 (14:24 -0500)
test/unit/CMakeLists.txt

index 7c8e3d766802f821664389548182a835951a4b2d..4ba7205a5c2448bbf6df7de4c70dbef519c938d7 100644 (file)
@@ -49,6 +49,7 @@ macro(cvc4_add_unit_test is_white name output_dir)
   # As a consequence, all build target names must be globally unique.
   add_executable(${name} ${test_src} ${test_header})
   target_link_libraries(${name} main-test)
+  target_include_directories(${name} PRIVATE ${CxxTest_INCLUDE_DIR})
   target_compile_definitions(${name} PRIVATE ${CVC4_CXXTEST_FLAGS_BLACK})
   if(${is_white})
     target_compile_options(${name} PRIVATE -fno-access-control)