BUILD.gn 491 B

123456789101112131415161718192021
  1. # Copyright 2016 Google Inc.
  2. #
  3. # Use of this source code is governed by a BSD-style license that can be
  4. # found in the LICENSE file.
  5. declare_args() {
  6. }
  7. import("../third_party.gni")
  8. third_party("imgui") {
  9. public_include_dirs = [ "../externals/imgui" ]
  10. sources = [
  11. "../externals/imgui/imgui.cpp",
  12. "../externals/imgui/imgui_demo.cpp",
  13. "../externals/imgui/imgui_draw.cpp",
  14. "../externals/imgui/imgui_widgets.cpp",
  15. "../externals/imgui/misc/cpp/imgui_stdlib.cpp",
  16. ]
  17. }