Skip to content
Snippets Groups Projects
  1. Jan 19, 2011
  2. Jan 18, 2011
  3. Jan 14, 2011
  4. Jan 13, 2011
  5. Jan 11, 2011
  6. Jan 06, 2011
  7. Dec 15, 2010
    • Merov Linden's avatar
    • Aleric Inglewood's avatar
      VWR-24254: Add support for using ld.gold on linux. · 86380bb1
      Aleric Inglewood authored
      To use ld.gold configure with:
        -DCMAKE_EXE_LINKER_FLAGS:STRING="-Wl,-use-gold".
      ld.gold links the viewer on my machine in 8 seconds, as
      opposed to 19 seconds with ld.bfd. Moreover, it uses a
      LOT less memory during linking (about 750 MB instead of
      2.5 GB!).
      
      VWR-24254: Don't link with fontconfig on non-linux.
      
      While we already added fontconfig in the above patch,
      that code turned out to also be used by Windows and
      Darwin (contrary to the comments in the code).
      After looking at the history of commits and a
      discussion on IRC it was decided that the original
      coder (Kyle Ambroff <ambroff@lindenlab.com>) really
      meant (LINUX AND VIEWER) instead of (NOT LINUX OR VIEWER).
      86380bb1
  8. Dec 20, 2010
  9. Dec 16, 2010
    • Aleric Inglewood's avatar
      VWR-24251: Fix -DLL_TESTS:BOOL=ON on standalone when Tut is installed in a non-standard directory. · a9021607
      Aleric Inglewood authored
      If tut/tut.hpp isn't installed in a standard include directory all tests
      fail because the found include directory for tut isn't passed to the compiler.
      
      This patch fixes this by passing it.
      Note that using include_directories() in a Find*.cmake file is bad practise.
      The correct way is to set an include dir variable and call
      include_directories() once. It certainly doesn't work for the tests anyway
      because the tests are all over the place and include_directories is on a
      per folder basis.  What is needed is to set it for each (test) target.
      
      However, there is no TARGET_INCLUDE_DIRECTORIES. The closest thing that we
      have is to set the COMPILE_FLAGS property for a target.
      
      Fortunately, standalone is only used for linux, so we can just use
      -I${TUT_INCLUDE_DIR} to get the effect we want.
      a9021607
  10. Dec 15, 2010
  11. Dec 09, 2010
  12. Nov 23, 2010
  13. Nov 19, 2010
  14. Nov 18, 2010
  15. Nov 17, 2010
  16. Nov 16, 2010
  17. Nov 15, 2010
  18. Nov 12, 2010
  19. Nov 10, 2010
  20. Nov 04, 2010
  21. Oct 28, 2010
  22. Oct 27, 2010
  23. Oct 16, 2010
  24. Oct 12, 2010
    • Techwolf Lupindo's avatar
      Allow the passing of addational fmod lib names via FMOD_NAMES from the build... · 5ec1ffe5
      Techwolf Lupindo authored
      Allow the passing of addational fmod lib names via FMOD_NAMES from the build envorment. This will allow one to pass via command line custom fmod lib names. ie: -DFMOD_NAMES:STRING:"fmod-4.44"
      5ec1ffe5
    • Techwolf Lupindo's avatar
      Clean up and rework FMOD.cmake and FindFMOD.cmake · 54065ab2
      Techwolf Lupindo authored
      FMOD.cmake:
      	Move include(Prebuilt) to prebuilt section. It is only used for prebuilt anyway.
      	set(FMOD_FIND_REQUIRED ON) due to FMOD variable is use elsewhere in cmake files. This behaviour is the same as openal.
      	Remove redudent error messages and code due to above.
      	Rework the logic to be more cleaner.
      	Clean up whitespace.
      FindFMOD.cmake
      	Remove redudent paths as cmake allready uses them as default. Use PATH_SUFFIXES instead.
      	The above will result in cmake looking in a lot more places and can handle custom build setups better.
      	Change FMOD to FMOD_FOUND. FMOD should not be change withen cmake.
      	Whitespace cleanup.
      54065ab2
  25. Oct 11, 2010
  26. Oct 02, 2010
  27. Sep 13, 2010
Loading