forked from Telodendria/Telodendria
15 lines
252 B
Python
15 lines
252 B
Python
|
import os
|
||
|
import ycm_core
|
||
|
|
||
|
def Settings( **kwargs ):
|
||
|
return {
|
||
|
'flags': [
|
||
|
"-xc",
|
||
|
"-I", "src/include",
|
||
|
"-I", "Cytoplasm/include",
|
||
|
"-I", "build",
|
||
|
|
||
|
"-std=c99"
|
||
|
]
|
||
|
}
|