try to adjust scons to the moc naming changes

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@27421 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
André Pönitz 2008-11-14 14:34:00 +00:00
parent 1fc477efac
commit 74a1538deb

View File

@ -1493,8 +1493,8 @@ if (included_gettext and not libExists('included_intl')) or 'intl' in BUILD_TARG
#
# src/support
#
frontend_env['QT4_MOCHPREFIX'] = ''
frontend_env['QT4_MOCHSUFFIX'] = '_moc.cpp'
frontend_env['QT4_MOCHPREFIX'] = 'moc_'
frontend_env['QT4_MOCHSUFFIX'] = '.cpp'
support_moced_files = [frontend_env.Moc4('$BUILDDIR/src/support/%s' % x)
for x in src_support_header_files ]