From: André Pönitz Date: Fri, 14 Nov 2008 14:34:00 +0000 (+0000) Subject: try to adjust scons to the moc naming changes X-Git-Tag: 2.0.0~7801 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=74a1538deb2d31b2152ae2c8f971838e0e6edeb3;p=features.git 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 --- diff --git a/development/scons/SConstruct b/development/scons/SConstruct index d7a375c2eb..486740829c 100644 --- a/development/scons/SConstruct +++ b/development/scons/SConstruct @@ -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 ]