-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNETDesigner.pro
More file actions
35 lines (30 loc) · 784 Bytes
/
NETDesigner.pro
File metadata and controls
35 lines (30 loc) · 784 Bytes
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
TEMPLATE = subdirs
CONFIG += ordered
CONFIG -= debug
SUBDIRS += \
PrimitivesLoader \
Graph \
Compiler \
Designer \
Tests
unix {
debug {
copymanual.commands = $(COPY) $$PWD/Designer/Manual.pdf $$OUT_PWD/Designer/
first.depends = $(first) copymanual
export(first.depends)
export(copymanual)
QMAKE_EXTRA_TARGETS += first copymanual
}
release {
manual.path = /usr/share/$${TARGET}
manual.files += $$PWD/Designer/Manual.pdf
INSTALLS += manual
}
}
win32 {
copymanual.commands = $(COPY) $$PWD\\Designer\\Manual.pdf $$OUT_PWD\\Designer\\
first.depends = $(first) copymanual
export(first.depends)
export(copymanual)
QMAKE_EXTRA_TARGETS += first copymanual
}