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