diff options
author | Tavian Barnes <tavianator@gmail.com> | 2010-10-19 01:12:57 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2010-10-19 01:12:57 -0400 |
commit | c01880ba9cfdeb2677eee9b92ee10507070eb86e (patch) | |
tree | b5f8ad7208414d17781c3e4771c1b58c44def78b /tests/Makefile.am | |
parent | 2829763fc5f9d222a966402bf073083dbc1da51c (diff) | |
download | vz-c01880ba9cfdeb2677eee9b92ee10507070eb86e.tar.xz |
Support std::complex<T>.
Diffstat (limited to 'tests/Makefile.am')
-rw-r--r-- | tests/Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index 2091b15..52e3064 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -30,7 +30,8 @@ check_PROGRAMS = Euler-test \ DP45-test \ Vector-test \ EquationSystem-test \ - EquationSystem-Vector-test + EquationSystem-Vector-test \ + Complex-test TESTS = $(check_PROGRAMS) Euler_test_SOURCES = Euler.cpp @@ -45,3 +46,4 @@ DP45_test_SOURCES = DP45.cpp Vector_test_SOURCES = Vector.cpp EquationSystem_test_SOURCES = EquationSystem.cpp EquationSystem_Vector_test_SOURCES = EquationSystem-Vector.cpp +Complex_test_SOURCES = Complex.cpp |