电机控制项目
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 

51 líneas
980 B

  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2021-12-19T08:09:36
  4. #
  5. #-------------------------------------------------
  6. QT += core gui
  7. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  8. TARGET = MotorControll_Project
  9. TEMPLATE = app
  10. DEFINES += QT_DEPRECATED_WARNINGS
  11. win32
  12. {
  13. CONFIG(debug,debug|release)
  14. {
  15. LIBS+=$$PWD/xnet/lib/debug/libX_Net.a
  16. }
  17. CONFIG(release,debug|release)
  18. {
  19. LIBS+=$$PWD/xnet/lib/release/libX_Net.a
  20. }
  21. INCLUDEPATH+=\
  22. $$PWD/xnet/include/ \
  23. $$PWD/motionctrl/include/
  24. }
  25. SOURCES += main.cpp\
  26. motorcontroll.cpp \
  27. base.cpp \
  28. xnetconnect.cpp \
  29. addpar.cpp \
  30. moretypemovement.cpp
  31. HEADERS += motorcontroll.h \
  32. base.h \
  33. xnet/include/x_net.h \
  34. xnet/include/xnetclient.h \
  35. xnetconnect.h \
  36. addpar.h \
  37. moretypemovement.h
  38. FORMS += motorcontroll.ui \
  39. xnetconnect.ui \
  40. addpar.ui \
  41. moretypemovement.ui