Subversion Repositories DevTools

Rev

Rev 1149 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1148 dpurdie 1
################################################################################
2
#       File: qt.rul
3
#	Rules to support the building of QT specific files
4
#
5
################################################################################
6
#
7
#
8
UIC = uic
9
RCC = rcc
10
MOC = moc
11
 
12
define QT_UIC
13
	@echo [$<] QT User Interface Compiler ...
14
	$(UIC) $< -o $(@)
15
endef
16
 
17
define QT_RCC
18
	@echo [$<] QT Resource Compiler ...
19
	$(RCC) $< -o $(@) -name $(basename $(<F))
20
endef
21
 
22
define QT_MOC
23
	@echo [$<] QT Meta Object Compiler ...
24
	$(MOC) -nw $< -o $(@)
25
endef
26
 
27
 
28