aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/imgui/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/imgui/BUILD.gn')
-rw-r--r--third_party/imgui/BUILD.gn19
1 files changed, 19 insertions, 0 deletions
diff --git a/third_party/imgui/BUILD.gn b/third_party/imgui/BUILD.gn
new file mode 100644
index 0000000000..5e3769ccbd
--- /dev/null
+++ b/third_party/imgui/BUILD.gn
@@ -0,0 +1,19 @@
+# Copyright 2016 Google Inc.
+#
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+declare_args() {
+}
+
+import("../third_party.gni")
+
+third_party("imgui") {
+ public_include_dirs = [ "../externals/imgui" ]
+
+ sources = [
+ "../externals/imgui/imgui.cpp",
+ "../externals/imgui/imgui_demo.cpp",
+ "../externals/imgui/imgui_draw.cpp",
+ ]
+}