Skip to content
Snippets Groups Projects

Support new Gaudi CMake

Merged Marco Clemencic requested to merge support-new-gaudi-cmake into master
@@ -478,6 +478,8 @@ class Project(object):
self.with_shared = kwargs.get('with_shared', False)
self.platform_independent = kwargs.get('platform_independent', False)
self.no_test = kwargs.get('no_test', False)
if 'ignore_slot_build_tool' in kwargs:
self.ignore_slot_build_tool = kwargs['ignore_slot_build_tool']
self.build_results = None
@@ -501,7 +503,9 @@ class Project(object):
data['platform_independent'] = True
if self.no_test:
data['no_test'] = True
if not self.slot:
if hasattr(self, 'ignore_slot_build_tool') and self.ignore_slot_build_tool:
data['ignore_slot_build_tool'] = True
if not self.slot or data.get('ignore_slot_build_tool'):
data['build_tool'] = self.build_tool.__class__.__name__
return data
Loading