forked from vssukharev/bc3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.json
More file actions
42 lines (41 loc) · 1023 Bytes
/
project.json
File metadata and controls
42 lines (41 loc) · 1023 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"output" : "build",
"dependency-search-paths" : [ ".", "libs" ],
"dependencies" : [ "bindgen" ],
"sources" : [ "generators/general.c3" ],
"linker-search-paths": [ "/usr/lib/llvm/19/lib64", "/usr/lib64/llvm/19/lib/" ],
"targets" : {
"vulkan" : {
"sources" : [ "generators/vulkan.c3" ],
"type" : "executable",
},
"glfw" : {
"sources" : [ "generators/glfw.c3" ],
"type" : "executable",
},
"uv" : {
"sources" : [ "generators/uv.c3" ],
"type" : "executable",
},
"nk" : {
"sources" : [ "generators/nuklear.c3" ],
"type" : "executable",
},
"unuv" : {
"sources" : [ "generators/unuv.c3" ],
"type" : "executable",
},
"cimgui" : {
"sources" : [ "generators/cimgui.c3" ],
"type" : "executable",
},
"llvm" : {
"sources" : [ "generators/llvm.c3" ],
"type" : "executable",
},
"python" : {
"sources" : [ "generators/python.c3" ],
"type" : "executable",
},
},
}