aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/3rdparty/libvterm/vterm.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/3rdparty/libvterm/vterm.qbs')
-rw-r--r--src/libs/3rdparty/libvterm/vterm.qbs35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/libs/3rdparty/libvterm/vterm.qbs b/src/libs/3rdparty/libvterm/vterm.qbs
new file mode 100644
index 0000000000..e35658908d
--- /dev/null
+++ b/src/libs/3rdparty/libvterm/vterm.qbs
@@ -0,0 +1,35 @@
+QtcLibrary {
+ name: "vterm"
+ type: "staticlibrary"
+
+ useQt: false
+
+ 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: "include"
+ }
+}