Skip to content
Snippets Groups Projects
Unverified Commit ed9c113c authored by Merwane Bouri's avatar Merwane Bouri
Browse files

Correction bug compilation

parent 6e2e99f3
No related branches found
No related tags found
No related merge requests found
Pipeline #78340 passed
......@@ -20,8 +20,8 @@ private:
public:
TransitionRule();
virtual ~TransitionRule();
TransitionRule(){}
virtual ~TransitionRule(){}
//! \brief Vérifie que les formats de voisinage proposés sont compatibles
//! \param Vector des NeighborhoodFormat à vérifier
......
......@@ -4,6 +4,8 @@
#include "structuresavingdialog.hpp"
#include "structurewriter.hpp"
#include <QDate>
#include <QTextStream>
MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent)
......
......@@ -26,12 +26,11 @@ SOURCES += \
interface.cpp \
grid.cpp \
history.cpp \
lifegametransition.h \
vonNeumannNeighborhoodRule.cpp \
structurewriter.cpp \
structuresavingdialog.cpp \
structurelibraryview.cpp \
transitionrule.hpp
structurelibraryview.cpp
HEADERS += \
../include/automaton.hpp \
......@@ -57,7 +56,7 @@ HEADERS += \
../include/history.h \
../include/structuresavingdialog.hpp \
../include/structurelibraryview.hpp \
../include/lifegametransition.cpp
../include/transitionrule.hpp
FORMS += \
../forms/interface.ui \
......@@ -77,5 +76,5 @@ CONFIG(debug, debug|release) {
}
# On copie les fichiers de pattern vers le dossier d'exécution
message($$system($$QMAKE_COPY_DIR $$shell_quote($$PWD/../patterns) $$shell_quote($$OUT_PWD/$$DEBUG_OR_RELEASE/patterns)))
message($$system($$QMAKE_COPY_DIR $$shell_quote($$PWD/../patterns) $$shell_quote($$OUT_PWD/patterns)))
#message($$system($$QMAKE_COPY_DIR $$shell_quote($$PWD/../patterns) $$shell_quote($$OUT_PWD/$$DEBUG_OR_RELEASE/patterns)))
#message($$system($$QMAKE_COPY_DIR $$shell_quote($$PWD/../patterns) $$shell_quote($$OUT_PWD/patterns)))
#include <QtTest/QtTest>
#include <algorithm>
#include "cellulut_tests.hpp"
#include "alphabet.hpp"
void CellulutTests::test_alphabet(){
}
......@@ -24,6 +24,8 @@ private slots:
void test_arbitrary_neighborhood_rule();
void test_alphabet();
};
......
......@@ -22,6 +22,7 @@ SOURCES += \
../src/history.cpp \
../src/grid.cpp \
../src/mooreNeighborhoodRule.cpp \
alphabet_test.cpp \
arbitraryneighborhoodrule_test.cpp \
coord_tests.cpp \
factory_tests.cpp \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment