mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
45e20187cc
The auto-updater is essentially done, except for the GUI. For now this is only an API. The API works, but the tools to manage the update server would need some love
37 lines
640 B
Prolog
37 lines
640 B
Prolog
#-------------------------------------------------
|
|
#
|
|
# 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
|
|
|
|
SOURCES += main.cpp\
|
|
widget.cpp \
|
|
settingsDir.cpp \
|
|
update.cpp \
|
|
serialize.cpp
|
|
|
|
HEADERS += widget.h \
|
|
settingsDir.h \
|
|
update.h \
|
|
serialize.h
|
|
|
|
FORMS += widget.ui
|
|
|
|
RESOURCES += \
|
|
res.qrc
|
|
|
|
INCLUDEPATH += libs/include
|
|
|
|
RC_FILE = windows/updater.rc
|
|
|
|
LIBS += -L$$PWD/libs/lib/ -lsodium
|