Subversion Repositories gelsvn

Rev

Rev 107 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 107 Rev 217
1
// -*- MPC -*-
1
// -*- MPC -*-
2
// $Id: qt.mpb 107 2005-09-02 16:42:23Z bj $
2
// $Id: qt.mpb 217 2006-05-05 09:35:48Z bj $
3
 
3
 
4
project {
4
project {
5
  requires += qt
5
  requires += qt
6
  includes += $(QTDIR)/include
6
  includes += $(QTDIR)/include
7
  libpaths += $(QTDIR)/lib
7
  libpaths += $(QTDIR)/lib
8
  macros   += QT_THREAD_SUPPORT
8
  macros   += QT_THREAD_SUPPORT
9
 
-
 
10
  // @@ Notice: If you are building with Cygwin, you may need to manually
-
 
11
  //            change the following Qt library to qt-mt230nc.
-
 
12
  specific(gnuace, make, sle, automake, ghs) {
-
 
13
    lit_libs += qt-mt
-
 
14
  } else {
-
 
15
    lit_libs += qt-mt230nc
9
  lit_libs += qt-mt$(QT_VERSION)
16
  }
-
 
17
 
10
 
18
  Define_Custom(UIC) {
11
  Define_Custom(UIC) {
19
    automatic        = 1
12
    automatic        = 1
20
    command          = $(QTDIR)/bin/uic
13
    command          = $(QTDIR)/bin/uic
21
    postcommand      = $(QTDIR)/bin/uic -impl <%output_noext%>.h -o <%output_noext%>.cpp <%input%>
14
    postcommand      = $(QTDIR)/bin/uic -impl <%output_noext%>.h -o <%output_noext%>.cpp <%input%>
22
    output_option    = -o
15
    output_option    = -o
23
    inputext         = .ui
16
    inputext         = .ui
24
    header_outputext = .h
17
    header_outputext = .h
25
  }
18
  }
26
 
19
 
27
  Define_Custom(MOC) {
20
  Define_Custom(MOC) {
28
    automatic        = 0
21
    automatic        = 0
29
    command          = $(QTDIR)/bin/moc
22
    command          = $(QTDIR)/bin/moc
30
    output_option    = -o
23
    output_option    = -o
31
    pch_postrule     = 1
24
    pch_postrule     = 1
32
    inputext         = .h
25
    inputext         = .h
33
    pre_extension    = _moc
26
    pre_extension    = _moc
34
    source_outputext = .cpp
27
    source_outputext = .cpp
35
  }
28
  }
36
 
-
 
37
}
29
}
38
 
30