diff options
Diffstat (limited to 'indra/cmake')
| -rw-r--r-- | indra/cmake/00-Common.cmake | 14 | ||||
| -rw-r--r-- | indra/cmake/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | indra/cmake/Copy3rdPartyLibs.cmake | 13 | ||||
| -rw-r--r-- | indra/cmake/FindTut.cmake | 30 | ||||
| -rw-r--r-- | indra/cmake/GLOD.cmake | 9 | ||||
| -rw-r--r-- | indra/cmake/GooglePerfTools.cmake | 12 | ||||
| -rw-r--r-- | indra/cmake/LLConvexDecomposition.cmake | 12 | ||||
| -rw-r--r-- | indra/cmake/LLPrimitive.cmake | 28 | ||||
| -rw-r--r-- | indra/cmake/LLTestCommand.cmake | 1 | ||||
| -rw-r--r-- | indra/cmake/OpenGL.cmake | 3 | ||||
| -rw-r--r-- | indra/cmake/Tut.cmake | 9 | ||||
| -rw-r--r-- | indra/cmake/Variables.cmake | 1 | ||||
| -rw-r--r-- | indra/cmake/WebKitLibPlugin.cmake | 62 | 
13 files changed, 114 insertions, 82 deletions
| diff --git a/indra/cmake/00-Common.cmake b/indra/cmake/00-Common.cmake index 15b827b217..6d5860657d 100644 --- a/indra/cmake/00-Common.cmake +++ b/indra/cmake/00-Common.cmake @@ -50,16 +50,18 @@ if (WINDOWS)    add_definitions(        /DLL_WINDOWS=1 +      /DDOM_DYNAMIC        /DUNICODE        /D_UNICODE         /GS        /TP -      /W3 +      /W2        /c        /Zc:forScope        /nologo        /Oy-        /Zc:wchar_t- +      /arch:SSE2        )    # Are we using the crummy Visual Studio KDU build workaround? @@ -134,6 +136,8 @@ if (LINUX)        -fno-strict-aliasing        -fsigned-char        -g +      -msse2 +      -mfpmath=sse        -pthread        ) @@ -153,10 +157,6 @@ if (LINUX)        link_directories(/usr/lib/mysql4/mysql)      endif (EXISTS /usr/lib/mysql4/mysql) -    add_definitions( -        -msse2 -        -mfpmath=sse -        )    endif (SERVER)    if (VIEWER) @@ -164,6 +164,8 @@ if (LINUX)      add_definitions(-fvisibility=hidden)      # don't catch SIGCHLD in our base application class for the viewer - some of our 3rd party libs may need their *own* SIGCHLD handler to work.  Sigh!  The viewer doesn't need to catch SIGCHLD anyway.      add_definitions(-DLL_IGNORE_SIGCHLD) +    add_definitions(-march=pentium4 -mfpmath=sse) +    #add_definitions(-ftree-vectorize) # THIS CRASHES GCC 3.1-3.2      if (NOT STANDALONE)        # this stops us requiring a really recent glibc at runtime        add_definitions(-fno-stack-protector) @@ -203,7 +205,7 @@ if (LINUX OR DARWIN)      set(GCC_WARNINGS "${GCC_WARNINGS} -Werror")    endif (NOT GCC_DISABLE_FATAL_WARNINGS) -  set(GCC_CXX_WARNINGS "${GCC_WARNINGS} -Wno-reorder -Wno-non-virtual-dtor -Woverloaded-virtual") +  set(GCC_CXX_WARNINGS "${GCC_WARNINGS} -Wno-reorder -Wno-non-virtual-dtor")    set(CMAKE_C_FLAGS "${GCC_WARNINGS} ${CMAKE_C_FLAGS}")    set(CMAKE_CXX_FLAGS "${GCC_CXX_WARNINGS} ${CMAKE_CXX_FLAGS}") diff --git a/indra/cmake/CMakeLists.txt b/indra/cmake/CMakeLists.txt index 89c1c3691a..279d577a27 100644 --- a/indra/cmake/CMakeLists.txt +++ b/indra/cmake/CMakeLists.txt @@ -34,6 +34,7 @@ set(cmake_SOURCE_FILES      FindZLIB.cmake      FMOD.cmake      FreeType.cmake +    GLOD.cmake      GStreamer010Plugin.cmake      GooglePerfTools.cmake      JPEG.cmake @@ -41,6 +42,7 @@ set(cmake_SOURCE_FILES      LLAudio.cmake      LLCharacter.cmake      LLCommon.cmake +    LLConvexDecomposition.cmake      LLCrashLogger.cmake      LLDatabase.cmake      LLImage.cmake diff --git a/indra/cmake/Copy3rdPartyLibs.cmake b/indra/cmake/Copy3rdPartyLibs.cmake index 1c43c4ce12..12a1bc9c96 100644 --- a/indra/cmake/Copy3rdPartyLibs.cmake +++ b/indra/cmake/Copy3rdPartyLibs.cmake @@ -39,6 +39,8 @@ if(WINDOWS)          libapriconv-1.dll          ssleay32.dll          libeay32.dll +        libcollada14dom22-d.dll +        glod.dll	          )      set(release_src_dir "${ARCH_PREBUILT_DIRS_RELEASE}") @@ -49,6 +51,8 @@ if(WINDOWS)          libapriconv-1.dll          ssleay32.dll          libeay32.dll +        libcollada14dom22.dll +        glod.dll          )      if(USE_GOOGLE_PERFTOOLS) @@ -205,9 +209,11 @@ elseif(DARWIN)          libaprutil-1.dylib          libexpat.1.5.2.dylib          libexpat.dylib -        libllqtwebkit.dylib +        libGLOD.dylib +	libllqtwebkit.dylib          libndofdev.dylib          libexception_handler.dylib +	libcollada14dom.dylib         )      # fmod is statically linked on darwin @@ -243,20 +249,23 @@ elseif(LINUX)          libaprutil-1.so.0          libatk-1.0.so          libbreakpad_client.so.0 +       	libcollada14dom.so          libcrypto.so.1.0.0          libdb-5.1.so          libexpat.so          libexpat.so.1 +	libglod.so          libgmock_main.so          libgmock.so.0          libgmodule-2.0.so          libgobject-2.0.so          libgtest_main.so          libgtest.so.0 +	libminizip.so          libopenal.so          libopenjpeg.so          libssl.so -        libtcmalloc.so +        libtcmalloc_minimal.so          libuuid.so.16          libuuid.so.16.0.22          libssl.so.1.0.0 diff --git a/indra/cmake/FindTut.cmake b/indra/cmake/FindTut.cmake deleted file mode 100644 index c2a9f43053..0000000000 --- a/indra/cmake/FindTut.cmake +++ /dev/null @@ -1,30 +0,0 @@ -# -*- cmake -*- - -# - Find Tut -# Find the Tut unit test framework includes and library -# This module defines -#  TUT_INCLUDE_DIR, where to find tut/tut.hpp. -#  TUT_FOUND, If false, do not try to use Tut. - -find_path(TUT_INCLUDE_DIR tut/tut.hpp -    NO_SYSTEM_ENVIRONMENT_PATH -    ) - -if (TUT_INCLUDE_DIR) -  set(TUT_FOUND "YES") -else (TUT_INCLUDE_DIR) -  set(TUT_FOUND "NO") -endif (TUT_INCLUDE_DIR) - -if (TUT_FOUND) -  if (NOT TUT_FIND_QUIETLY) -    message(STATUS "Found Tut: ${TUT_INCLUDE_DIR}") -    set(TUT_FIND_QUIETLY TRUE) # Only alert us the first time -  endif (NOT TUT_FIND_QUIETLY) -else (TUT_FOUND) -  if (TUT_FIND_REQUIRED) -    message(FATAL_ERROR "Could not find Tut") -  endif (TUT_FIND_REQUIRED) -endif (TUT_FOUND) - -mark_as_advanced(TUT_INCLUDE_DIR) diff --git a/indra/cmake/GLOD.cmake b/indra/cmake/GLOD.cmake new file mode 100644 index 0000000000..77221d55ed --- /dev/null +++ b/indra/cmake/GLOD.cmake @@ -0,0 +1,9 @@ +# -*- cmake -*- +include(Prebuilt) + +if (NOT STANDALONE) +  use_prebuilt_binary(GLOD) +endif (NOT STANDALONE) + +set(GLOD_INCLUDE_DIR ${LIBS_PREBUILT_DIR}/include) +set(GLOD_LIBRARIES glod) diff --git a/indra/cmake/GooglePerfTools.cmake b/indra/cmake/GooglePerfTools.cmake index 6c784a3a76..8740e36753 100644 --- a/indra/cmake/GooglePerfTools.cmake +++ b/indra/cmake/GooglePerfTools.cmake @@ -5,15 +5,16 @@ if (STANDALONE)    include(FindGooglePerfTools)  else (STANDALONE)    if (WINDOWS) -    use_prebuilt_binary(google-perftools) +    use_prebuilt_binary(tcmalloc)      set(TCMALLOC_LIBRARIES           debug libtcmalloc_minimal-debug          optimized libtcmalloc_minimal)      set(GOOGLE_PERFTOOLS_FOUND "YES")    endif (WINDOWS)    if (LINUX) -    use_prebuilt_binary(google-perftools) -    set(TCMALLOC_LIBRARIES tcmalloc) +    use_prebuilt_binary(tcmalloc) +    set(TCMALLOC_LIBRARIES  +	tcmalloc)      set(PROFILER_LIBRARIES profiler)      set(GOOGLE_PERFTOOLS_INCLUDE_DIR          ${LIBS_PREBUILT_DIR}/include) @@ -28,12 +29,11 @@ if (GOOGLE_PERFTOOLS_FOUND)  endif (GOOGLE_PERFTOOLS_FOUND)  if (WINDOWS) -    # *TODO -reenable this once we get server usage sorted out -    #set(USE_GOOGLE_PERFTOOLS ON) +    set(USE_GOOGLE_PERFTOOLS ON)  endif (WINDOWS)  if (USE_GOOGLE_PERFTOOLS) -  set(TCMALLOC_FLAG -DLL_USE_TCMALLOC=1) +  set(TCMALLOC_FLAG -ULL_USE_TCMALLOC=1)    include_directories(${GOOGLE_PERFTOOLS_INCLUDE_DIR})    set(GOOGLE_PERFTOOLS_LIBRARIES ${TCMALLOC_LIBRARIES} ${STACKTRACE_LIBRARIES} ${PROFILER_LIBRARIES})  else (USE_GOOGLE_PERFTOOLS) diff --git a/indra/cmake/LLConvexDecomposition.cmake b/indra/cmake/LLConvexDecomposition.cmake new file mode 100644 index 0000000000..8e44504782 --- /dev/null +++ b/indra/cmake/LLConvexDecomposition.cmake @@ -0,0 +1,12 @@ +# -*- cmake -*- +include(Prebuilt) + +set(LLCONVEXDECOMP_INCLUDE_DIRS ${LIBS_PREBUILT_DIR}/include) +   +if (INSTALL_PROPRIETARY AND NOT STANDALONE) +  use_prebuilt_binary(llconvexdecomposition) +  set(LLCONVEXDECOMP_LIBRARY llconvexdecomposition) +else (INSTALL_PROPRIETARY AND NOT STANDALONE) +  use_prebuilt_binary(llconvexdecompositionstub) +  set(LLCONVEXDECOMP_LIBRARY llconvexdecompositionstub) +endif (INSTALL_PROPRIETARY AND NOT STANDALONE) diff --git a/indra/cmake/LLPrimitive.cmake b/indra/cmake/LLPrimitive.cmake index d397b78f1c..e68d16ed08 100644 --- a/indra/cmake/LLPrimitive.cmake +++ b/indra/cmake/LLPrimitive.cmake @@ -1,7 +1,33 @@  # -*- cmake -*- +# these should be moved to their own cmake file +include(Prebuilt) +use_prebuilt_binary(colladadom) +use_prebuilt_binary(pcre) +use_prebuilt_binary(libxml) +  set(LLPRIMITIVE_INCLUDE_DIRS      ${LIBS_OPEN_DIR}/llprimitive      ) +if (WINDOWS) +	set(LLPRIMITIVE_LIBRARIES  +        debug llprimitive +        optimized llprimitive +        debug libcollada14dom22-d +        optimized libcollada14dom22 +        debug libboost_filesystem-vc100-mt-gd-1_45 +        optimized libboost_filesystem-vc100-mt-1_45 +        debug libboost_system-vc100-mt-gd-1_45 +        optimized libboost_system-vc100-mt-1_45 +        ) +else (WINDOWS) +    set(LLPRIMITIVE_LIBRARIES  +        llprimitive +        collada14dom +        minizip +        xml2 +        pcrecpp +        pcre +        ) +endif (WINDOWS) -set(LLPRIMITIVE_LIBRARIES llprimitive) diff --git a/indra/cmake/LLTestCommand.cmake b/indra/cmake/LLTestCommand.cmake index 554559edbd..b5a0580a90 100644 --- a/indra/cmake/LLTestCommand.cmake +++ b/indra/cmake/LLTestCommand.cmake @@ -1,3 +1,4 @@ +include(Python)  MACRO(LL_TEST_COMMAND OUTVAR LD_LIBRARY_PATH)    # nat wonders how Kitware can use the term 'function' for a construct that    # cannot return a value. And yet, variables you set inside a FUNCTION are diff --git a/indra/cmake/OpenGL.cmake b/indra/cmake/OpenGL.cmake index 661666f00d..0a3dd976b4 100644 --- a/indra/cmake/OpenGL.cmake +++ b/indra/cmake/OpenGL.cmake @@ -2,8 +2,7 @@  include(Prebuilt)  if (NOT STANDALONE) -  use_prebuilt_binary(GL) -  # possible glh_linear should have its own .cmake file instead +  use_prebuilt_binary(glext)    use_prebuilt_binary(glh_linear)    set(GLEXT_INCLUDE_DIR ${LIBS_PREBUILT_DIR}/include)  endif (NOT STANDALONE) diff --git a/indra/cmake/Tut.cmake b/indra/cmake/Tut.cmake index 738c08c42f..7488e9dcb0 100644 --- a/indra/cmake/Tut.cmake +++ b/indra/cmake/Tut.cmake @@ -1,11 +1,6 @@  # -*- cmake -*-  include(Prebuilt) -set(TUT_FIND_REQUIRED TRUE) -set(TUT_FIND_QUIETLY TRUE) - -if (STANDALONE) -  include(FindTut) -else (STANDALONE) +if (NOT STANDALONE)    use_prebuilt_binary(tut) -endif (STANDALONE) +endif(NOT STANDALONE) diff --git a/indra/cmake/Variables.cmake b/indra/cmake/Variables.cmake index 8c9c375790..a8e7f9a40e 100644 --- a/indra/cmake/Variables.cmake +++ b/indra/cmake/Variables.cmake @@ -29,6 +29,7 @@ set(SERVER_PREFIX)  set(VIEWER_PREFIX)  set(INTEGRATION_TESTS_PREFIX)  set(LL_TESTS ON CACHE BOOL "Build and run unit and integration tests (disable for build timing runs to reduce variation") +set(INCREMENTAL_LINK OFF CACHE BOOL "Use incremental linking on win32 builds (enable for faster links on some machines)")  if(LIBS_CLOSED_DIR)    file(TO_CMAKE_PATH "${LIBS_CLOSED_DIR}" LIBS_CLOSED_DIR) diff --git a/indra/cmake/WebKitLibPlugin.cmake b/indra/cmake/WebKitLibPlugin.cmake index 0f5a81c020..7131445464 100644 --- a/indra/cmake/WebKitLibPlugin.cmake +++ b/indra/cmake/WebKitLibPlugin.cmake @@ -26,42 +26,45 @@ if (STANDALONE)    endforeach(qlibname)    # qjpeg depends on libjpeg    list(APPEND QT_PLUGIN_LIBRARIES jpeg) -  set(WEBKITLIBPLUGIN OFF CACHE BOOL -      "WEBKITLIBPLUGIN support for the llplugin/llmedia test apps.") +    set(WEBKITLIBPLUGIN OFF CACHE BOOL +        "WEBKITLIBPLUGIN support for the llplugin/llmedia test apps.")  else (STANDALONE) -  use_prebuilt_binary(llqtwebkit) -  set(WEBKITLIBPLUGIN ON CACHE BOOL -      "WEBKITLIBPLUGIN support for the llplugin/llmedia test apps.") +    use_prebuilt_binary(llqtwebkit) +    set(WEBKITLIBPLUGIN ON CACHE BOOL +        "WEBKITLIBPLUGIN support for the llplugin/llmedia test apps.")  endif (STANDALONE)  if (WINDOWS) -  set(WEBKIT_PLUGIN_LIBRARIES -      debug llqtwebkitd -      debug QtWebKitd4 -      debug QtOpenGLd4 -      debug QtNetworkd4 -      debug QtGuid4 -      debug QtCored4 -      debug qtmaind -      optimized llqtwebkit -      optimized QtWebKit4 -      optimized QtOpenGL4 -      optimized QtNetwork4 -      optimized QtGui4 -      optimized QtCore4 -      optimized qtmain -      ) +    set(WEBKIT_PLUGIN_LIBRARIES  +    debug llqtwebkitd +    debug QtWebKitd4 +    debug QtOpenGLd4 +    debug QtNetworkd4 +    debug QtGuid4 +    debug QtCored4 +    debug qtmaind +    optimized llqtwebkit +    optimized QtWebKit4 +    optimized QtOpenGL4 +    optimized QtNetwork4 +    optimized QtGui4 +    optimized QtCore4 +    optimized qtmain +    )  elseif (DARWIN) -  set(WEBKIT_PLUGIN_LIBRARIES -      optimized ${ARCH_PREBUILT_DIRS_RELEASE}/libllqtwebkit.dylib -      debug ${ARCH_PREBUILT_DIRS_RELEASE}/libllqtwebkit.dylib -      ) +    set(WEBKIT_PLUGIN_LIBRARIES +        optimized ${ARCH_PREBUILT_DIRS_RELEASE}/libllqtwebkit.dylib +        debug ${ARCH_PREBUILT_DIRS_RELEASE}/libllqtwebkit.dylib +        )  elseif (LINUX) -  if (STANDALONE)       set(WEBKIT_PLUGIN_LIBRARIES ${LLQTWEBKIT_LIBRARY} ${QT_LIBRARIES} ${QT_PLUGIN_LIBRARIES}) -  else (STANDALONE)      set(WEBKIT_PLUGIN_LIBRARIES          llqtwebkit +#        qico +#        qpng +#        qtiff +#        qsvg +#        QtSvg          QtWebKit          QtOpenGL          QtNetwork @@ -74,6 +77,9 @@ elseif (LINUX)          X11          Xrender          GL + +#        sqlite3 +#        Xi +#        SM          ) -  endif (STANDALONE)  endif (WINDOWS) | 
