forked from luokyme/NetAssistant
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNetAssistant.pro
More file actions
43 lines (29 loc) · 700 Bytes
/
NetAssistant.pro
File metadata and controls
43 lines (29 loc) · 700 Bytes
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
#-------------------------------------------------
#
# Project created by QtCreator 2014-04-10T19:21:07
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = NetAssistant
target.path=/usr/local/bin
INSTALLS=target
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
TcpServer.cpp
HEADERS += \
define.h \
mainwindow.h \
TcpServer.h
FORMS += \
mainwindow.ui
RESOURCES += \
qrc.qrc
QT +=network
RC_FILE += icon.rc
DISTFILES += \
android/AndroidManifest.xml
TRANSLATIONS += language/English.ts \
language/Chinese.ts
ANDROID_PACKAGE_SOURCE_DIR = $$PWD/android