Added premake file.
parent
0ecca3bd13
commit
cf5a93ac37
@ -0,0 +1,28 @@
|
|||||||
|
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_demo.cpp"
|
||||||
|
}
|
||||||
|
|
||||||
|
filter "system:windows"
|
||||||
|
systemversion "latest"
|
||||||
|
cppdialect "C++17"
|
||||||
|
staticruntime "On"
|
||||||
|
|
||||||
|
filter { "system:windows", "configurations:Release" }
|
||||||
|
buildoptions "/MT"
|
Loading…
Reference in New Issue