(self)
| 2004 | return super().vary_on() + ['with_rtti'] |
| 2005 | |
| 2006 | def get_base_name(self): |
| 2007 | name = super().get_base_name() |
| 2008 | if self.with_rtti: |
| 2009 | name += '-rtti' |
| 2010 | return name |
| 2011 | |
| 2012 | def get_files(self): |
| 2013 | return [utils.path_from_root('system/lib/embind/bind.cpp')] |
nothing calls this directly
no test coverage detected