summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorBryan O'Sullivan <bos@lindenlab.com>2009-06-22 16:05:57 -0700
committerBryan O'Sullivan <bos@lindenlab.com>2009-06-22 16:05:57 -0700
commit5d7992d249936ea2d1c7465d4fdbddd5e2bb9f43 (patch)
tree3ab8901894fc4259f7b1023cd94fe5d13e49b04e /indra
parent1454c32dc0c5c99b3efb27be2306e0e06e433121 (diff)
Switch to new unit test infrastructure
Diffstat (limited to 'indra')
-rw-r--r--indra/viewer_components/login/CMakeLists.txt8
1 files changed, 7 insertions, 1 deletions
diff --git a/indra/viewer_components/login/CMakeLists.txt b/indra/viewer_components/login/CMakeLists.txt
index 434b58f5c7..e052d133cf 100644
--- a/indra/viewer_components/login/CMakeLists.txt
+++ b/indra/viewer_components/login/CMakeLists.txt
@@ -1,6 +1,9 @@
+# -*- cmake -*-
+
project(login)
include(00-Common)
+include(LLAddBuildTest)
include(LLCommon)
include(LLMath)
include(LLXML)
@@ -40,4 +43,7 @@ target_link_libraries(lllogin
${PTH_LIBRARIES}
)
-ADD_BUILD_TEST(lllogin lllogin "")
+SET(lllogin_TEST_SOURCE_FILES
+ lllogin.cpp
+ )
+LL_ADD_PROJECT_UNIT_TESTS(lllogin "${lllogin_TEST_SOURCE_FILES}")