mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 20:11:17 +00:00
46 lines
812 B
JSON
46 lines
812 B
JSON
{
|
|
"version": "0.1.0",
|
|
"authors": [
|
|
"John Doe <john.doe@example.com>"
|
|
],
|
|
"langrev": "1",
|
|
"warnings": [
|
|
"no-unused"
|
|
],
|
|
// sources compiled
|
|
"sources": [
|
|
"./**"
|
|
],
|
|
"dependency-search-paths": [ "./lib" ],
|
|
"dependencies": ["clib", "clib2"],
|
|
|
|
"features": ["ABCD"],
|
|
|
|
// c sources
|
|
"targets": {
|
|
"hello_world": {
|
|
"type": "executable",
|
|
"cc" : "cc",
|
|
"c-sources": [
|
|
"./csource/**"
|
|
],
|
|
"reloc": "PIE",
|
|
},
|
|
"hello_world_win32": {
|
|
"type": "executable",
|
|
"c-include-dirs": [ "C:\\"],
|
|
"c-sources-override": [
|
|
]
|
|
},
|
|
"hello_world_lib": {
|
|
"type": "static-lib",
|
|
"cc" : "cc",
|
|
"c-sources": [
|
|
"./csource/**"
|
|
]
|
|
},
|
|
"hello_world_win32_lib": {
|
|
"type": "static-lib",
|
|
}
|
|
},
|
|
} |