-
Notifications
You must be signed in to change notification settings - Fork 0
/
tjlutils.pro
62 lines (53 loc) · 1.86 KB
/
tjlutils.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#-------------------------------------------------
#
# Project created by QtCreator 2016-08-05T09:39:20
#
#-------------------------------------------------
QT -= core gui
TARGET = tjlutils
TEMPLATE = lib
DEFINES += TJLUTILS_LIBRARY
CONFIG += static_and_shared build_all c++14
INCLUDEPATH += systemcommand/ \
templateobjects/ \
mathutilities/ \
stringformat/ \
fileutilities/ \
generalutilities/ \
serialport/ \
eventtimer/ \
datetime/ \
prettyprinter/ \
udpduplex/ \
ibytestream/
SOURCES += systemcommand/systemcommand.cpp \
generalutilities/generalutilities.cpp \
fileutilities/fileutilities.cpp \
mathutilities/mathutilities.cpp \
datetime/datetime.cpp \
serialport/serialport.cpp \
udpduplex/udpduplex.cpp \
prettyprinter/prettyprinter.cpp \
ibytestream/ibytestream.cpp \
HEADERS += systemcommand/systemcommand.h \
mathutilities/mathutilities.h \
fileutilities/fileutilities.h \
generalutilities/generalutilities.h \
datetime/datetime.h \
serialport/serialport.h \
eventtimer/eventtimer.h \
prettyprinter/prettyprinter \
udpduplex/udpduplex.h \
templateobjects/templateobjects.h \
bitset/bitset.h \
stringformat/stringformat.h \
ibytestream/ibytestream.h
unix {
target.path = /usr/lib
INSTALLS += target
}
win32 {
#POST_LINK_SCRIPT = C:/Cygwin64/opt/GitHub/tjlutils/copy-headers-windows.sh
#CYGWIN_DIR = C:/Cygwin64/bin/mintty.exe
#QMAKE_POST_LINK += $$quote(cmd $$quote($${CYGWIN_DIR} $$quote($${POST_LINK_SCRIPT})))
}