ZeroTierUI.pro 661 B

12345678910111213141516171819202122232425262728293031
  1. QT += core gui widgets
  2. TARGET = "ZeroTier One"
  3. TEMPLATE = app
  4. win32:RC_FILE = ZeroTierUI.rc
  5. mac:ICON = zt1icon.icns
  6. mac:QMAKE_MACOSX_DEPLOYMENT_TARGET = 10.6
  7. mac:QMAKE_INFO_PLIST = Info.plist
  8. # ZeroTier One must be built before building this, since it links in the
  9. # client code and some stuff from Utils to talk to the running service.
  10. LIBS += ../node/*.o
  11. SOURCES += main.cpp\
  12. mainwindow.cpp \
  13. network.cpp \
  14. aboutwindow.cpp
  15. HEADERS += mainwindow.h \
  16. network.h \
  17. aboutwindow.h \
  18. ../node/Node.hpp \
  19. ../node/Utils.hpp \
  20. ../node/Defaults.hpp
  21. FORMS += mainwindow.ui \
  22. network.ui \
  23. aboutwindow.ui
  24. RESOURCES += \
  25. resources.qrc