Files
amnezia-client/client/client.pro
T

82 lines
1.7 KiB
Prolog
Raw Normal View History

2020-12-16 06:02:22 +03:00
QT += widgets core gui network xml
TARGET = AmneziaVPN
TEMPLATE = app
#CONFIG += console
DEFINES += QT_DEPRECATED_WARNINGS
HEADERS += \
2020-12-26 15:03:51 +03:00
communicator.h \
2020-12-16 06:02:22 +03:00
core/router.h \
debug.h \
defines.h \
2020-12-26 15:03:51 +03:00
localclient.h \
managementserver.h \
message.h \
openvpnprotocol.h \
2020-12-16 06:02:22 +03:00
runguard.h \
ui/Controls/SlidingStackedWidget.h \
ui/mainwindow.h \
2020-12-26 15:03:51 +03:00
utils.h \
vpnconnection.h \
vpnprotocol.h \
2020-12-16 06:02:22 +03:00
SOURCES += \
2020-12-26 15:03:51 +03:00
communicator.cpp \
2020-12-16 06:02:22 +03:00
core/router.cpp \
debug.cpp \
2020-12-26 15:03:51 +03:00
localclient.cpp \
2020-12-16 06:02:22 +03:00
main.cpp \
2020-12-26 15:03:51 +03:00
managementserver.cpp \
message.cpp \
openvpnprotocol.cpp \
2020-12-16 06:02:22 +03:00
runguard.cpp \
ui/Controls/SlidingStackedWidget.cpp \
ui/mainwindow.cpp \
2020-12-26 15:03:51 +03:00
utils.cpp \
vpnconnection.cpp \
vpnprotocol.cpp \
2020-12-16 06:02:22 +03:00
FORMS += ui/mainwindow.ui
RESOURCES += \
resources.qrc
TRANSLATIONS = \
2020-12-26 15:03:51 +03:00
translations/amneziavpn_ru.ts
2020-12-16 06:02:22 +03:00
CONFIG(release, debug|release) {
DESTDIR = $$PWD/../../AmneziaVPN-build/client/release
MOC_DIR = $$DESTDIR
OBJECTS_DIR = $$DESTDIR
RCC_DIR = $$DESTDIR
}
win32 {
OTHER_FILES += platform_win/vpnclient.rc
RC_FILE = platform_win/vpnclient.rc
HEADERS +=
SOURCES +=
2020-12-26 15:03:51 +03:00
VERSION = 1.0.0.0
2020-12-16 06:02:22 +03:00
QMAKE_TARGET_COMPANY = "AmneziaVPN"
QMAKE_TARGET_PRODUCT = "AmneziaVPN"
LIBS += \
-luser32 \
-lrasapi32 \
-lshlwapi \
-liphlpapi \
-lws2_32 \
-liphlpapi \
-lgdi32
#LIBS += -L$$PWD/../../../../../../../OpenSSL-Win32/lib/ -llibcrypto
}
macx {
ICON = $$PWD/images/app.icns
}