-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathTunnelManager.pro
57 lines (46 loc) · 1.15 KB
/
TunnelManager.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
53
54
55
56
57
#/*****************************************************************************
#* tunnelmanager - Simple GUI for SSH Tunnels
#*
#* Copyright (C) 2017-2024 Syping
#* Copyright (C) 2017 Soner Sayakci
#*
#* This software may be modified and distributed under the terms
#* of the MIT license. See the LICENSE file for details.
#*
#*****************************************************************************/
lessThan(QT_MAJOR_VERSION, 6) {
error("Qt6 is required to build tunnelmanager")
}
QT += core gui widgets
TARGET = tunnelmanager
TEMPLATE = app
win32: RC_FILE = app.rc
win32: TARGET = TunnelManager
win32: CONFIG -= embed_manifest_exe
PRECOMPILED_HEADERS += config.h
SOURCES += main.cpp \
mainwindow.cpp \
newentry.cpp \
AppEnv.cpp \
TranslationClass.cpp
HEADERS += config.h \
mainwindow.h \
newentry.h \
AppEnv.h \
TranslationClass.h \
FORMS += \
mainwindow.ui \
newentry.ui
RESOURCES += \
res.qrc \
lang/tm_tr.qrc \
lang/tr_qt6.qrc
TRANSLATIONS += \
lang/tm_de.ts
OTHER_FILES += \
app.rc \
lang\tm_de.ts \
lang\tm_de.qm \
server.png \
server.ico \
TunnelManager.exe.manifest