|
1234567891011121314151617181920212223242526272829303132333435363738 |
- #-------------------------------------------------
- #
- # Project created by QtCreator 2014-05-07T19:11:58
- #
- #-------------------------------------------------
-
- CONFIG += c++11
-
- QT += core gui
- QT += xml
-
- greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
-
- TARGET = deuchnord-hermes
- TEMPLATE = app
-
-
- SOURCES += main.cpp\
- mainwindow.cpp \
- produititem.cpp \
- infosproduitdialog.cpp \
- gestionmagasinsdialog.cpp \
- aboutdialog.cpp
-
- HEADERS += mainwindow.h \
- produititem.h \
- infosproduitdialog.h \
- gestionmagasinsdialog.h \
- aboutdialog.h
-
- FORMS += mainwindow.ui \
- produititem.ui \
- infosproduitdialog.ui \
- gestionmagasinsdialog.ui \
- aboutdialog.ui
-
- RESOURCES += \
- resources.qrc
|