Skip to content
Snippets Groups Projects
  1. Mar 10, 2015
  2. Mar 06, 2015
  3. Feb 25, 2015
  4. Feb 24, 2015
  5. Feb 16, 2015
  6. Feb 06, 2015
  7. Feb 03, 2015
  8. Feb 02, 2015
  9. Jan 29, 2015
  10. Jan 28, 2015
    • Dominic Kempf's avatar
      [CMake] add macro dune_symlink_to_source_files · 1ca7dbfd
      Dominic Kempf authored
      add symlinks to the build tree, which point to files in the source tree.
      Foreach file given in "files", a symlink of that name is created in the
      corresponding build directory. Use for ini files, grid files etc. A warning
      is issued on Windows systems.
      1ca7dbfd
    • Dominic Kempf's avatar
      [CMake] Add macro dune_symlink_to_source_tree · 61841f1f
      Dominic Kempf authored
      Add a symlink called src_dir to all directories in the build tree.
      That symlink points to the corresponding directory in the source tree.
      Call the macro from the toplevel CMakeLists.txt file of your project.
      You can also call it from some other directory, creating only symlinks
      in that directory and all directories below. A warning is issued on
      Windows systems.
      61841f1f
  11. Jan 27, 2015
  12. Jan 26, 2015
  13. Jan 19, 2015
    • Dominic Kempf's avatar
      [CMake][Bugfix] Fix two typos in the metis test · 9addf077
      Dominic Kempf authored
      Tried to include CheckSymbolExists instead of CheckFunctionExists.
      The wrong include only triggered in a very rare case, where
      the module had not been included from elsewhere in the project.
      
      Also, a typo in a library variable.
      9addf077
  14. Jan 02, 2015
  15. Dec 22, 2014
  16. Dec 19, 2014
  17. Dec 12, 2014
  18. Dec 11, 2014
  19. Nov 26, 2014
  20. Nov 21, 2014
    • Christoph Grüninger's avatar
      [buildsystem] Do not call check for Boost base. · 94fb9167
      Christoph Grüninger authored
      With the removal of the fall-back code for many C++11 features
      like shared_ptr or hash, we no longer need Boost in
      dune-common.
      If your model has relies on a boost check, add the call to
      the buildsystem of your module. The Dune-islt commit
      …3ee92f05012 is an example what must be done.
      94fb9167
  21. 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
  22. Sep 16, 2014
  23. Jul 18, 2014
  24. Jul 06, 2014
  25. Apr 28, 2014
  26. Apr 27, 2014
  27. Apr 14, 2014
Loading