Whitespace changes
[MPC.git] / config / qt4_gui.mpb
blobdbf5f9d3443d7d76fd545b27d09f7578fb3bec85
1 // -*- MPC -*-
2 project: qt4_core {
3   lit_libs += QtGui$(QT_CFG)
5   // On some linux systems with both Qt3 and Qt4 installed, the uic and moc
6   // executables for Qt4 need to be run as "uic-qt4" (doesn't apply to rcc).
7   // Expand the variable here to avoid the "undefined" warning from msvc.
8   expand(QT4_SUFFIX) {
9     $QT4_SUFFIX
10     ""
11   }
13   Define_Custom(UIC) {
14     command          = $(QTDIR)/bin/uic$(QT4_SUFFIX)
15     output_option    = -o
16     inputext         = .ui
17     pre_filename     = ui_
18     header_outputext = .h
19   }
21   Define_Custom(MOC) {
22     automatic_in     = 0
23     automatic_out    = 0
24     command          = $(QTDIR)/bin/moc$(QT4_SUFFIX)
25     output_option    = -o
26     pch_postrule     = 1
27     inputext         = .h
28     pre_extension    = _moc
29     source_outputext = .cpp
30   }
32   Define_Custom(QRC) {
33     command          = $(QTDIR)/bin/rcc
34     output_option    =  -o
35     commandflags     = -name <%input_noext%>
36     pch_postrule     = 1
37     inputext         = .qrc
38     pre_extension    = _qrc
39     source_outputext = .cpp
40   }