-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathBioTrackerInterfaces.pro
More file actions
53 lines (49 loc) · 1.75 KB
/
BioTrackerInterfaces.pro
File metadata and controls
53 lines (49 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#-------------------------------------------------
#
# Project created by QtCreator 2016-12-01T17:31:27
#
#-------------------------------------------------
QT += widgets
TARGET = BioTrackerInterfaces
TEMPLATE = lib
CONFIG += staticlib
SOURCES += \
Interfaces/IModel/IObject.cpp \
Interfaces/IView/IView.cpp \
Interfaces/IView/IViewGraphicsScene.cpp \
Interfaces/IView/IViewMainWindow.cpp \
Interfaces/IView/IViewOpenGLWidget.cpp \
Interfaces/IView/IViewTrackedComponent.cpp \
Interfaces/IView/IViewWidget.cpp \
Interfaces/IBioTrackerContext.cpp \
Interfaces/IController/IController.cpp \
Interfaces/IModel/IModel.cpp \
Interfaces/IView/IViewGraphicsPixmapItem.cpp \
Interfaces/IView/IViewGraphicsView.cpp \
Interfaces/IModel/IModelTrackedComponent.cpp \
Interfaces/IModel/IModelTrackedComponentFactory.cpp \
Interfaces/IModel/IModelTrackedTrajectory.cpp \
Interfaces/IModel/IModelTrackingAlgorithm.cpp
HEADERS += \
Interfaces/IModel/IObject.h \
Interfaces/IView/IView.h \
Interfaces/IView/IViewGraphicsScene.h \
Interfaces/IView/IViewMainWindow.h \
Interfaces/IView/IViewOpenGLWidget.h \
Interfaces/IView/IViewTrackedComponent.h \
Interfaces/IView/IViewWidget.h \
Interfaces/ENUMS.h \
Interfaces/IBioTrackerContext.h \
Interfaces/IBioTrackerPlugin.h \
Interfaces/IController/IController.h \
Interfaces/IModel/IModel.h \
Interfaces/IView/IViewGraphicsPixmapItem.h \
Interfaces/IView/IViewGraphicsView.h \
Interfaces/IModel/IModelTrackedComponent.h \
Interfaces/IModel/IModelTrackedComponentFactory.h \
Interfaces/IModel/IModelTrackedTrajectory.h \
Interfaces/IModel/IModelTrackingAlgorithm.h
unix {
target.path = /usr/lib
INSTALLS += target
}