forked from nulloy/nulloy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnulloy.pro
More file actions
44 lines (35 loc) · 754 Bytes
/
Copy pathnulloy.pro
File metadata and controls
44 lines (35 loc) · 754 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
36
37
38
39
40
41
42
43
TEMPLATE = subdirs
CONFIG += ordered
isEmpty(N_CONFIG_SUCCESS) {
unix:error("Please run './configure'")
win32:error("Please run 'configure.bat'")
}
# qmake -config no-skins
!no-skins {
widgets.subdir = $$SRC_DIR/widgetCollection
SUBDIRS += widgets
}
# qmake -config gstreamer
gstreamer {
gstreamer.subdir = $$SRC_DIR/plugins/pluginGstreamer
SUBDIRS += gstreamer
}
# qmake -config vlc
vlc {
vlc.subdir = $$SRC_DIR/plugins/pluginVlc
SUBDIRS += vlc
}
# qmake -config taglib
taglib {
taglib.subdir = $$SRC_DIR/plugins/pluginTaglib
SUBDIRS += taglib
}
# qmake -config plugins-all
plugins-all {
plugins.subdir = $$SRC_DIR/plugins
SUBDIRS += plugins
}
SUBDIRS += $$SRC_DIR
tests {
SUBDIRS += tests
}