Skip to content
Snippets Groups Projects
  1. Jun 15, 2020
  2. Jun 10, 2020
  3. Jun 05, 2020
  4. Jun 04, 2020
  5. Jun 03, 2020
  6. May 26, 2020
  7. May 25, 2020
  8. May 19, 2020
  9. May 18, 2020
    • Dominik Thoennes's avatar
      Replaced `waLBerla_python_file_generates` with `waLBerla_generate_target_from_python` · f30f0fa4
      Dominik Thoennes authored
      This new function does the actual generation using pystencils and creates a target library that can be used as a dependency as usual. One should not list the python script itself anymore in add_executable.
      Convention: Use the AppName as a prefix for the generated lib!
      
      Example Usage:
      
      waLBerla_generate_target_from_python( NAME AppNameGeneratedLib FILE GenerateKernel.py OUT_FILES Kernel.h Kernel.cpp)
      
      waLBerla_add_executable ( NAME AppNameGeneratedLibTest DEPENDS GeneratedLib)
      f30f0fa4
  10. Mar 31, 2020
  11. Mar 30, 2020
  12. Mar 17, 2020
  13. Mar 11, 2020
  14. Mar 06, 2020
  15. Feb 29, 2020
  16. Feb 28, 2020
  17. Feb 27, 2020
  18. Feb 26, 2020
  19. Feb 25, 2020
  20. Feb 24, 2020
  21. Feb 21, 2020
  22. Jan 29, 2020
  23. Jan 27, 2020
  24. Nov 21, 2019
  25. Nov 13, 2019
  26. Nov 12, 2019
  27. Nov 08, 2019
  28. Sep 17, 2019
  29. Sep 16, 2019
  30. Sep 04, 2019
  31. Aug 16, 2019
    • Dominik Thoennes's avatar
      [API] move SQLite into its own module · 0bff0985
      Dominik Thoennes authored
      To break unneeded dependencies in postprocessing the SQLite part is
      moved to its own module and namespace.
      Therefore in the include and the function calls
      "postprocessing" hast to be removed or replaced by "sqlite" e.g.:
      #include "postprocessing/sqlite/SQLite.h" ->
      #include "sqlite/SQLite.h"
      
      postprocessing::store... -> sqlite::store...
      0bff0985
  32. Aug 13, 2019