MeasurePlaque.pro 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. CONFIG += static thread
  2. QT += core
  3. DEFINES += IMPORTEXPORT
  4. # output relative dirname
  5. Release: DIRNAME = release
  6. Debug: DIRNAME = debug
  7. CONFIG(debug, debug|release) {
  8. DIRNAME = debug
  9. }
  10. CONFIG(release, debug|release) {
  11. DIRNAME = release
  12. }
  13. INCLUDEPATH +=
  14. TARGET = MeasurePlaque
  15. TEMPLATE = lib
  16. SOURCES += \
  17. Container/Video.cpp \
  18. IO/DicomIO.cpp \
  19. Mouchard/Mouchard.cpp \
  20. NR/ToolsMath.cpp \
  21. Object/regionEllipse.cpp \
  22. Object/rectangle.cpp \
  23. Object/point.cpp \
  24. Object/drawEllipse.cpp \
  25. Plaque/vector.cpp \
  26. Plaque/scale.cpp \
  27. Plaque/region.cpp \
  28. Plaque/plaqueinterfacedll.cpp \
  29. Plaque/plaqueinterface.cpp \
  30. Plaque/plaquebase.cpp \
  31. Plaque/MeanEstimate.cpp \
  32. Plaque/cplaqueresult.cpp \
  33. TRIM/imgbase.cpp \
  34. Container/extendedimage.cpp
  35. HEADERS += define.h \
  36. Container/Video.h \
  37. Container/ExtendedImage.h \
  38. IO/DicomIO.h \
  39. Mouchard/Mouchard.h \
  40. Mouchard/Identifiant.h \
  41. NR/ToolsMath.h \
  42. Object/regionEllipse.h \
  43. Object/rectangle.h \
  44. Object/drawEllipse.h \
  45. Pattern/Singleton.h \
  46. Plaque/vector.h \
  47. Plaque/scale.h \
  48. Plaque/Ressource.h \
  49. Plaque/region.h \
  50. Plaque/point.h \
  51. Plaque/PlaqueResult.h \
  52. Plaque/PlaqueInterfaceDLL.h \
  53. Plaque/PlaqueInterface.h \
  54. Plaque/PlaqueBase.h \
  55. Plaque/MeanEstimate.h \
  56. Plaque/CPlaqueResult.h \
  57. Plaque/CPlaqueInfo.h \
  58. TRIM/img.h \
  59. Container/extendedimage.h
  60. DESTDIR = $$DIRNAME
  61. # source file & target dir
  62. linux-g++-64 {
  63. #SRC_FILE = $$DIRNAME/$${TARGET}
  64. #DST_DIR = ../../../bin/linux64/$$DIRNAME/
  65. #CP_OPTIONS = -d
  66. }
  67. # copy target
  68. #QMAKE_POST_LINK += $$QMAKE_COPY $$CP_OPTIONS $$quote($$SRC_FILE) $$quote($$DST_DIR) $$escape_expand(\\n\\t)