diff options
| author | Oz Linden <oz@lindenlab.com> | 2014-12-22 08:26:47 -0500 | 
|---|---|---|
| committer | Oz Linden <oz@lindenlab.com> | 2014-12-22 08:26:47 -0500 | 
| commit | e5771553c176072bb05f0f4f912fb979b3e4c5f0 (patch) | |
| tree | 9be6669a48145f31da27de4e39213425b4e364ea /indra | |
| parent | e7fca4af5064911dbec311770d953b8ae93b63d8 (diff) | |
| parent | f6abe4a2283e8c6b37ade3a9621d210a298f8d66 (diff) | |
merge latest trunk changes
Diffstat (limited to 'indra')
| -rwxr-xr-x | indra/cmake/FindAutobuild.cmake | 3 | ||||
| -rwxr-xr-x | indra/newview/CMakeLists.txt | 27 | 
2 files changed, 14 insertions, 16 deletions
| diff --git a/indra/cmake/FindAutobuild.cmake b/indra/cmake/FindAutobuild.cmake index d831257d4b..84ae41e8aa 100755 --- a/indra/cmake/FindAutobuild.cmake +++ b/indra/cmake/FindAutobuild.cmake @@ -13,6 +13,9 @@ IF (NOT AUTOBUILD_EXECUTABLE)    # If cmake was executed by autobuild, autobuild will have set the AUTOBUILD env var    IF (DEFINED ENV{AUTOBUILD})      SET(AUTOBUILD_EXECUTABLE $ENV{AUTOBUILD}) +    # In case $AUTOBUILD is a cygwin path, fix it back to Windows style +    STRING(REGEX REPLACE "^/cygdrive/(.)/" "\\1:/" AUTOBUILD_EXECUTABLE +           "${AUTOBUILD_EXECUTABLE}")    ELSE (DEFINED ENV{AUTOBUILD})      IF(WIN32)        SET(AUTOBUILD_EXE_NAMES autobuild.cmd autobuild.exe) diff --git a/indra/newview/CMakeLists.txt b/indra/newview/CMakeLists.txt index 0905ae7a73..1569061eba 100755 --- a/indra/newview/CMakeLists.txt +++ b/indra/newview/CMakeLists.txt @@ -4,18 +4,19 @@ project(viewer)  include(00-Common)  include(Boost) -include(BuildVersion)  include(BuildPackagesInfo) +include(BuildVersion) +include(CMakeCopyIfDifferent)  include(DBusGlib)  include(DirectX) -include(OpenSSL)  include(DragDrop)  include(EXPAT)  include(FMODEX) -include(OPENAL) -include(OpenGL) +include(GLOD) +include(GooglePerfTools)  include(Hunspell)  include(JsonCpp) +include(LLAppearance)  include(LLAudio)  include(LLCharacter)  include(LLCommon) @@ -23,6 +24,8 @@ include(LLCoreHttp)  include(LLImage)  include(LLImageJ2COJ)  include(LLInventory) +include(LLKDU) +include(LLLogin)  include(LLMath)  include(LLMessage)  include(LLPhysicsExtensions) @@ -37,18 +40,15 @@ include(LScript)  include(Linking)  include(NDOF)  include(NVAPI) -include(GooglePerfTools) +include(OPENAL) +include(OpenGL) +include(OpenSSL) +include(PNG)  include(TemplateCheck)  include(UI)  include(UnixInstall) -include(LLKDU)  include(ViewerMiscLibs) -include(LLLogin)  include(VisualLeakDetector) -include(GLOD) -include(CMakeCopyIfDifferent) -include(LLAppearance) -include(PNG)  include(ZLIB)  if (NOT HAVOK_TPV) @@ -2371,11 +2371,6 @@ include(LLAddBuildTest)  SET(viewer_TEST_SOURCE_FILES    llagentaccess.cpp    llwlparammanager.cpp -  # Not *actually* a unit test, it's an integration test. -  # Because it won't work in the new unit test iface, i've commented out -  # and notified Nat. Delete this when it's replaced! -  # + poppy & brad 2009-06-05 -  # llcapabilitylistener.cpp    )  set_source_files_properties(    ${viewer_TEST_SOURCE_FILES} | 
