diff options
Diffstat (limited to 'share/include')
-rw-r--r-- | share/include/qt4.bld | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/share/include/qt4.bld b/share/include/qt4.bld index a5a7867..6d95ac8 100644 --- a/share/include/qt4.bld +++ b/share/include/qt4.bld | |||
@@ -151,3 +151,15 @@ rule "qt_moc" | |||
151 | } | 151 | } |
152 | } | 152 | } |
153 | 153 | ||
154 | rule "exe" | ||
155 | { | ||
156 | input regex(".*\\.(h|o)"); | ||
157 | profile "build" | ||
158 | { | ||
159 | INPUT = INPUT.matches("*.o"); | ||
160 | // execute("echo ${INPUT}"); | ||
161 | // execute("echo ${MYIN}"); | ||
162 | execute("${CXX} -o ${OUTPUT} ${INPUT} ${LDFLAGS}"); | ||
163 | } | ||
164 | } | ||
165 | |||