diff options
-rw-r--r-- | volk/lib/Makefile.am | 2 | ||||
-rw-r--r-- | volk/lib/testqa.cc | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/volk/lib/Makefile.am b/volk/lib/Makefile.am index afd29a352..6f3d7fd86 100644 --- a/volk/lib/Makefile.am +++ b/volk/lib/Makefile.am @@ -120,7 +120,7 @@ noinst_PROGRAMS = \ testqa testqa_SOURCES = testqa.cc qa_utils.cc -testqa_CPPFLAGS = -DBOOST_TEST_DYN_LINK -DBOOST_TEST_MAIN +testqa_CPPFLAGS = -DBOOST_TEST_DYN_LINK -DBOOST_TEST_MAIN $(AM_CPPFLAGS) testqa_LDFLAGS = $(BOOST_UNIT_TEST_FRAMEWORK_LIB) if LV_HAVE_ORC testqa_LDADD = \ diff --git a/volk/lib/testqa.cc b/volk/lib/testqa.cc index d6b9e347d..e9734411b 100644 --- a/volk/lib/testqa.cc +++ b/volk/lib/testqa.cc @@ -1,6 +1,6 @@ #include "qa_utils.h" -#include "../include/volk/volk.h" -#include "../include/volk/volk_registry.h" +#include <volk/volk.h> +#include <volk/volk_registry.h> #include <boost/test/unit_test.hpp> BOOST_AUTO_TEST_CASE(volk_test_all) { |