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

32 lines
661 B
Prolog
Raw Normal View History

QT += core gui widgets
TARGET = "ZeroTier One"
2013-11-13 16:50:49 -05:00
TEMPLATE = app
win32:RC_FILE = ZeroTierUI.rc
mac:ICON = zt1icon.icns
mac:QMAKE_MACOSX_DEPLOYMENT_TARGET = 10.6
mac:QMAKE_INFO_PLIST = Info.plist
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