aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/3rdparty/libvterm/vterm.qbs
blob: 18ccb638aabc46cdef9905c8c1f9f20e6bdc09e4 (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
Project {
    QtcLibrary {
        name: "vterm"
        type: "staticlibrary"

        Depends { name: "cpp" }
        cpp.includePaths: base.concat("include")
        cpp.warningLevel: "none"

        Group {
            prefix: "src/"
            files: [
                "encoding.c",
                "fullwidth.inc",
                "keyboard.c",
                "mouse.c",
                "parser.c",
                "pen.c",
                "rect.h",
                "screen.c",
                "state.c",
                "unicode.c",
                "utf8.h",
                "vterm.c",
                "vterm_internal.h",
            ]
        }

        Export {
            Depends { name: "cpp" }
            cpp.includePaths: base.concat("include")
        }
    }
}