Skip to content
Snippets Groups Projects
Commit c51be3bd authored by Oliver Sander's avatar Oliver Sander
Browse files

Bugfix: set the compiler flags of complexrhstest even if SuperLU wasn't found

Because otherwise the test won't compile if SuperLU is not installed.

[[Imported from SVN: r1682]]
parent af5babce
No related branches found
No related tags found
No related merge requests found
......@@ -55,10 +55,6 @@ if SUPERLU
overlappingschwarztest_LDADD= $(SUPERLU_LIBS)
overlappingschwarztest_LDFLAGS= $(AM_LDFLAGS) $(SUPERLU_LDFLAGS)
overlappingschwarztest_CPPFLAGS=$(AM_CPPFLAGS) $(SUPERLU_CPPFLAGS)
complexrhstest_LDADD= $(SUPERLU_LIBS)
complexrhstest_LDFLAGS= $(AM_LDFLAGS) $(SUPERLU_LDFLAGS)
complexrhstest_CPPFLAGS=$(AM_CPPFLAGS) $(SUPERLU_CPPFLAGS) -DSUPERLU_NTYPE=3
endif
......@@ -75,6 +71,9 @@ bcrsbuildtest_SOURCES = bcrsbuild.cc
bvectortest_SOURCES = bvectortest.cc
complexrhstest_SOURCES = complexrhstest.cc laplacian.hh
complexrhstest_LDADD= $(SUPERLU_LIBS)
complexrhstest_LDFLAGS= $(AM_LDFLAGS) $(SUPERLU_LDFLAGS)
complexrhstest_CPPFLAGS=$(AM_CPPFLAGS) $(SUPERLU_CPPFLAGS) -DSUPERLU_NTYPE=3
dotproducttest_SOURCES = dotproducttest.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