mirror of
https://github.com/ocornut/imgui.git
synced 2026-01-11 00:04:24 +00:00
premake support for imgui
This commit is contained in:
parent
088755aaee
commit
0b433d3bf7
1 changed files with 40 additions and 0 deletions
40
premake5.lua
Normal file
40
premake5.lua
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
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"
|
||||
pic "Default"
|
||||
systemversion "latest"
|
||||
cppdialect "C++17"
|
||||
|
||||
filter "configurations:Debug"
|
||||
runtime "Debug"
|
||||
symbols "on"
|
||||
|
||||
filter "configurations:Release"
|
||||
runtime "Release"
|
||||
optimize "on"
|
||||
Loading…
Add table
Add a link
Reference in a new issue