6 lines
94 B
Python
6 lines
94 B
Python
|
def FlagsForFile( filename ):
|
||
|
return {
|
||
|
'flags': ['-x', 'c++'],
|
||
|
'do_cache': True
|
||
|
}
|