RadarSim.pro 1.0 KB

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