diff --git a/.gitignore b/.gitignore index f632636e0..451b92ba1 100644 --- a/.gitignore +++ b/.gitignore @@ -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 \ No newline at end of file diff --git a/premake5.lua b/premake5.lua new file mode 100644 index 000000000..38d4b5485 --- /dev/null +++ b/premake5.lua @@ -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"