parent
6d948ab47e
commit
12ed7ce125
2 changed files with 51 additions and 0 deletions
@ -0,0 +1,14 @@ |
||||
{ |
||||
"name": "ImGui", |
||||
"author": "anulax1225", |
||||
"git": "https://github.com/anulax1225/imgui", |
||||
"links": |
||||
[ |
||||
"ImGui" |
||||
], |
||||
"includes": |
||||
[ |
||||
"imgui" |
||||
], |
||||
"packages":[] |
||||
} |
@ -0,0 +1,37 @@ |
||||
project "ImGui" |
||||
kind "StaticLib" |
||||
language "C++" |
||||
systemversion "latest" |
||||
cppdialect "C++17" |
||||
staticruntime "On" |
||||
|
||||
targetdir ("%{wks.location}/bin/" .. outputdir .. "/%{prj.name}") |
||||
objdir ("%{wks.location}/bin-int/" .. outputdir .. "/%{prj.name}") |
||||
|
||||
files |
||||
{ |
||||
"%{prj.location}/imconfig.h", |
||||
"%{prj.location}/imgui.h", |
||||
"%{prj.location}/imgui.cpp", |
||||
"%{prj.location}/imgui_draw.cpp", |
||||
"%{prj.location}/imgui_internal.h", |
||||
"%{prj.location}/imgui_widgets.cpp", |
||||
"%{prj.location}/imstb_rectpack.h", |
||||
"%{prj.location}/imstb_textedit.h", |
||||
"%{prj.location}/imstb_truetype.h", |
||||
"%{prj.location}/imgui_demo.cpp", |
||||
"%{prj.location}/imgui_tables.cpp", |
||||
|
||||
} |
||||
|
||||
|
||||
filter "system:linux" |
||||
pic "On" |
||||
|
||||
filter "configurations:Debug" |
||||
runtime "Debug" |
||||
symbols "on" |
||||
|
||||
filter "configurations:Release" |
||||
runtime "Release" |
||||
optimize "on" |
Loading…
Reference in New Issue