This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhangyang-zerotierone/ZeroTierUI/ZeroTierUI.pro

36 lines
728 B
Prolog
Raw Normal View History

2013-11-13 16:50:49 -05:00
#-------------------------------------------------
#
# Project created by QtCreator 2013-11-13T15:03:09
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = ZeroTierUI
TEMPLATE = app
2013-11-19 15:05:14 -05:00
# ZeroTier One must be built before building this, since it links in the
# client code and some stuff from Utils to talk to the running service.
LIBS += ../node/*.o
2013-11-13 16:50:49 -05:00
SOURCES += main.cpp\
2013-11-19 15:05:14 -05:00
mainwindow.cpp \
network.cpp \
aboutwindow.cpp
2013-11-13 16:50:49 -05:00
HEADERS += mainwindow.h \
2013-11-19 15:05:14 -05:00
network.h \
aboutwindow.h \
../node/Node.hpp \
../node/Utils.hpp \
../node/Defaults.hpp
2013-11-13 16:50:49 -05:00
FORMS += mainwindow.ui \
2013-11-19 15:05:14 -05:00
network.ui \
aboutwindow.ui
2013-11-13 16:50:49 -05:00
RESOURCES += \
2013-11-19 15:05:14 -05:00
resources.qrc