diff options
| author | Dessie Linden <dessie@lindenlab.com> | 2010-11-15 12:05:05 -0800 | 
|---|---|---|
| committer | Dessie Linden <dessie@lindenlab.com> | 2010-11-15 12:05:05 -0800 | 
| commit | 5bfa6095db3a0a9c7367b7dde3f2e24e023cb7f4 (patch) | |
| tree | 1ab6b0946d7bfb881a2ccfaa2382d24b46a6b729 /indra/viewer_components | |
| parent | 65d847de38614a67ed1bdd86445c1c80f4638cc3 (diff) | |
| parent | c13f6afe73bea4311a91d65dde2f6e1c5bc453b3 (diff) | |
Added viewer-release.release-viewer.jira parameter to write build comment to DRTVWR-13
Diffstat (limited to 'indra/viewer_components')
| -rw-r--r-- | indra/viewer_components/login/CMakeLists.txt | 22 | ||||
| -rw-r--r-- | indra/viewer_components/login/tests/lllogin_test.cpp | 2 | 
2 files changed, 14 insertions, 10 deletions
diff --git a/indra/viewer_components/login/CMakeLists.txt b/indra/viewer_components/login/CMakeLists.txt index fb65779eb7..fe64926da6 100644 --- a/indra/viewer_components/login/CMakeLists.txt +++ b/indra/viewer_components/login/CMakeLists.txt @@ -3,7 +3,9 @@  project(login)  include(00-Common) -include(LLAddBuildTest) +if(LL_TESTS) +  include(LLAddBuildTest) +endif(LL_TESTS)  include(LLCommon)  include(LLMath)  include(LLXML) @@ -43,14 +45,16 @@ target_link_libraries(lllogin      ${PTH_LIBRARIES}      ) -SET(lllogin_TEST_SOURCE_FILES +if(LL_TESTS) +  SET(lllogin_TEST_SOURCE_FILES +      lllogin.cpp +      ) + +  set_source_files_properties(      lllogin.cpp +    PROPERTIES +      LL_TEST_ADDITIONAL_LIBRARIES "${PTH_LIBRARIES}"      ) -set_source_files_properties( -  lllogin.cpp -  PROPERTIES -    LL_TEST_ADDITIONAL_LIBRARIES "${PTH_LIBRARIES}" -  ) - -LL_ADD_PROJECT_UNIT_TESTS(lllogin "${lllogin_TEST_SOURCE_FILES}") +  LL_ADD_PROJECT_UNIT_TESTS(lllogin "${lllogin_TEST_SOURCE_FILES}") +endif(LL_TESTS) diff --git a/indra/viewer_components/login/tests/lllogin_test.cpp b/indra/viewer_components/login/tests/lllogin_test.cpp index 95d0421273..58bf371a04 100644 --- a/indra/viewer_components/login/tests/lllogin_test.cpp +++ b/indra/viewer_components/login/tests/lllogin_test.cpp @@ -6,7 +6,7 @@   *    * $LicenseInfo:firstyear=2009&license=viewerlgpl$   * Second Life Viewer Source Code - * Copyright (C) 2010, Linden Research, Inc. + * Copyright (C) 2009-2010, Linden Research, Inc.   *    * This library is free software; you can redistribute it and/or   * modify it under the terms of the GNU Lesser General Public  | 
