Skip to content
Snippets Groups Projects
  1. Feb 13, 2017
  2. Jan 06, 2017
  3. Nov 29, 2016
  4. Nov 02, 2016
  5. May 17, 2016
  6. May 10, 2016
  7. May 04, 2016
  8. Apr 28, 2016
  9. Apr 22, 2016
  10. Jan 06, 2016
  11. Jan 04, 2016
  12. Oct 01, 2015
  13. Sep 30, 2015
  14. Sep 23, 2015
  15. Jul 17, 2015
  16. Jul 15, 2015
    • Lars Bilke's avatar
      Crosscompiling to Windows on Mac OS with MXE. · 96ad32e6
      Lars Bilke authored
      - Raised minimum CMake to 3.1 because of better crosscompiling support
        and imported target feature
      - When Eigen is not found it gets downloaded before BaseLib is build
      - Silenced OpenMP CMake output
      
      Executables can be run with Wine.
      96ad32e6
  17. Jun 10, 2015
  18. Jun 01, 2015
  19. Feb 11, 2015
  20. Feb 10, 2015
    • Lars Bilke's avatar
      Empty endblock statements in CMake. · ff64242a
      Lars Bilke authored
      Ancient versions of CMake required else(), endif(), and similar block
      termination commands to have arguments matching the command starting the
      block.  This is no longer the preferred style.
      
      Run the following shell code:
      
      for c in else endif endforeach endfunction endmacro endwhile; do
          echo 's/\b'"$c"'\(\s*\)(.\+)/'"$c"'\1()/'
      done >convert.sed &&
      git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' '*CMakeLists.txt' |
      egrep -z -v '^(Utilities/cm|Source/kwsys/)' |
      egrep -z -v 'Tests/CMakeTests/While-Endwhile-' |
      xargs -0 sed -i -f convert.sed &&
      rm convert.sed
      ff64242a
    • Lars Bilke's avatar
      Changed to lower-case function naming in CMake. · f0034a62
      Lars Bilke authored
      Ancient CMake versions required upper-case commands. Later command
      names became case-insensitive. Now the preferred style is lower-case.
      
      Run the following shell code:
      
      cmake --help-command-list |
      grep -v "cmake version" |
      while read c; do
          echo 's/\b'"$(echo $c | tr '[:lower:]' '[:upper:]')"'\(\s*\)(/'"$c"'\1(/g'
      done >convert.sed &&
      git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' '*CMakeLists.txt' |
      egrep -z -v '^(Utilities/cm|Source/kwsys/)' |
      xargs -0 sed -i -f convert.sed &&
      rm convert.sed
      f0034a62
  21. Jan 16, 2015
  22. Jan 13, 2015
  23. Nov 21, 2014
  24. Nov 10, 2014
    • Lars Bilke's avatar
      Added target sync-data on envinf1 only. · be1bdf95
      Lars Bilke authored
      This copies all file from ${CMAKE_SOURCE_DIR}/../ogs6-data to
      /data/ogs/ogs6-data and then triggers a build on Jenkins which
      syncs /data/ogs6-data to opengeosys.org
      be1bdf95
  25. Oct 21, 2014
  26. Oct 20, 2014
  27. Oct 17, 2014
Loading