diff --git a/.gitignore b/.gitignore index 75c107b..6fdeb0e 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ *.pro.user +build-* diff --git a/README b/README new file mode 100644 index 0000000..785fa74 --- /dev/null +++ b/README @@ -0,0 +1,23 @@ + Argento +=============== +A management software for GOLEM - Gruppo Operativo Linux Empoli. + +== Components == +argento: + president's interface to run on Sala-Corsi + +nicolodi: + socio's interface to run on Limortouch + +== Dependencies == +On Debian/Ubuntu/Mint: + qt5-default + ... TODO ... + +== Build == + $ cd $REPOSITORY + $ mkdir build-component + $ cd build-component + $ qmake ../component + $ make -j$(nproc) + diff --git a/EditWindow.cpp b/argento/EditWindow.cpp similarity index 100% rename from EditWindow.cpp rename to argento/EditWindow.cpp diff --git a/EditWindow.h b/argento/EditWindow.h similarity index 100% rename from EditWindow.h rename to argento/EditWindow.h diff --git a/EditWindow.ui b/argento/EditWindow.ui similarity index 100% rename from EditWindow.ui rename to argento/EditWindow.ui diff --git a/MainWindow.cpp b/argento/MainWindow.cpp similarity index 100% rename from MainWindow.cpp rename to argento/MainWindow.cpp diff --git a/MainWindow.h b/argento/MainWindow.h similarity index 100% rename from MainWindow.h rename to argento/MainWindow.h diff --git a/MainWindow.ui b/argento/MainWindow.ui similarity index 100% rename from MainWindow.ui rename to argento/MainWindow.ui diff --git a/SociModel.cpp b/argento/SociModel.cpp similarity index 100% rename from SociModel.cpp rename to argento/SociModel.cpp diff --git a/SociModel.h b/argento/SociModel.h similarity index 100% rename from SociModel.h rename to argento/SociModel.h diff --git a/gestionale.pro b/argento/argento.pro similarity index 97% rename from gestionale.pro rename to argento/argento.pro index 92eba72..56a4761 100644 --- a/gestionale.pro +++ b/argento/argento.pro @@ -1,14 +1,13 @@ #------------------------------------------------- -# # Project created by QtCreator 2019-08-03T15:05:59 -# +# adapted by giomba #------------------------------------------------- QT += core gui sql greaterThan(QT_MAJOR_VERSION, 4): QT += widgets -TARGET = gestionale +TARGET = argento TEMPLATE = app # The following define makes your compiler emit warnings if you use diff --git a/db.cpp b/argento/db.cpp similarity index 100% rename from db.cpp rename to argento/db.cpp diff --git a/db.h b/argento/db.h similarity index 100% rename from db.h rename to argento/db.h diff --git a/fullQuery.cpp b/argento/fullQuery.cpp similarity index 100% rename from fullQuery.cpp rename to argento/fullQuery.cpp diff --git a/fullQuery.h b/argento/fullQuery.h similarity index 100% rename from fullQuery.h rename to argento/fullQuery.h diff --git a/main.cpp b/argento/main.cpp similarity index 100% rename from main.cpp rename to argento/main.cpp diff --git a/status.cpp b/argento/status.cpp similarity index 100% rename from status.cpp rename to argento/status.cpp diff --git a/status.h b/argento/status.h similarity index 100% rename from status.h rename to argento/status.h