[EDIT]切换到旧版本以便于使用keymap

This commit is contained in:
Jenwein 2025-03-10 22:05:00 +08:00
parent cb16568fca
commit ad92055fdc
2 changed files with 34 additions and 0 deletions

5
.gitignore vendored
View file

@ -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
View 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"