-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathWifiAssist.pro
52 lines (42 loc) · 1.22 KB
/
WifiAssist.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#-------------------------------------------------
#
# Project created by QtCreator 2016-03-11T22:37:32
#
#-------------------------------------------------
QT += core gui network
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = $$PWD/INSTALL/WifiAssist
TEMPLATE = app
CONFIG += c++11
include($$PWD/3rdParty/QSimpleUpdater/QSimpleUpdater.pri)
SOURCES += $$PWD/src/main.cpp\
$$PWD/src/mainwindow.cpp \
$$PWD/src/wifi.cpp \
$$PWD/src/wsettings.cpp \
$$PWD/src/wdevices.cpp \
$$PWD/src/about.cpp \
$$PWD/src/singleinstance.cpp \
$$PWD/src/device.cpp \
$$PWD/src/wthread.cpp \
$$PWD/src/wlistwidgetitem.cpp \
HEADERS += src/mainwindow.h \
$$PWD/src/wifi.h \
$$PWD/src/wsettings.h \
$$PWD/src/wdevices.h \
$$PWD/src/about.h \
$$PWD/src/singleinstance.h \
$$PWD/src/device.h \
$$PWD/src/wthread.h \
$$PWD/src/wlistwidgetitem.h \
FORMS += $$PWD/src/mainwindow.ui \
$$PWD/src/about.ui \
$$PWD/src/wlistwidgetitem.ui
DISTFILES +=
RESOURCES += \
$$PWD/resources/icon.qrc \
$$PWD/resources/i18n.qrc \
resources/corpo.qrc
TRANSLATIONS += \
$$PWD/resources/i18n/en_US.ts \
$$PWD/resources/i18n/zh_CN.ts \
$$PWD/resources/i18n/zh_TW.ts \