TABLE OF CONTENTS


qt4-qmake.cygclass

[ Top ] [ Cygclasses ] [ Cygclasses ]

SYNOPSIS

  inherit qt4-qmake

DESCRIPTION

This cygclass builds Qt4-based packages which use the qmake build system.

INHERITS

qt4.cygclass


cygqmake4

[ Top ] [ qt4-qmake.cygclass ] [ Compile Functions ]

SYNOPSIS

  cd $B
  cygqmake4

DESCRIPTION

Generates Makefiles from the package's qmake project files.


qt4_qmake_compile

[ Top ] [ qt4-qmake.cygclass ] [ Compile Functions ]

DEFINITION

qt4_qmake_compile() {
        cygqmake4
        cygmake
}

qt4_qmake_install

[ Top ] [ qt4-qmake.cygclass ] [ Install Functions ]

SYNOPSIS

  cd $B
  qt4_qmake_install

DESCRIPTION

Installs the package into $D and fixes some common installation issues.

WARNING

Many qmake projects do not define correct install rules, if any at all. qt4_qmake_install is of no use in such cases; you must use manual installation commands instead.


src_compile (qt4-qmake)

[ Top ] [ qt4-qmake.cygclass ] [ Overloads ]

DEFINITION

src_compile() {
        lndirs
        cd ${B}
        qt4_qmake_compile
}

src_install (qt4-qmake)

[ Top ] [ qt4-qmake.cygclass ] [ Overloads ]

DEFINITION

src_install() {
        cd ${B}
        qt4_qmake_install
}