5 lines
103 B
Python
5 lines
103 B
Python
def FlagsForFile(filename, **kwargs):
|
|
return {
|
|
'flags': ['-Wall', '-Wextra', '-lm'],
|
|
}
|