-
Notifications
You must be signed in to change notification settings - Fork 3
/
librtimv.pro
46 lines (33 loc) · 958 Bytes
/
librtimv.pro
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
TEMPLATE = lib
TARGET = rtimv
DESTDIR = bin/
DEPENDPATH += src/
MOC_DIR = moc/
OBJECTS_DIR = obj/
RCC_DIR = res/
UI_DIR = forms/
CONFIG(release, debug|release) {
CONFIG += optimize_full
}
CONFIG += c++14
CONFIG += -O3
QT += widgets
MAKEFILE = makefile.librtimv
# Input
HEADERS += src/rtimvGraphicsView.hpp \
src/StretchGraphicsItem.hpp \
src/StretchBox.hpp \
src/StretchCircle.hpp \
src/StretchLine.hpp
SOURCES += src/rtimvGraphicsView.cpp \
src/StretchBox.cpp \
src/StretchCircle.cpp \
src/StretchLine.cpp
#########################
# installation
#########################
unix:target.path = /usr/local/lib
INSTALLS += target
unix:includefiles.path = /usr/local/include/rtimv
includefiles.files = src/rtimvInterfaces.hpp src/rtimvGraphicsView.hpp src/StretchGraphicsItem.hpp src/StretchBox.hpp src/StretchCircle.hpp src/StretchLine.hpp
INSTALLS += includefiles