summaryrefslogtreecommitdiff
path: root/project.json
blob: 215004ba7d27c6dc838d812bf8b998eb76fc3ab7 (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
40
41
42
43
44
45
46
{
  "langrev": "1",
  "warnings": [ "no-unused" ],
  "authors": [ "andromeda" ],
  "version": "0.1.0",
  "build-dir": "build",
  "output": "build",
  "dependency-search-paths": [ "lib" ],
  "targets": {
    "c3term-linux-x64": {
      "name": "c3term",
      "type": "executable",
      "target": "linux-x64",
      "sources": [ "main.c3" ],
      "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",
      ],
      "linked-libraries": [
        "wayland-client",
        "wayland-cursor",
        "wayland-egl",
        "xkbcommon",
        "GL",
      ],
      "features": [
        "OPENGL",
        "RFONT",
      ],
    },
  },
  "cpu": "generic",
  "opt": "O0"
}