Subversion Repositories gelsvn

Rev

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

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