Bug 991983 - Add a deprecation hint for GENERATED_SOURCES. r=gps

This commit is contained in:
Mike Hommey 2015-05-28 07:38:53 +09:00
parent 5b0cd23bb9
commit f408d03253

View File

@ -1864,6 +1864,16 @@ DEPRECATION_HINTS = {
NO_DIST_INSTALL = True
''',
'GENERATED_SOURCES': '''
Please use
SOURCES += [ '!foo.cpp' ]
instead of
GENERATED_SOURCES += [ 'foo.cpp']
''',
}
# Make sure that all template variables have a deprecation hint.