Skip to content
Snippets Groups Projects
  1. Nov 08, 2014
    • Jö Fahlke's avatar
      [vc] Simplify ignore lists. · 251deeb0
      Jö Fahlke authored
      "Makefile.in", "*.o", etc. need only be listed in the toplevel .gitignore, the
      rules are applied recursively.
      
      Test programs etc. should be listed as "/program" in their directory's
      .gitignore, so they are not accidentially ignored in a lower level directory.
      251deeb0
  2. Oct 02, 2014
    • Dominic Kempf's avatar
      [CMake] Allow adding compile flags upon running make · 10ece11c
      Dominic Kempf authored and Dominic Kempf's avatar Dominic Kempf committed
      Autotools users kept complaining, that it is conceptionally
      disappointing that targets cannot be build with flags set upon
      entering make (e.g. make CXXFLAGS+="-myflag" mytarget). This
      patch introduces a small hack, that allows for such feature
      in cmake. It is, however, (at least) questionable whether we
      want to include it. Still, for your information and convenience:
      
      To use the feature you must:
      - be using a CMake generator that is based on Makefiles (defaults to true)
      - set the define ALLOW_EXTRA_CXXFLAGS to true, e.g. by including
        CMAKE_FLAGS="-DALLOW_EXTRA_CXXFLAGS=1" in your optsfile.
      - reconfigure your project
      
      cmake will then wrap a small shell script around your compiler
      and allow you to append the content of an environment variable
      to yout compiler flags. Run for above example:
      EXTRA_CXXFLAGS="-myflag" make mytarget
      
      The additional flags will be visually confirmed if and only if
      you set the verbosity (as always):
      EXTRA_CXXFLAGS="-myflag" make VERBOSE=1 mytarget
      10ece11c
  3. Sep 16, 2014
  4. Jul 18, 2014
  5. Jul 17, 2014
  6. Jul 06, 2014
  7. Apr 28, 2014
  8. Apr 27, 2014
  9. Apr 17, 2014
  10. Apr 14, 2014
  11. Mar 23, 2014
  12. Mar 22, 2014
  13. Mar 21, 2014
  14. Feb 14, 2014
  15. Feb 07, 2014
  16. Feb 04, 2014
  17. Jan 31, 2014
  18. Jan 29, 2014
  19. Jan 28, 2014
  20. Jan 27, 2014
    • Markus Blatt's avatar
      [cmake,release] Prevent searching twice for modules. · b58b8475
      Markus Blatt authored
      Before we tried to search for dune-common twice (once without a version
      and then with the required version). Unfortunately this breaks because
      we are adding the same library target twice. With this patch we only
      search for a module once.
      b58b8475
Loading