| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- CONFIG += static thread
- QT += core
- DEFINES += IMPORTEXPORT
- # output relative dirname
- Release: DIRNAME = release
- Debug: DIRNAME = debug
- CONFIG(debug, debug|release) {
- DIRNAME = debug
- }
- CONFIG(release, debug|release) {
- DIRNAME = release
- }
- INCLUDEPATH +=
- TARGET = MeasurePlaque
- TEMPLATE = lib
- SOURCES += \
- Container/Video.cpp \
- IO/DicomIO.cpp \
- Mouchard/Mouchard.cpp \
- NR/ToolsMath.cpp \
- Object/regionEllipse.cpp \
- Object/rectangle.cpp \
- Object/point.cpp \
- Object/drawEllipse.cpp \
- Plaque/vector.cpp \
- Plaque/scale.cpp \
- Plaque/region.cpp \
- Plaque/plaqueinterfacedll.cpp \
- Plaque/plaqueinterface.cpp \
- Plaque/plaquebase.cpp \
- Plaque/MeanEstimate.cpp \
- Plaque/cplaqueresult.cpp \
- TRIM/imgbase.cpp \
- Container/extendedimage.cpp
- HEADERS += define.h \
- Container/Video.h \
- Container/ExtendedImage.h \
- IO/DicomIO.h \
- Mouchard/Mouchard.h \
- Mouchard/Identifiant.h \
- NR/ToolsMath.h \
- Object/regionEllipse.h \
- Object/rectangle.h \
- Object/drawEllipse.h \
- Pattern/Singleton.h \
- Plaque/vector.h \
- Plaque/scale.h \
- Plaque/Ressource.h \
- Plaque/region.h \
- Plaque/point.h \
- Plaque/PlaqueResult.h \
- Plaque/PlaqueInterfaceDLL.h \
- Plaque/PlaqueInterface.h \
- Plaque/PlaqueBase.h \
- Plaque/MeanEstimate.h \
- Plaque/CPlaqueResult.h \
- Plaque/CPlaqueInfo.h \
- TRIM/img.h \
- Container/extendedimage.h
- DESTDIR = $$DIRNAME
- # source file & target dir
- linux-g++-64 {
- #SRC_FILE = $$DIRNAME/$${TARGET}
- #DST_DIR = ../../../bin/linux64/$$DIRNAME/
- #CP_OPTIONS = -d
- }
- # copy target
- #QMAKE_POST_LINK += $$QMAKE_COPY $$CP_OPTIONS $$quote($$SRC_FILE) $$quote($$DST_DIR) $$escape_expand(\\n\\t)
|