RadarSim.pro 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. SigGen/Radar101/RadarSignalGenerator101.cpp \
  22. SigGen/Radar101/RectangularWaveform.cpp \
  23. SigGen/Radar102/RadarSignalGenerator102.cpp \
  24. SigGen/Radar102/RectangularWaveform.cpp \
  25. SigGen/Radar103/RadarSignalGenerator103.cpp \
  26. SigGen/Radar103/RectangularWaveform.cpp \
  27. SigGen/Radar201/AbstractPhaseCodedWaveform.cpp \
  28. SigGen/Radar201/PhaseCodedWaveform.cpp \
  29. SigGen/Radar201/RadarSignalGenerator201.cpp \
  30. SigGen/Radar202/PhaseCodedWaveform.cpp \
  31. SigGen/Radar202/RadarSignalGenerator202.cpp \
  32. SigGen/Radar203/PhaseCodedWaveform.cpp \
  33. SigGen/Radar203/RadarSignalGenerator203.cpp \
  34. SigGen/Radar301/AbstractLinearFMWaveform.cpp \
  35. SigGen/Radar301/LinearFMWaveform.cpp \
  36. SigGen/Radar301/RadarSignalGenerator301.cpp \
  37. SigGen/Radar302/LinearFMWaveform.cpp \
  38. SigGen/Radar302/RadarSignalGenerator302.cpp \
  39. SigGen/Radar303/LinearFMWaveform.cpp \
  40. SigGen/Radar303/RadarSignalGenerator303.cpp \
  41. SigGen/Radar401/FMCWWaveform.cpp \
  42. SigGen/Radar401/RadarSignalGenerator401.cpp \
  43. SigGen/Radar402/FMCWWaveform.cpp \
  44. SigGen/Radar402/RadarSignalGenerator402.cpp \
  45. SigGen/Radar403/FMCWWaveform.cpp \
  46. SigGen/Radar403/RadarSignalGenerator403.cpp
  47. HEADERS += \
  48. SigGen/Radar001/LinearFMWaveform.h \
  49. SigGen/Radar001/RadarSignalGenerator.h \
  50. SigGen/rtGetInf.h \
  51. SigGen/rtGetNaN.h \
  52. SigGen/rt_nonfinite.h \
  53. SigGen/rtwtypes.h \
  54. SigGen/tmwtypes.h \
  55. mainwindow.h \
  56. radarserver.h \
  57. radarsiggen.h \
  58. interceptradar.h \
  59. simdisplay.h \
  60. SigGen/Radar101/RadarSignalGenerator101.h \
  61. SigGen/Radar101/RectangularWaveform.h \
  62. SigGen/Radar102/RadarSignalGenerator102.h \
  63. SigGen/Radar102/RectangularWaveform.h \
  64. SigGen/Radar103/RadarSignalGenerator103.h \
  65. SigGen/Radar103/RectangularWaveform.h \
  66. SigGen/Radar201/AbstractPhaseCodedWaveform.h \
  67. SigGen/Radar201/PhaseCodedWaveform.h \
  68. SigGen/Radar201/RadarSignalGenerator201.h \
  69. SigGen/Radar202/PhaseCodedWaveform.h \
  70. SigGen/Radar202/RadarSignalGenerator202.h \
  71. SigGen/Radar203/PhaseCodedWaveform.h \
  72. SigGen/Radar203/RadarSignalGenerator203.h \
  73. SigGen/Radar301/AbstractLinearFMWaveform.h \
  74. SigGen/Radar301/LinearFMWaveform.h \
  75. SigGen/Radar301/RadarSignalGenerator301.h \
  76. SigGen/Radar302/LinearFMWaveform.h \
  77. SigGen/Radar302/RadarSignalGenerator302.h \
  78. SigGen/Radar303/LinearFMWaveform.h \
  79. SigGen/Radar303/RadarSignalGenerator303.h \
  80. SigGen/Radar401/FMCWWaveform.h \
  81. SigGen/Radar401/RadarSignalGenerator401.h \
  82. SigGen/Radar402/FMCWWaveform.h \
  83. SigGen/Radar402/RadarSignalGenerator402.h \
  84. SigGen/Radar403/FMCWWaveform.h \
  85. SigGen/Radar403/RadarSignalGenerator403.h
  86. FORMS += \
  87. mainwindow.ui \
  88. simdisplay.ui
  89. # Default rules for deployment.
  90. qnx: target.path = /tmp/$${TARGET}/bin
  91. else: unix:!android: target.path = /opt/$${TARGET}/bin
  92. !isEmpty(target.path): INSTALLS += target