7 lines
117 B
Python
7 lines
117 B
Python
def Settings( **kwargs ):
|
|
return {
|
|
'flags': [
|
|
'-x', 'c++',
|
|
'-Wextra', '-Werror', '-Wall'
|
|
]
|
|
}
|