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.
NetworkPacketComposer/networkpacketcomposer.pro

36 lines
795 B
Prolog
Raw Normal View History

#-------------------------------------------------
#
# 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
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
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
INCLUDEPATH += $$PWD/../QtGuidedEditor
DEPENDPATH += $$PWD/../QtGuidedEditor