aboutsummaryrefslogtreecommitdiff
path: root/share/include/qt4.bld
blob: a5a78677cfb71e7702b7ff276e136f4e24fbdda6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153

function qt_getCXXFLAGS()
{
	if QTDIR == null then
	{
		error "QTDIR is not set, cannot find QT tools.";
	}

	ret = "-D_REENTRANT -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LI "
		"-DQT_SHARED -I${QTDIR}/mkspecs/linux-g++ "
		"$(PKG_CONFIG_PATH=PKG_CONFIG_PATH:${QTDIR}/lib/pkgconfig "
		"pkg-config --cflags QtCore QtGui ice glu x11 xext libpng freetype2 "
		"gobject-2.0 sm xrender fontconfig gthread-2.0 glib-2.0)";
	if UI_DIR != null then
	{
		ret += "-I${UI_DIR}";
	}
	if RCC_DIR != null then
	{
		ret += "-I${RCC_DIR}";
	}
	if MOC_DIR != null then
	{
		ret += "-I${MOC_DIR}";
	}
	return ret;
}

function qt_getLDFLAGS()
{
	if QTDIR == null then
	{
		error "QTDIR is not set, cannot find QT tools.";
	}

	return "-Wl,-rpath,${QTDIR}/lib $(PKG_CONFIG_PATH="
		"PKG_CONFIG_PATH:${QTDIR}/lib/pkgconfig "
		"pkg-config --libs QtCore QtGui ice glu x11 xext libpng freetype2 "
		"gobject-2.0 sm xrender fontconfig gthread-2.0 glib-2.0) -laudio -lz "
		"-lm -ldl";
}

function qt_getToolPath( TOOL, DEFAULT )
{
	if QTDIR == null then
	{
		error "QTDIR is not set, cannot find QT tools.";
	}
	if TOOL == null then
	{
		return "${QTDIR}/bin/${DEFAULT}";
	}
	return TOOL;
}

function qt_uiToH()
{
	if "${UI_DIR}" == "" then
	{
		DIR = INPUT.dirName();
	}
	else
	{
		DIR = UI_DIR;
	}
	FILE = INPUT.fileName();
	OUTFILE = FILE.replace(".ui",".h");
	return "${DIR}/ui_${OUTFILE}";
}

rule "qt_ui"
{
	display "ui";
	input "*.ui";
	output INPUT.qt_uiToH();
	tag "headers";
	profile "build"
	{
		UIC = qt_getToolPath( UIC, "uic" );
		execute("${UIC} -o ${OUTPUT} ${INPUT}");
	}
}

function qt_qrcToCpp()
{
	if "${RCC_DIR}" == "" then
	{
		DIR = INPUT.dirName();
	}
	else
	{
		DIR = RCC_DIR;
	}
	FILE = INPUT.fileName();
	OUTFILE = FILE.replace(".qrc",".cpp");
	return "${DIR}/qrc_${OUTFILE}";
}

rule "qt_rcc"
{
	display "rcc";
	input "*.qrc";
	output INPUT.qt_qrcToCpp();
	profile "build"
	{
		RCC = qt_getToolPath( RCC, "rcc" );
		NAME = INPUT.fileName().replace(".qrc","");
		execute("${RCC} -name ${NAME} -o ${OUTPUT} ${INPUT}");
	}
}

function qt_isMocable()
{
	if INPUT.matches("*.h") then
	{
		if exists( INPUT ) then
		{
			if "$(grep Q_OBJECT ${INPUT})" != "" then
			{
				return true;
			}
		}
	}
	return false;
}

function qt_hToMocCpp()
{
	if "${MOC_DIR}" == "" then
	{
		DIR = INPUT.dirName();
	}
	else
	{
		DIR = MOC_DIR;
	}
	FILE = INPUT.fileName();
	OUTFILE = FILE.replace(".h",".cpp");
	return "${DIR}/moc_${OUTFILE}";
}

rule "qt_moc"
{
	display "moc";
	input qt_isMocable();
	output INPUT.qt_hToMocCpp();
	profile "build"
	{
		MOC = qt_getToolPath( MOC, "moc" );
		execute("${MOC} -o${OUTPUT} ${INPUT}");
	}
}