blob: eed8b9f14a6875c96e32b4ad90b63583860d948b (
plain) (
blame)
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
|
# ???? ?????? ? KDevelop ?????????? qmake.
# -------------------------------------------
# ?????????? ???????????? ???????? ???????? ???????: ./Plugins/Output
# ???? - ?????? ? ?????????????
include(../../../qmmp.pri)
CONFIG += release warn_on
TEMPLATE = subdirs
SUBDIRS += alsa
contains(CONFIG, JACK_PLUGIN){
SUBDIRS += jack
message(***********************)
message(* JACK plugin enabled *)
message(***********************)
}
contains(CONFIG, OSS_PLUGIN){
SUBDIRS += oss
message(**********************)
message(* OSS plugin enabled *)
message(**********************)
}
|