This repository has been archived on 2020-12-30. You can view files and clone it, but cannot push or open issues or pull requests.
2015-03-22 19:41:59 +01:00
|
|
|
#-------------------------------------------------
|
|
|
|
#
|
|
|
|
# Project created by QtCreator 2015-01-06T11:56:33
|
|
|
|
#
|
|
|
|
#-------------------------------------------------
|
|
|
|
|
|
|
|
QT += core gui
|
|
|
|
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
|
|
|
2015-09-06 18:57:18 +02:00
|
|
|
QMAKE_CXXFLAGS += -std=c++14
|
|
|
|
|
2015-03-22 19:41:59 +01:00
|
|
|
TARGET = networkpacketcomposer
|
|
|
|
TEMPLATE = app
|
|
|
|
|
|
|
|
|
|
|
|
SOURCES += main.cpp\
|
|
|
|
mainwindow.cpp \
|
2015-04-04 20:06:49 +02:00
|
|
|
flowlayout.cpp \
|
|
|
|
guidededitorelement.cpp \
|
2015-09-06 18:57:18 +02:00
|
|
|
abstractguidededitormodel.cpp \
|
|
|
|
guidededitorview.cpp \
|
|
|
|
guidededitorlayer.cpp \
|
|
|
|
guidededitorelementview.cpp
|
2015-03-22 19:41:59 +01:00
|
|
|
|
|
|
|
HEADERS += mainwindow.h \
|
2015-04-04 20:06:49 +02:00
|
|
|
flowlayout.h \
|
|
|
|
guidededitorelement.h \
|
2015-09-06 18:57:18 +02:00
|
|
|
abstractguidededitormodel.h \
|
|
|
|
guidededitorview.h \
|
|
|
|
guidededitorlayer.h \
|
|
|
|
guidededitorelementview.h
|
2015-03-22 19:41:59 +01:00
|
|
|
|
|
|
|
INCLUDEPATH += $$PWD/../QtGuidedEditor
|
|
|
|
DEPENDPATH += $$PWD/../QtGuidedEditor
|