Subversion Repositories DevTools

Rev

Rev 1148 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

################################################################################
#       File: qt.rul
#       Rules to support the building of QT specific files
#
################################################################################
#
#
UIC = uic
RCC = rcc
MOC = moc

define QT_UIC
        @echo [$<] QT User Interface Compiler ...
        $(UIC) $< -o $(@)
endef

define QT_RCC
        @echo [$<] QT Resource Compiler ...
        $(RCC) $< -o $(@) -name $(basename $(<F))
endef

define QT_MOC
        @echo [$<] QT Meta Object Compiler ...
        $(MOC) -nw $< -o $(@)
endef