mirror of
https://github.com/ocornut/imgui.git
synced 2025-04-05 13:35:09 +00:00
[EDIT]切换到旧版本以便于使用keymap
This commit is contained in:
parent
cb16568fca
commit
ad92055fdc
2 changed files with 34 additions and 0 deletions
5
.gitignore
vendored
5
.gitignore
vendored
|
@ -59,3 +59,8 @@ examples/example_sdl2_metal/example_sdl2_metal
|
|||
examples/example_sdl2_opengl2/example_sdl2_opengl2
|
||||
examples/example_sdl2_opengl3/example_sdl2_opengl3
|
||||
examples/example_sdl2_sdlrenderer/example_sdl2_sdlrenderer
|
||||
|
||||
## Razel
|
||||
bin/
|
||||
bin-int/
|
||||
*.vcxproj
|
29
premake5.lua
Normal file
29
premake5.lua
Normal file
|
@ -0,0 +1,29 @@
|
|||
project "ImGui"
|
||||
kind "StaticLib"
|
||||
language "C++"
|
||||
|
||||
targetdir ("bin/" .. outputdir .. "/%{prj.name}")
|
||||
objdir ("bin-int/" .. outputdir .. "/%{prj.name}")
|
||||
|
||||
files
|
||||
{
|
||||
"imconfig.h",
|
||||
"imgui.h",
|
||||
"imgui.cpp",
|
||||
"imgui_draw.cpp",
|
||||
"imgui_internal.h",
|
||||
"imgui_widgets.cpp",
|
||||
"imstb_rectpack.h",
|
||||
"imstb_textedit.h",
|
||||
"imstb_truetype.h",
|
||||
"imgui_tables.cpp",
|
||||
"imgui_demo.cpp"
|
||||
}
|
||||
|
||||
filter "system:windows"
|
||||
systemversion "latest"
|
||||
cppdialect "C++17"
|
||||
staticruntime "On"
|
||||
|
||||
filter { "system:windows", "configurations:Release" }
|
||||
buildoptions "/MT"
|
Loading…
Add table
Reference in a new issue