diff options
25 files changed, 129 insertions, 129 deletions
| diff --git a/indra/cmake/Copy3rdPartyLibs.cmake b/indra/cmake/Copy3rdPartyLibs.cmake index d9efc8f40d..394db362b1 100644 --- a/indra/cmake/Copy3rdPartyLibs.cmake +++ b/indra/cmake/Copy3rdPartyLibs.cmake @@ -40,7 +40,7 @@ if(WINDOWS)          ssleay32.dll          libeay32.dll          libcollada14dom22-d.dll -        glod.dll	 +        glod.dll              )      set(release_src_dir "${ARCH_PREBUILT_DIRS_RELEASE}") @@ -71,7 +71,7 @@ if(WINDOWS)  if (MSVC80)      FIND_PATH(debug_msvc8_redist_path msvcr80d.dll          PATHS -		${MSVC_DEBUG_REDIST_PATH} +        ${MSVC_DEBUG_REDIST_PATH}           [HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\8.0\\Setup\\VC;ProductDir]/redist/Debug_NonRedist/x86/Microsoft.VC80.DebugCRT          NO_DEFAULT_PATH          NO_DEFAULT_PATH @@ -96,7 +96,7 @@ if (MSVC80)      FIND_PATH(release_msvc8_redist_path msvcr80.dll          PATHS -		${MSVC_REDIST_PATH} +        ${MSVC_REDIST_PATH}           [HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\8.0\\Setup\\VC;ProductDir]/redist/x86/Microsoft.VC80.CRT          NO_DEFAULT_PATH          NO_DEFAULT_PATH @@ -212,11 +212,11 @@ elseif(DARWIN)          libexpat.1.5.2.dylib          libexpat.dylib          libGLOD.dylib -	libllqtwebkit.dylib -	libminizip.a +    libllqtwebkit.dylib +    libminizip.a          libndofdev.dylib          libexception_handler.dylib -	libcollada14dom.dylib +    libcollada14dom.dylib         )      # fmod is statically linked on darwin @@ -252,19 +252,19 @@ elseif(LINUX)          libaprutil-1.so.0          libatk-1.0.so          libbreakpad_client.so.0 -       	libcollada14dom.so +        libcollada14dom.so          libcrypto.so.1.0.0          libdb-5.1.so          libexpat.so          libexpat.so.1 -	libglod.so +    libglod.so          libgmock_main.so          libgmock.so.0          libgmodule-2.0.so          libgobject-2.0.so          libgtest_main.so          libgtest.so.0 -	libminizip.so +    libminizip.so          libopenal.so          libopenjpeg.so          libssl.so diff --git a/indra/cmake/FMOD.cmake b/indra/cmake/FMOD.cmake index cb5124812d..3586c1160a 100644 --- a/indra/cmake/FMOD.cmake +++ b/indra/cmake/FMOD.cmake @@ -16,15 +16,15 @@ if (FMOD)      include(FindFMOD)    else (STANDALONE)      if (FMOD_LIBRARY AND FMOD_INCLUDE_DIR) -	  # If the path have been specified in the arguments, use that +      # If the path have been specified in the arguments, use that        set(FMOD_LIBRARIES ${FMOD_LIBRARY}) -	  MESSAGE(STATUS "Using FMOD path: ${FMOD_LIBRARIES}, ${FMOD_INCLUDE_DIR}") +      MESSAGE(STATUS "Using FMOD path: ${FMOD_LIBRARIES}, ${FMOD_INCLUDE_DIR}")      else (FMOD_LIBRARY AND FMOD_INCLUDE_DIR) -	  # If not, we're going to try to get the package listed in autobuild.xml -	  # Note: if you're not using INSTALL_PROPRIETARY, the package URL should be local (file:/// URL)  -	  # as accessing the private LL location will fail if you don't have the credential -	  include(Prebuilt) -	  use_prebuilt_binary(fmod)     +      # If not, we're going to try to get the package listed in autobuild.xml +      # Note: if you're not using INSTALL_PROPRIETARY, the package URL should be local (file:/// URL)  +      # as accessing the private LL location will fail if you don't have the credential +      include(Prebuilt) +      use_prebuilt_binary(fmod)            if (WINDOWS)          set(FMOD_LIBRARY fmod)        elseif (DARWIN) diff --git a/indra/cmake/FindAutobuild.cmake b/indra/cmake/FindAutobuild.cmake index 45db2b6ed0..4b5fd484ae 100644 --- a/indra/cmake/FindAutobuild.cmake +++ b/indra/cmake/FindAutobuild.cmake @@ -21,10 +21,10 @@ IF (NOT AUTOBUILD_EXECUTABLE)        AUTOBUILD_EXECUTABLE         NAMES ${AUTOBUILD_EXE_NAMES}        PATHS  -	ENV PATH -	${CMAKE_SOURCE_DIR}/..  -	${CMAKE_SOURCE_DIR}/../.. -	${CMAKE_SOURCE_DIR}/../../.. +    ENV PATH +    ${CMAKE_SOURCE_DIR}/..  +    ${CMAKE_SOURCE_DIR}/../.. +    ${CMAKE_SOURCE_DIR}/../../..        PATH_SUFFIXES "/autobuild/bin/"      ) @@ -33,7 +33,7 @@ IF (NOT AUTOBUILD_EXECUTABLE)        MESSAGE(STATUS "Using autobuild at: ${AUTOBUILD_EXECUTABLE}")      ELSE (AUTOBUILD_EXECUTABLE)        IF (AUTOBUILD_FIND_REQUIRED) -	MESSAGE(FATAL_ERROR "Could not find autobuild executable") +    MESSAGE(FATAL_ERROR "Could not find autobuild executable")        ENDIF (AUTOBUILD_FIND_REQUIRED)      ENDIF (AUTOBUILD_EXECUTABLE) diff --git a/indra/cmake/FindJsonCpp.cmake b/indra/cmake/FindJsonCpp.cmake index cf84b309c1..0b056ada58 100644 --- a/indra/cmake/FindJsonCpp.cmake +++ b/indra/cmake/FindJsonCpp.cmake @@ -24,8 +24,8 @@ EXEC_PROGRAM(${CMAKE_CXX_COMPILER}  # Try to find a library that was compiled with the same compiler version as we currently use.  SET(JSONCPP_NAMES ${JSONCPP_NAMES} libjson_linux-gcc-${_gcc_COMPILER_VERSION}_libmt.so)  IF (STANDALONE) -	# On standalone, assume that the system installed library was compiled with the used compiler. -	SET(JSONCPP_NAMES ${JSONCPP_NAMES} libjson.so) +    # On standalone, assume that the system installed library was compiled with the used compiler. +    SET(JSONCPP_NAMES ${JSONCPP_NAMES} libjson.so)  ENDIF (STANDALONE)  FIND_LIBRARY(JSONCPP_LIBRARY    NAMES ${JSONCPP_NAMES} diff --git a/indra/cmake/FindLLQtWebkit.cmake b/indra/cmake/FindLLQtWebkit.cmake index 4bf5f5cb73..2f666d3bf0 100644 --- a/indra/cmake/FindLLQtWebkit.cmake +++ b/indra/cmake/FindLLQtWebkit.cmake @@ -35,7 +35,7 @@ find_path(LLQTWEBKIT_INCLUDE_DIR llqtwebkit.h NO_SYSTEM_ENVIRONMENT_PATH HINTS $  find_library(LLQTWEBKIT_LIBRARY NAMES llqtwebkit NO_SYSTEM_ENVIRONMENT_PATH HINTS ${LLQTWEBKIT_LIBRARY_DIRS}) -if (NOT PKG_CONFIG_FOUND OR NOT LLQTWEBKIT_FOUND)	# If pkg-config couldn't find it, pretend we don't have pkg-config. +if (NOT PKG_CONFIG_FOUND OR NOT LLQTWEBKIT_FOUND)   # If pkg-config couldn't find it, pretend we don't have pkg-config.     set(LLQTWEBKIT_LIBRARIES llqtwebkit)     get_filename_component(LLQTWEBKIT_LIBRARY_DIRS ${LLQTWEBKIT_LIBRARY} PATH)  endif (NOT PKG_CONFIG_FOUND OR NOT LLQTWEBKIT_FOUND) diff --git a/indra/cmake/FindZLIB.cmake b/indra/cmake/FindZLIB.cmake index 6d630f1ba9..03a7db9d6f 100644 --- a/indra/cmake/FindZLIB.cmake +++ b/indra/cmake/FindZLIB.cmake @@ -30,12 +30,12 @@ endif (ZLIB_LIBRARY AND ZLIB_INCLUDE_DIR)  if (ZLIB_FOUND)    if (NOT ZLIB_FIND_QUIETLY) -	message(STATUS "Found ZLIB: ${ZLIB_LIBRARIES}") -	SET(ZLIB_FIND_QUIETLY TRUE) +    message(STATUS "Found ZLIB: ${ZLIB_LIBRARIES}") +    SET(ZLIB_FIND_QUIETLY TRUE)    endif (NOT ZLIB_FIND_QUIETLY)  else (ZLIB_FOUND)    if (ZLIB_FIND_REQUIRED) -	message(FATAL_ERROR "Could not find ZLIB library") +    message(FATAL_ERROR "Could not find ZLIB library")    endif (ZLIB_FIND_REQUIRED)  endif (ZLIB_FOUND) diff --git a/indra/cmake/GoogleMock.cmake b/indra/cmake/GoogleMock.cmake index 06d6d847a0..c4c96a9af7 100644 --- a/indra/cmake/GoogleMock.cmake +++ b/indra/cmake/GoogleMock.cmake @@ -8,7 +8,7 @@ set(GOOGLEMOCK_INCLUDE_DIRS      ${LIBS_PREBUILT_DIR}/include)  if (LINUX) -	# VWR-24366: gmock is underlinked, it needs gtest. +    # VWR-24366: gmock is underlinked, it needs gtest.      set(GOOGLEMOCK_LIBRARIES           gmock -Wl,--no-as-needed          gtest -Wl,--as-needed) diff --git a/indra/cmake/GooglePerfTools.cmake b/indra/cmake/GooglePerfTools.cmake index 8740e36753..d9f91193be 100644 --- a/indra/cmake/GooglePerfTools.cmake +++ b/indra/cmake/GooglePerfTools.cmake @@ -14,7 +14,7 @@ else (STANDALONE)    if (LINUX)      use_prebuilt_binary(tcmalloc)      set(TCMALLOC_LIBRARIES  -	tcmalloc) +    tcmalloc)      set(PROFILER_LIBRARIES profiler)      set(GOOGLE_PERFTOOLS_INCLUDE_DIR          ${LIBS_PREBUILT_DIR}/include) diff --git a/indra/cmake/LLPlugin.cmake b/indra/cmake/LLPlugin.cmake index 7ee404b9bd..399cb332dd 100644 --- a/indra/cmake/LLPlugin.cmake +++ b/indra/cmake/LLPlugin.cmake @@ -8,7 +8,7 @@ set(LLPLUGIN_INCLUDE_DIRS  if (LINUX)      # In order to support using ld.gold on linux, we need to explicitely      # specify all libraries that llplugin uses. -	set(LLPLUGIN_LIBRARIES llplugin pthread) +    set(LLPLUGIN_LIBRARIES llplugin pthread)  else (LINUX) -	set(LLPLUGIN_LIBRARIES llplugin) +    set(LLPLUGIN_LIBRARIES llplugin)  endif (LINUX) diff --git a/indra/cmake/LLPrimitive.cmake b/indra/cmake/LLPrimitive.cmake index e68d16ed08..f15a2c2649 100644 --- a/indra/cmake/LLPrimitive.cmake +++ b/indra/cmake/LLPrimitive.cmake @@ -10,7 +10,7 @@ set(LLPRIMITIVE_INCLUDE_DIRS      ${LIBS_OPEN_DIR}/llprimitive      )  if (WINDOWS) -	set(LLPRIMITIVE_LIBRARIES  +    set(LLPRIMITIVE_LIBRARIES           debug llprimitive          optimized llprimitive          debug libcollada14dom22-d diff --git a/indra/cmake/NDOF.cmake b/indra/cmake/NDOF.cmake index 7a463d1190..be6fe415f2 100644 --- a/indra/cmake/NDOF.cmake +++ b/indra/cmake/NDOF.cmake @@ -5,19 +5,19 @@ set(NDOF ON CACHE BOOL "Use NDOF space navigator joystick library.")  if (NDOF)    if (STANDALONE) -	set(NDOF_FIND_REQUIRED ON) -	include(FindNDOF) +    set(NDOF_FIND_REQUIRED ON) +    include(FindNDOF)    else (STANDALONE) -	use_prebuilt_binary(ndofdev) +    use_prebuilt_binary(ndofdev) -	if (WINDOWS) -	  set(NDOF_LIBRARY libndofdev) -	elseif (DARWIN OR LINUX) -	  set(NDOF_LIBRARY ndofdev) -	endif (WINDOWS) +    if (WINDOWS) +      set(NDOF_LIBRARY libndofdev) +    elseif (DARWIN OR LINUX) +      set(NDOF_LIBRARY ndofdev) +    endif (WINDOWS) -	set(NDOF_INCLUDE_DIR ${ARCH_PREBUILT_DIRS}/include/ndofdev) -	set(NDOF_FOUND 1) +    set(NDOF_INCLUDE_DIR ${ARCH_PREBUILT_DIRS}/include/ndofdev) +    set(NDOF_FOUND 1)    endif (STANDALONE)  endif (NDOF) diff --git a/indra/cmake/WebKitLibPlugin.cmake b/indra/cmake/WebKitLibPlugin.cmake index 7131445464..91b49e75d7 100644 --- a/indra/cmake/WebKitLibPlugin.cmake +++ b/indra/cmake/WebKitLibPlugin.cmake @@ -8,21 +8,21 @@ if (STANDALONE)    include(${QT_USE_FILE})    set(QTDIR $ENV{QTDIR})    if (QTDIR AND NOT "${QT_BINARY_DIR}" STREQUAL "${QTDIR}/bin") -	message(FATAL_ERROR "\"${QT_BINARY_DIR}\" is unequal \"${QTDIR}/bin\"; " -	  "Qt is found by looking for qmake in your PATH. " -	  "Please set your PATH such that 'qmake' is found in \$QTDIR/bin, " -	  "or unset QTDIR if the found Qt is correct.") -	endif (QTDIR AND NOT "${QT_BINARY_DIR}" STREQUAL "${QTDIR}/bin") +    message(FATAL_ERROR "\"${QT_BINARY_DIR}\" is unequal \"${QTDIR}/bin\"; " +      "Qt is found by looking for qmake in your PATH. " +      "Please set your PATH such that 'qmake' is found in \$QTDIR/bin, " +      "or unset QTDIR if the found Qt is correct.") +    endif (QTDIR AND NOT "${QT_BINARY_DIR}" STREQUAL "${QTDIR}/bin")    find_package(LLQtWebkit REQUIRED QUIET)    # Add the plugins.    set(QT_PLUGIN_LIBRARIES)    foreach(qlibname qgif qjpeg) -	find_library(QT_PLUGIN_${qlibname} ${qlibname} PATHS ${QT_PLUGINS_DIR}/imageformats NO_DEFAULT_PATH) -	if (QT_PLUGIN_${qlibname}) -	  list(APPEND QT_PLUGIN_LIBRARIES ${QT_PLUGIN_${qlibname}}) -	else (QT_PLUGIN_${qtlibname}) -	  message(FATAL_ERROR "Could not find the Qt plugin ${qlibname} in \"${QT_PLUGINS_DIR}/imageformats\"!") -	endif (QT_PLUGIN_${qlibname}) +    find_library(QT_PLUGIN_${qlibname} ${qlibname} PATHS ${QT_PLUGINS_DIR}/imageformats NO_DEFAULT_PATH) +    if (QT_PLUGIN_${qlibname}) +      list(APPEND QT_PLUGIN_LIBRARIES ${QT_PLUGIN_${qlibname}}) +    else (QT_PLUGIN_${qtlibname}) +      message(FATAL_ERROR "Could not find the Qt plugin ${qlibname} in \"${QT_PLUGINS_DIR}/imageformats\"!") +    endif (QT_PLUGIN_${qlibname})    endforeach(qlibname)    # qjpeg depends on libjpeg    list(APPEND QT_PLUGIN_LIBRARIES jpeg) diff --git a/indra/integration_tests/llimage_libtest/CMakeLists.txt b/indra/integration_tests/llimage_libtest/CMakeLists.txt index a687e60610..af5c9fb2e7 100644 --- a/indra/integration_tests/llimage_libtest/CMakeLists.txt +++ b/indra/integration_tests/llimage_libtest/CMakeLists.txt @@ -59,15 +59,15 @@ endif (DARWIN)  # Libraries on which this application depends on  # Sort by high-level to low-level  target_link_libraries(llimage_libtest -	${LLCOMMON_LIBRARIES} -	${LLVFS_LIBRARIES} +    ${LLCOMMON_LIBRARIES} +    ${LLVFS_LIBRARIES}      ${LLIMAGE_LIBRARIES}      ${LLKDU_LIBRARIES}      ${KDU_LIBRARY}      ${LLIMAGEJ2COJ_LIBRARIES}      ${OS_LIBRARIES}      ) -	 +      if (DARWIN)    # Path inside the app bundle where we'll need to copy libraries    set(LLIMAGE_LIBTEST_DESTINATION_DIR diff --git a/indra/lib/python/indra/base/lluuid.py b/indra/lib/python/indra/base/lluuid.py index 1cdd8e915b..369ae4e92f 100644 --- a/indra/lib/python/indra/base/lluuid.py +++ b/indra/lib/python/indra/base/lluuid.py @@ -163,7 +163,7 @@ class UUID(object):      def setFromMemoryDump(self, gdb_string):          """          We expect to get gdb_string as four hex units. eg: -        0x147d54db		0xc34b3f1b		0x714f989b		0x0a892fd2 +        0x147d54db      0xc34b3f1b      0x714f989b      0x0a892fd2          Which will be translated to:          db547d14-1b3f4bc3-9b984f71-d22f890a          Returns self. @@ -187,7 +187,7 @@ class UUID(object):      def getAsString(self):          """          Return a different string representation of the form -        AAAAAAAA-AAAABBBB-BBBBBBBB-BBCCCCCC	 (a 128-bit number in hex) +        AAAAAAAA-AAAABBBB-BBBBBBBB-BBCCCCCC  (a 128-bit number in hex)          where A=network address, B=timestamp, C=random.          """          i1 = _binstr2int(self._bits[0:4]) @@ -233,7 +233,7 @@ NULL = UUID()  def printTranslatedMemory(four_hex_uints):      """      We expect to get the string as four hex units. eg: -    0x147d54db		0xc34b3f1b		0x714f989b		0x0a892fd2 +    0x147d54db      0xc34b3f1b      0x714f989b      0x0a892fd2      Which will be translated to:      db547d14-1b3f4bc3-9b984f71-d22f890a      """ diff --git a/indra/lib/python/indra/ipc/russ.py b/indra/lib/python/indra/ipc/russ.py index 35d8afb158..ac780f128b 100644 --- a/indra/lib/python/indra/ipc/russ.py +++ b/indra/lib/python/indra/ipc/russ.py @@ -110,7 +110,7 @@ def format(format_str, context):  def _find_sub_matches(format_str):      """@brief Find all of the substitution matches. -@param format_str the RUSS conformant format string.	 +@param format_str the RUSS conformant format string.      @return Returns an array of depths of arrays of positional matches in input.  """      depth = 0 diff --git a/indra/llcharacter/CMakeLists.txt b/indra/llcharacter/CMakeLists.txt index 6eb154458d..a1712699eb 100644 --- a/indra/llcharacter/CMakeLists.txt +++ b/indra/llcharacter/CMakeLists.txt @@ -79,11 +79,11 @@ add_library (llcharacter ${llcharacter_SOURCE_FILES})  # Add tests  if (LL_TESTS) -	include(LLAddBuildTest) -	# UNIT TESTS -	SET(llcharacter_TEST_SOURCE_FILES -	  lljoint.cpp -	  ) -	LL_ADD_PROJECT_UNIT_TESTS(llcharacter "${llcharacter_TEST_SOURCE_FILES}") +    include(LLAddBuildTest) +    # UNIT TESTS +    SET(llcharacter_TEST_SOURCE_FILES +      lljoint.cpp +      ) +    LL_ADD_PROJECT_UNIT_TESTS(llcharacter "${llcharacter_TEST_SOURCE_FILES}")  endif (LL_TESTS) diff --git a/indra/llinventory/CMakeLists.txt b/indra/llinventory/CMakeLists.txt index 35a764b111..e45c809e7e 100644 --- a/indra/llinventory/CMakeLists.txt +++ b/indra/llinventory/CMakeLists.txt @@ -62,14 +62,14 @@ add_library (llinventory ${llinventory_SOURCE_FILES})  #add unit tests  if (LL_TESTS) -	INCLUDE(LLAddBuildTest) -	SET(llinventory_TEST_SOURCE_FILES -	  # no real unit tests yet! -	  ) -	LL_ADD_PROJECT_UNIT_TESTS(llinventory "${llinventory_TEST_SOURCE_FILES}") +    INCLUDE(LLAddBuildTest) +    SET(llinventory_TEST_SOURCE_FILES +      # no real unit tests yet! +      ) +    LL_ADD_PROJECT_UNIT_TESTS(llinventory "${llinventory_TEST_SOURCE_FILES}") -	#set(TEST_DEBUG on) -	set(test_libs llinventory ${LLMESSAGE_LIBRARIES} ${LLVFS_LIBRARIES} ${LLMATH_LIBRARIES} ${LLCOMMON_LIBRARIES} ${WINDOWS_LIBRARIES}) -	LL_ADD_INTEGRATION_TEST(inventorymisc "" "${test_libs}") -	LL_ADD_INTEGRATION_TEST(llparcel "" "${test_libs}") +    #set(TEST_DEBUG on) +    set(test_libs llinventory ${LLMESSAGE_LIBRARIES} ${LLVFS_LIBRARIES} ${LLMATH_LIBRARIES} ${LLCOMMON_LIBRARIES} ${WINDOWS_LIBRARIES}) +    LL_ADD_INTEGRATION_TEST(inventorymisc "" "${test_libs}") +    LL_ADD_INTEGRATION_TEST(llparcel "" "${test_libs}")  endif (LL_TESTS) diff --git a/indra/llkdu/CMakeLists.txt b/indra/llkdu/CMakeLists.txt index 046629b514..bdac2eded7 100644 --- a/indra/llkdu/CMakeLists.txt +++ b/indra/llkdu/CMakeLists.txt @@ -30,7 +30,7 @@ set(llkdu_SOURCE_FILES  set(llkdu_HEADER_FILES      CMakeLists.txt -	 +          llimagej2ckdu.h      llkdumem.h      ) diff --git a/indra/llplugin/CMakeLists.txt b/indra/llplugin/CMakeLists.txt index 2f28673c07..1353b7a458 100644 --- a/indra/llplugin/CMakeLists.txt +++ b/indra/llplugin/CMakeLists.txt @@ -68,18 +68,18 @@ add_subdirectory(slplugin)  # Add tests  if (LL_TESTS) -	include(LLAddBuildTest) -	# UNIT TESTS -	SET(llplugin_TEST_SOURCE_FILES -	  llplugincookiestore.cpp -	  ) +    include(LLAddBuildTest) +    # UNIT TESTS +    SET(llplugin_TEST_SOURCE_FILES +      llplugincookiestore.cpp +      ) -	# llplugincookiestore has a dependency on curl, so we need to link the curl library into the test. -	set_source_files_properties( -	  llplugincookiestore.cpp -	  PROPERTIES -		LL_TEST_ADDITIONAL_LIBRARIES "${CURL_LIBRARIES}" -	  ) +    # llplugincookiestore has a dependency on curl, so we need to link the curl library into the test. +    set_source_files_properties( +      llplugincookiestore.cpp +      PROPERTIES +        LL_TEST_ADDITIONAL_LIBRARIES "${CURL_LIBRARIES}" +      ) -	LL_ADD_PROJECT_UNIT_TESTS(llplugin "${llplugin_TEST_SOURCE_FILES}") +    LL_ADD_PROJECT_UNIT_TESTS(llplugin "${llplugin_TEST_SOURCE_FILES}")  endif (LL_TESTS) diff --git a/indra/llprimitive/CMakeLists.txt b/indra/llprimitive/CMakeLists.txt index 97e1ebde47..7d0e313ff3 100644 --- a/indra/llprimitive/CMakeLists.txt +++ b/indra/llprimitive/CMakeLists.txt @@ -59,9 +59,9 @@ add_library (llprimitive ${llprimitive_SOURCE_FILES})  #add unit tests  if (LL_TESTS) -	INCLUDE(LLAddBuildTest) -	SET(llprimitive_TEST_SOURCE_FILES -	  llmediaentry.cpp -	  ) -	LL_ADD_PROJECT_UNIT_TESTS(llprimitive "${llprimitive_TEST_SOURCE_FILES}") +    INCLUDE(LLAddBuildTest) +    SET(llprimitive_TEST_SOURCE_FILES +      llmediaentry.cpp +      ) +    LL_ADD_PROJECT_UNIT_TESTS(llprimitive "${llprimitive_TEST_SOURCE_FILES}")  endif (LL_TESTS) diff --git a/indra/llui/CMakeLists.txt b/indra/llui/CMakeLists.txt index 673494820f..b3b2f4ae56 100644 --- a/indra/llui/CMakeLists.txt +++ b/indra/llui/CMakeLists.txt @@ -29,7 +29,7 @@ set(llui_SOURCE_FILES      llaccordionctrl.cpp      llaccordionctrltab.cpp      llbadge.cpp -	llbadgeholder.cpp +    llbadgeholder.cpp      llbadgeowner.cpp      llbutton.cpp      llcheckboxctrl.cpp @@ -124,7 +124,7 @@ set(llui_HEADER_FILES      llaccordionctrl.h      llaccordionctrltab.h      llbadge.h -	llbadgeholder.h +    llbadgeholder.h      llbadgeowner.h      llbutton.h      llcallbackmap.h @@ -167,7 +167,7 @@ set(llui_HEADER_FILES      llnotificationslistener.h      llnotificationsutil.h      llnotificationtemplate.h -	llnotificationvisibilityrule.h +    llnotificationvisibilityrule.h      llpanel.h      llprogressbar.h      llradiogroup.h diff --git a/indra/llvfs/CMakeLists.txt b/indra/llvfs/CMakeLists.txt index 2c581cf8d6..a819d12861 100644 --- a/indra/llvfs/CMakeLists.txt +++ b/indra/llvfs/CMakeLists.txt @@ -83,13 +83,13 @@ if (LL_TESTS)      include(LLAddBuildTest)      # UNIT TESTS      SET(llvfs_TEST_SOURCE_FILES -	lldiriterator.cpp -	) +    lldiriterator.cpp +    )      set_source_files_properties(lldiriterator.cpp -	PROPERTIES -	LL_TEST_ADDITIONAL_LIBRARIES "${vfs_BOOST_LIBRARIES}" -	) +    PROPERTIES +    LL_TEST_ADDITIONAL_LIBRARIES "${vfs_BOOST_LIBRARIES}" +    )      LL_ADD_PROJECT_UNIT_TESTS(llvfs "${llvfs_TEST_SOURCE_FILES}")      # INTEGRATION TESTS diff --git a/indra/llxml/CMakeLists.txt b/indra/llxml/CMakeLists.txt index 21cdf5f926..beefcda361 100644 --- a/indra/llxml/CMakeLists.txt +++ b/indra/llxml/CMakeLists.txt @@ -48,22 +48,22 @@ target_link_libraries( llxml  # tests  if (LL_TESTS) -	# unit tests +    # unit tests -	SET(llxml_TEST_SOURCE_FILES -	  # none yet! -	  ) -	LL_ADD_PROJECT_UNIT_TESTS(llxml "${llxml_TEST_SOURCE_FILES}") +    SET(llxml_TEST_SOURCE_FILES +      # none yet! +      ) +    LL_ADD_PROJECT_UNIT_TESTS(llxml "${llxml_TEST_SOURCE_FILES}") -	# integration tests +    # integration tests -	#    set(TEST_DEBUG on) -	set(test_libs -	  ${LLXML_LIBRARIES} -	  ${WINDOWS_LIBRARIES} -	  ${LLMATH_LIBRARIES} -	  ${LLCOMMON_LIBRARIES} -	  ) +    #    set(TEST_DEBUG on) +    set(test_libs +      ${LLXML_LIBRARIES} +      ${WINDOWS_LIBRARIES} +      ${LLMATH_LIBRARIES} +      ${LLCOMMON_LIBRARIES} +      ) -	LL_ADD_INTEGRATION_TEST(llcontrol "" "${test_libs}") +    LL_ADD_INTEGRATION_TEST(llcontrol "" "${test_libs}")  endif (LL_TESTS) diff --git a/indra/newview/CMakeLists.txt b/indra/newview/CMakeLists.txt index 328cbf3936..a117d9a593 100644 --- a/indra/newview/CMakeLists.txt +++ b/indra/newview/CMakeLists.txt @@ -1734,7 +1734,7 @@ endif (WINDOWS)  # that they depend upon. -brad  target_link_libraries(${VIEWER_BINARY_NAME}      ${UPDATER_LIBRARIES} -	${GOOGLE_PERFTOOLS_LIBRARIES} +    ${GOOGLE_PERFTOOLS_LIBRARIES}      ${LLAUDIO_LIBRARIES}      ${LLCHARACTER_LIBRARIES}      ${LLIMAGE_LIBRARIES} @@ -1797,14 +1797,14 @@ if (LINUX)    # These are the generated targets that are copied to package/    set(COPY_INPUT_DEPENDENCIES -	${VIEWER_BINARY_NAME} -	linux-crash-logger -	linux-updater -	SLPlugin -	media_plugin_webkit -	media_plugin_gstreamer010 -	llcommon -	) +    ${VIEWER_BINARY_NAME} +    linux-crash-logger +    linux-updater +    SLPlugin +    media_plugin_webkit +    media_plugin_gstreamer010 +    llcommon +    )    add_custom_command(        OUTPUT ${product}.tar.bz2 @@ -2063,12 +2063,12 @@ if (LL_TESTS)      )    LL_ADD_INTEGRATION_TEST(llsimplestat -	"" +    ""      "${test_libs}"      )    LL_ADD_INTEGRATION_TEST(llviewerassetstats -	llviewerassetstats.cpp +    llviewerassetstats.cpp      "${test_libs}"      ) diff --git a/indra/viewer_components/updater/CMakeLists.txt b/indra/viewer_components/updater/CMakeLists.txt index 0e288bb496..ef82290b47 100644 --- a/indra/viewer_components/updater/CMakeLists.txt +++ b/indra/viewer_components/updater/CMakeLists.txt @@ -17,8 +17,8 @@ include_directories(      ${LLCOMMON_INCLUDE_DIRS}      ${LLMESSAGE_INCLUDE_DIRS}      ${LLPLUGIN_INCLUDE_DIRS} -	${LLVFS_INCLUDE_DIRS} -	${CURL_INCLUDE_DIRS} +    ${LLVFS_INCLUDE_DIRS} +    ${CURL_INCLUDE_DIRS}      )  set(updater_service_SOURCE_FILES @@ -51,7 +51,7 @@ target_link_libraries(llupdaterservice      ${LLCOMMON_LIBRARIES}      ${LLMESSAGE_LIBRARIES}      ${LLPLUGIN_LIBRARIES} -	${LLVFS_LIBRARIES} +    ${LLVFS_LIBRARIES}      )  if(LL_TESTS) | 
