Skip to content
Snippets Groups Projects
Commit 8d142219 authored by Jorrit Fahlke's avatar Jorrit Fahlke
Browse files

Only append to CPPFLAGS

Otherwise, the tests will just fail to compile because of missing headers

Author: Elias Pipping <pipping@exherbo.org>

[[Imported from SVN: r6552]]
parent fd405001
No related branches found
No related tags found
No related merge requests found
......@@ -159,10 +159,10 @@ fmatrixtest_LDADD = $(LAPACK_LIBS) $(LDADD)
fvectortest_SOURCES = fvectortest.cc
check_fvector_size_fail1_SOURCES = check_fvector_size_fail.cc
check_fvector_size_fail1_CPPFLAGS = -DDIM=1
check_fvector_size_fail1_CPPFLAGS = $(AM_CPPFLAGS) -DDIM=1
check_fvector_size_fail2_SOURCES = check_fvector_size_fail.cc
check_fvector_size_fail2_CPPFLAGS = -DDIM=3
check_fvector_size_fail2_CPPFLAGS = $(AM_CPPFLAGS) -DDIM=3
check_fvector_size_SOURCES = check_fvector_size.cc
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment