diff options
author | Adam Moss <moss@lindenlab.com> | 2009-10-08 12:50:02 +0000 |
---|---|---|
committer | Adam Moss <moss@lindenlab.com> | 2009-10-08 12:50:02 +0000 |
commit | cb70d7e8489dbfa384bb8cfa08dd187032f2795f (patch) | |
tree | 0f566d15412e983f4b90b1718d59bea56a074064 /indra/llmath/CMakeLists.txt | |
parent | 256700f1092017a063ccd48ca50f3cd1098a5c2a (diff) |
DEV-41087 more llmath test conversions from legacy tut tests.
Diffstat (limited to 'indra/llmath/CMakeLists.txt')
-rw-r--r-- | indra/llmath/CMakeLists.txt | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/indra/llmath/CMakeLists.txt b/indra/llmath/CMakeLists.txt index 890288936f..11a7f66ebb 100644 --- a/indra/llmath/CMakeLists.txt +++ b/indra/llmath/CMakeLists.txt @@ -92,13 +92,15 @@ SET(llmath_TEST_SOURCE_FILES LL_ADD_PROJECT_UNIT_TESTS(llmath "${llmath_TEST_SOURCE_FILES}") set(test_libs llmath llcommon ${LLCOMMON_LIBRARIES} ${WINDOWS_LIBRARIES}) -LL_ADD_INTEGRATION_TEST(v2math v2math.cpp "${test_libs}") -LL_ADD_INTEGRATION_TEST(v3math v3math.cpp "${test_libs}") -LL_ADD_INTEGRATION_TEST(xform xform.cpp "${test_libs}") +# some of these are probably pretty decent *unit* tests rather than integration tests, but I have to work out a CMake whining puzzle. LL_ADD_INTEGRATION_TEST(llbbox llbbox.cpp "${test_libs}") LL_ADD_INTEGRATION_TEST(llbboxlocal llbboxlocal.cpp "${test_libs}") +LL_ADD_INTEGRATION_TEST(llquaternion llquaternion.cpp "${test_libs}") +LL_ADD_INTEGRATION_TEST(v2math v2math.cpp "${test_libs}") LL_ADD_INTEGRATION_TEST(v3color v3color.cpp "${test_libs}") LL_ADD_INTEGRATION_TEST(v3dmath v3dmath.cpp "${test_libs}") +LL_ADD_INTEGRATION_TEST(v3math v3math.cpp "${test_libs}") LL_ADD_INTEGRATION_TEST(v4color v4color.cpp "${test_libs}") LL_ADD_INTEGRATION_TEST(v4coloru v4coloru.cpp "${test_libs}") LL_ADD_INTEGRATION_TEST(v4math v4math.cpp "${test_libs}") +LL_ADD_INTEGRATION_TEST(xform xform.cpp "${test_libs}") |