diff options
| author | Nat Goodspeed <nat@lindenlab.com> | 2010-06-21 16:40:50 -0400 | 
|---|---|---|
| committer | Nat Goodspeed <nat@lindenlab.com> | 2010-06-21 16:40:50 -0400 | 
| commit | c71e94581040b1a03000829735cf0fde0cef4d8c (patch) | |
| tree | 71db61282178c281ef35bddb4c1eacb0cb06696e /indra/test | |
| parent | 4eab82d5e2d71f9b0d53f5a92bc65ecc3320fee7 (diff) | |
| parent | 9fe55d340feb3b761fa15be9b7c5efb7d5f4c51f (diff) | |
Automated merge with ssh://hg.lindenlab.com/q/viewer-release/
Diffstat (limited to 'indra/test')
| -rw-r--r-- | indra/test/CMakeLists.txt | 14 | 
1 files changed, 4 insertions, 10 deletions
| diff --git a/indra/test/CMakeLists.txt b/indra/test/CMakeLists.txt index c1360987a5..955c77c041 100644 --- a/indra/test/CMakeLists.txt +++ b/indra/test/CMakeLists.txt @@ -13,6 +13,7 @@ include(LLXML)  include(LScript)  include(Linking)  include(Tut) +include(LLAddBuildTest)  include(GoogleMock) @@ -117,19 +118,12 @@ endif (WINDOWS)  get_target_property(TEST_EXE test LOCATION) -IF(WINDOWS) -  set(LD_LIBRARY_PATH ${SHARED_LIB_STAGING_DIR}/${CMAKE_CFG_INTDIR}) -ELSEIF(DARWIN) -  set(LD_LIBRARY_PATH ${SHARED_LIB_STAGING_DIR}/${CMAKE_CFG_INTDIR}/Resources:/usr/lib) -ELSE(WINDOWS) -  set(LD_LIBRARY_PATH ${SHARED_LIB_STAGING_DIR}:/usr/lib) -ENDIF(WINDOWS) - -LL_TEST_COMMAND("${LD_LIBRARY_PATH}" +SET_TEST_PATH(LD_LIBRARY_PATH) +LL_TEST_COMMAND(command "${LD_LIBRARY_PATH}"    "${TEST_EXE}" "--output=${CMAKE_CURRENT_BINARY_DIR}/cpp_test_results.txt" "--touch=${CMAKE_CURRENT_BINARY_DIR}/cpp_tests_ok.txt")  ADD_CUSTOM_COMMAND(    OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/cpp_tests_ok.txt -  COMMAND ${LL_TEST_COMMAND_value} +  COMMAND ${command}    DEPENDS test    WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}    COMMENT "C++ unit tests" | 
