summaryrefslogtreecommitdiff
path: root/project.json
blob: 9a3f712f25a65ce15b12ddae0fedc8709ff1c35f (plain)
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
{
  "langrev": "1",
  "warnings": [ "no-unused" ],
  "authors": [ "andromeda" ],
  "version": "0.1.0",
  "build-dir": "build",
  "output": "build",
  "targets": {
    "c3term-linux-x64": {
      "name": "c3term",
      "type": "executable",
      "target": "linux-x64",
      "sources": [ "main.c3" ],
      "dependency-search-paths": [ "lib" ],
      "c-sources": [
        "shim.c",
        "wl", // wayland-generated code
      ],
      "c-include-dirs": [
        "lib/rfont.c3l/include",
        "lib/rgfw.c3l/include",
        "lib/rsgl.c3l/include",
        "include",
        "wl", // wayland-generated headers
      ],
      "dependencies": [
        "rgfw",
        "rsgl",
        "rfont",
      ],
      "features": [
        "OPENGL",
        "RFONT",
      ],
    },
  },
  "cpu": "generic",
  "opt": "O0"
}