forked from Telodendria/Telodendria
lda
001b4821fe
Some checks failed
Compile Telodendria / Compile Telodendria (x86, alpine-v3.19) (push) Has been cancelled
Compile Telodendria / Compile Telodendria (x86, debian-v12.4) (push) Has been cancelled
Compile Telodendria / Compile Telodendria (x86, freebsd-v14.0) (push) Has been cancelled
Compile Telodendria / Compile Telodendria (x86, netbsd-v9.3) (push) Has been cancelled
Compile Telodendria / Compile Telodendria (x86_64, alpine-v3.19) (push) Has been cancelled
Compile Telodendria / Compile Telodendria (x86_64, debian-v12.4) (push) Has been cancelled
Compile Telodendria / Compile Telodendria (x86_64, freebsd-v14.0) (push) Has been cancelled
Compile Telodendria / Compile Telodendria (x86_64, netbsd-v9.3) (push) Has been cancelled
Compile Telodendria / Compile Telodendria (x86_64, openbsd-v7.4) (push) Has been cancelled
14 lines
252 B
Python
14 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"
|
|
]
|
|
}
|