Skip to content
Snippets Groups Projects
Commit af2d0951 authored by Samuel Kemmler's avatar Samuel Kemmler
Browse files

Remove gui

parent c681f439
Branches master
No related merge requests found
Pipeline #77818 passed with stage
in 6 minutes and 4 seconds
......@@ -2,5 +2,5 @@ waLBerla_link_files_to_builddir( *.prm *.py)
waLBerla_add_executable ( NAME ExampleApp
FILES ExampleApp.cpp
DEPENDS blockforest core field lbm geometry timeloop gui )
DEPENDS blockforest core field lbm geometry timeloop )
......@@ -21,7 +21,6 @@
#include "blockforest/Initialization.h"
#include "core/Environment.h"
#include "field/Field.h"
#include "gui/Gui.h"
#include "timeloop/SweepTimeloop.h"
namespace walberla {
......@@ -48,8 +47,7 @@ int main( int argc, char ** argv )
SweepTimeloop timeloop( blocks, uint_c(1) );
GUI gui( timeloop, blocks, argc, argv );
gui.run();
timeloop.run();
return EXIT_SUCCESS;
}
......
......@@ -7,6 +7,5 @@ waLBerla_generate_target_from_python(NAME LatticeModelGenerated FILE LatticeMode
waLBerla_add_executable ( NAME ExampleAppCodegen
FILES ExampleApp.cpp
DEPENDS blockforest core field lbm geometry timeloop gui
LatticeModelGenerated)
DEPENDS blockforest core field lbm geometry timeloop LatticeModelGenerated)
......@@ -21,7 +21,6 @@
#include "blockforest/Initialization.h"
#include "core/Environment.h"
#include "field/Field.h"
#include "gui/Gui.h"
#include "timeloop/SweepTimeloop.h"
namespace walberla {
......@@ -48,8 +47,7 @@ int main( int argc, char ** argv )
SweepTimeloop timeloop( blocks, uint_c(1) );
GUI gui( timeloop, blocks, argc, argv );
gui.run();
timeloop.run();
return EXIT_SUCCESS;
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment