mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
44 lines
729 B
JSON
44 lines
729 B
JSON
{
|
|
"version": "0.1.0",
|
|
"authors": [
|
|
"John Doe <john.doe@example.com>"
|
|
],
|
|
"langrev": "1",
|
|
"warnings": [
|
|
"no-unused"
|
|
],
|
|
// sources compiled
|
|
"sources": [
|
|
"./**"
|
|
],
|
|
// libraries to use
|
|
"dependencies": [],
|
|
|
|
"features": ["ABCD"],
|
|
|
|
// c compiler
|
|
"cc": "cc",
|
|
// c sources
|
|
"targets": {
|
|
"hello_world": {
|
|
"type": "executable",
|
|
"c-sources-override": [
|
|
"./csource/**"
|
|
]
|
|
},
|
|
"hello_world_win32": {
|
|
"type": "executable",
|
|
"c-sources-override": [
|
|
]
|
|
},
|
|
"hello_world_lib": {
|
|
"type": "static-lib",
|
|
"c-sources-override": [
|
|
"./csource/**"
|
|
]
|
|
},
|
|
"hello_world_win32_lib": {
|
|
"type": "static-lib",
|
|
}
|
|
},
|
|
} |