lw-build-system/scripts/build.app.c++-qt/build.monolithic
Laurence Withers 61e8d27edd Allow build.monolithic to search subdirectories.
Uses `find' rather than `echo' to get a list of all source files within
the module directory. The list is passed to sort. Allows subdirectories
using the nnn_name notation to be included in the correct order.
2007-09-26 11:52:40 +00:00

27 lines
794 B
Bash

# These are external variables, and shouldn't clash with anything else
# @CNAME@_MONOLITHIC
#
SRC="obj/@NAME@.cpp"
MONOLITHIC_TESTS="src/@NAME@/build.app src/@NAME@/build.monolithic"
if [ -z "${@CNAME@_MONOLITHIC}" ]
then
PREMOC="${SRC}.premoc.cpp"
MONOLITHIC_SOURCE="$(find src/@NAME@/ -name '*.cpp' | sort)"
make_monolithic ${PREMOC} C || return 1
if [ "${PREMOC}" -nt "${SRC}" ]
then
[ -z "${MOC}" ] && MOC="$QTDIR/bin/moc"
do_cmd cp "${PREMOC}" "${SRC}" || return 1
do_cmd_redir ${SRC} echo "#line 1 \"__generated_by_qt_moc__.cpp\"" || return 1
do_cmd_redir ${SRC} ${MOC} <${PREMOC} || return 1
fi
@CNAME@_MONOLITHIC=1
MONOLITHIC_DOC="${MONOLITHIC_DOC} ${SRC}"
fi
# kate: @KATE_MODELINE@
# vim: syntax=sh:@VIM_MODELINE@