blob: bfee5f8492a633ed493126bdcb1004d19f314f89 (
plain)
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
|
########################
# everything.pro #
########################
# This Qt4/5 project #
# file will build all #
# applications #
########################
TEMPLATE = subdirs
CONFIG += ordered
##########################
# Linux/Unix #
##########################
unix:!macx {
SUBDIRS = \
../../thumbnailer-kde4 \
../../libembroidery-convert \
../../embroidermodder2 \
}
##########################
# Windows #
##########################
win32 {
SUBDIRS = \
../../libembroidery-convert \
../../embroidermodder2 \
}
##########################
# Mac OSX #
##########################
macx {
SUBDIRS = \
../../libembroidery-convert \
../../embroidermodder2 \
}
|