RadarSim.pro 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. QT += core gui
  2. QT += websockets
  3. QT += charts
  4. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  5. CONFIG += c++11
  6. # You can make your code fail to compile if it uses deprecated APIs.
  7. # In order to do so, uncomment the following line.
  8. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  9. SOURCES += \
  10. SigGen/Radar001/LinearFMWaveform.cpp \
  11. SigGen/Radar001/RadarSignalGenerator.cpp \
  12. SigGen/rtGetInf.cpp \
  13. SigGen/rtGetNaN.cpp \
  14. SigGen/rt_nonfinite.cpp \
  15. main.cpp \
  16. mainwindow.cpp \
  17. radarserver.cpp \
  18. radarsiggen.cpp \
  19. interceptradar.cpp \
  20. simdisplay.cpp
  21. HEADERS += \
  22. SigGen/Radar001/LinearFMWaveform.h \
  23. SigGen/Radar001/RadarSignalGenerator.h \
  24. SigGen/rtGetInf.h \
  25. SigGen/rtGetNaN.h \
  26. SigGen/rt_nonfinite.h \
  27. SigGen/rtwtypes.h \
  28. SigGen/tmwtypes.h \
  29. mainwindow.h \
  30. radarserver.h \
  31. radarsiggen.h \
  32. interceptradar.h \
  33. simdisplay.h
  34. FORMS += \
  35. mainwindow.ui \
  36. simdisplay.ui
  37. # Default rules for deployment.
  38. qnx: target.path = /tmp/$${TARGET}/bin
  39. else: unix:!android: target.path = /opt/$${TARGET}/bin
  40. !isEmpty(target.path): INSTALLS += target