first minimal stab at LAMMPS GUI

This commit is contained in:
Axel Kohlmeyer
2023-07-24 19:03:40 -04:00
parent a4a206e601
commit b87ced52b4
9 changed files with 888 additions and 1 deletions

11
tools/lammps-gui/main.cpp Normal file
View File

@ -0,0 +1,11 @@
#include "lammpsgui.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
LammpsGui w;
w.show();
return a.exec();
}