blob: 2eea3bdd129513e997f66b547f3e66728284bfcc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
TEMPLATE = app
TARGET = LogReceiver
QT += core \
gui \
network
LIBS += -lsysfs \
-L/home/niklas/fbgui/customdhcpcd/src/build \
-llibcustomdhcpcd
INCLUDEPATH += /home/niklas/fbgui/customdhcpcd/src
HEADERS += routemanager.h \
interfaceconfiguration.h \
ndgui.h \
logreceiver.h \
abortbootdialog.h \
chooseinterfacedialog.h
SOURCES += routemanager.cpp \
interfaceconfiguration.cpp \
ndgui.cpp \
main.cpp \
logreceiver.cpp \
abortbootdialog.cpp \
chooseinterfacedialog.cpp
FORMS += ndgui.ui
RESOURCES += nd.qrc
|