mirror of https://github.com/qTox/qTox.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
673 B
42 lines
673 B
#------------------------------------------------- |
|
# |
|
# Project created by QtCreator 2014-11-09T21:09:08 |
|
# |
|
#------------------------------------------------- |
|
|
|
QT += core gui |
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets |
|
|
|
TARGET = qtox-updater |
|
TEMPLATE = app |
|
|
|
CONFIG += c++11 |
|
|
|
QMAKE_CXXFLAGS += -fno-exceptions |
|
|
|
SOURCES += main.cpp\ |
|
widget.cpp \ |
|
update.cpp \ |
|
serialize.cpp \ |
|
settings.cpp |
|
|
|
HEADERS += widget.h \ |
|
update.h \ |
|
serialize.h \ |
|
settings.h |
|
|
|
FORMS += widget.ui |
|
|
|
RESOURCES += \ |
|
res.qrc |
|
|
|
INCLUDEPATH += libs/include |
|
|
|
RC_FILE = windows/updater.rc |
|
|
|
LIBS += -L$$PWD/libs/lib/ -lsodium |
|
|
|
win32 { |
|
LIBS += -lshell32 -luuid |
|
}
|
|
|