mirror of
https://github.com/ocornut/imgui.git
synced 2026-01-11 00:04:24 +00:00
39 lines
580 B
Lua
39 lines
580 B
Lua
project "ImGui"
|
|
kind "StaticLib"
|
|
language "C++"
|
|
|
|
targetdir ("bin/%{prj.name}")
|
|
objdir ("bin-int/%{prj.name}")
|
|
|
|
files
|
|
{
|
|
"imconfig.h",
|
|
"imgui.h",
|
|
"imgui.cpp",
|
|
"imgui_draw.cpp",
|
|
"imgui_internal.h",
|
|
"imgui_tables.cpp",
|
|
"imgui_widgets.cpp",
|
|
"imstb_rectpack.h",
|
|
"imstb_textedit.h",
|
|
"imstb_truetype.h",
|
|
"imgui_demo.cpp",
|
|
}
|
|
|
|
includedirs
|
|
{
|
|
"*.h"
|
|
}
|
|
|
|
|
|
filter "system:linux"
|
|
systemversion "latest"
|
|
cppdialect "C++17"
|
|
|
|
filter "configurations:Debug"
|
|
runtime "Debug"
|
|
symbols "on"
|
|
|
|
filter "configurations:Release"
|
|
runtime "Release"
|
|
optimize "on"
|