Adding imgui.
This commit is contained in:
parent
130c11a2ca
commit
9b21dd8874
|
@ -51,6 +51,7 @@ tmtags
|
|||
npm-debug.log
|
||||
private/
|
||||
*.trace
|
||||
imgui.ini
|
||||
|
||||
# ==============================================================================
|
||||
# Build system output
|
||||
|
|
|
@ -19,3 +19,6 @@
|
|||
[submodule "third_party/catch"]
|
||||
path = third_party/catch
|
||||
url = https://github.com/philsquared/Catch.git
|
||||
[submodule "third_party/imgui"]
|
||||
path = third_party/imgui
|
||||
url = https://github.com/ocornut/imgui.git
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Subproject commit 364d4a1ae6fb2ec4dca8dc41d5c844ab3ab092a5
|
|
@ -0,0 +1,28 @@
|
|||
# Copyright 2015 Ben Vanik. All Rights Reserved.
|
||||
{
|
||||
'targets': [
|
||||
{
|
||||
'target_name': 'imgui',
|
||||
'type': '<(library)',
|
||||
|
||||
'direct_dependent_settings': {
|
||||
'include_dirs': [
|
||||
'imgui/',
|
||||
],
|
||||
},
|
||||
|
||||
'include_dirs': [
|
||||
'imgui/',
|
||||
],
|
||||
|
||||
'sources': [
|
||||
'imgui/imconfig.h',
|
||||
'imgui/imgui.cpp',
|
||||
'imgui/imgui.h',
|
||||
'imgui/stb_rect_pack.h',
|
||||
'imgui/stb_textedit.h',
|
||||
'imgui/stb_truetype.h',
|
||||
],
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Reference in New Issue