blob: 7b04aa6be8fbf6a65f6bee8f4bb92cf7274ec58a [file] [log] [blame]
Brian Osman79086b92017-02-10 13:36:16 -05001# 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
6declare_args() {
7}
8
9import("../third_party.gni")
10
11third_party("imgui") {
12 public_include_dirs = [ "../externals/imgui" ]
John Stilesb5f7a072020-07-01 14:24:55 -040013 public_defines = [ "IMGUI_ENABLE_OSX_DEFAULT_CLIPBOARD_FUNCTIONS" ]
Brian Osman79086b92017-02-10 13:36:16 -050014
15 sources = [
16 "../externals/imgui/imgui.cpp",
17 "../externals/imgui/imgui_demo.cpp",
18 "../externals/imgui/imgui_draw.cpp",
Brian Osman306eec82019-01-22 16:21:46 -050019 "../externals/imgui/imgui_widgets.cpp",
Brian Osman0b8bb882019-04-12 11:47:19 -040020 "../externals/imgui/misc/cpp/imgui_stdlib.cpp",
Brian Osman79086b92017-02-10 13:36:16 -050021 ]
22}