2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2025-01-27 02:30:41 +01:00

No need to wrap fc/c/cxx classes for manifest processing

This commit is contained in:
Thomas Nagy 2016-06-16 21:07:40 +02:00
parent 73384b11f4
commit f18d481e75
No known key found for this signature in database
GPG Key ID: 67A565EDFDF90E64
2 changed files with 2 additions and 2 deletions

View File

@ -477,6 +477,6 @@ def wrap_class(class_name):
return derived_class
for k in 'fc fcprogram fcprogram_test fcshlib fcstlib'.split():
for k in 'fcprogram fcprogram_test fcshlib fcstlib'.split():
wrap_class(k)

View File

@ -1008,7 +1008,7 @@ def wrap_class(class_name):
return derived_class
for k in 'c cxx cprogram cxxprogram cshlib cxxshlib cstlib cxxstlib'.split():
for k in 'cprogram cxxprogram cshlib cxxshlib cstlib cxxstlib'.split():
wrap_class(k)
def make_winapp(self, family):