ZeroTierUI.pro 730 B

1234567891011121314151617181920212223242526272829303132333435
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2013-11-13T15:03:09
  4. #
  5. #-------------------------------------------------
  6. QT += core gui
  7. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  8. TARGET = "ZeroTier One"
  9. TEMPLATE = app
  10. # ZeroTier One must be built before building this, since it links in the
  11. # client code and some stuff from Utils to talk to the running service.
  12. LIBS += ../node/*.o
  13. SOURCES += main.cpp\
  14. mainwindow.cpp \
  15. network.cpp \
  16. aboutwindow.cpp
  17. HEADERS += mainwindow.h \
  18. network.h \
  19. aboutwindow.h \
  20. ../node/Node.hpp \
  21. ../node/Utils.hpp \
  22. ../node/Defaults.hpp
  23. FORMS += mainwindow.ui \
  24. network.ui \
  25. aboutwindow.ui
  26. RESOURCES += \
  27. resources.qrc