| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- 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 = MeasureStenose
- TEMPLATE = lib
- SOURCES += \
- Container/Video.cpp \
- Container/extendedimage.cpp \
- IO/DicomIO.cpp \
- Mouchard/Mouchard.cpp \
- NR/ToolsMath.cpp \
- Object/regionEllipse.cpp \
- Object/rectangle.cpp \
- Object/point.cpp \
- Object/drawEllipse.cpp \
- Stenose/vector.cpp \
- Stenose/StenoseNBBase.cpp \
- Stenose/StenoseInterfaceDLL.cpp \
- Stenose/StenoseInterface.cpp \
- Stenose/StenoseBase.cpp \
- Stenose/scale.cpp \
- Stenose/CStenoseResult.cpp \
- TRIM/imgbase.cpp
- HEADERS += define.h \
- Container/Video.h \
- Container/extendedimage.h \
- IO/DicomIO.h \
- Mouchard/MouchardInterfaceDLL.h \
- Mouchard/Mouchard.h \
- Mouchard/Identifiant.h \
- NR/ToolsMath.h \
- Object/regionEllipse.h \
- Object/rectangle.h \
- Object/point.h \
- Object/drawEllipse.h \
- Pattern/Singleton.h \
- Stenose/vector.h \
- Stenose/StenoseResult.h \
- Stenose/StenoseNBBase.h \
- Stenose/StenoseInterfaceDLL.h \
- Stenose/StenoseInterface.h \
- Stenose/StenoseBase.h \
- Stenose/scale.h \
- Stenose/Ressource.h \
- Stenose/CStenoseResult.h \
- Stenose/CStenoseNBInfo.h \
- Stenose/CStenoseInfo.h \
- TRIM/img.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)
- OTHER_FILES += \
- Stenose/StenoseNBBase
|