summaryrefslogtreecommitdiff
path: root/thirdparty/Jamfile.jam
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2024-07-02 18:20:22 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2024-07-02 18:20:22 +0100
commit9d6d2c0eb21b6295b2668c23f0ef386d5827a83f (patch)
treeec4bedce6f3a695aa75412f30259e0f791f46f82 /thirdparty/Jamfile.jam
parentAdd an InstanceVertices partition perf test (diff)
parentBuild ImGui as a static library (diff)
downloadilt-9d6d2c0eb21b6295b2668c23f0ef386d5827a83f.tar.bz2
ilt-9d6d2c0eb21b6295b2668c23f0ef386d5827a83f.tar.xz
ilt-9d6d2c0eb21b6295b2668c23f0ef386d5827a83f.zip
Psycho-rebased branch imgui on top of main
Diffstat (limited to 'thirdparty/Jamfile.jam')
-rw-r--r--thirdparty/Jamfile.jam15
1 files changed, 15 insertions, 0 deletions
diff --git a/thirdparty/Jamfile.jam b/thirdparty/Jamfile.jam
index 8b76449..7a47589 100644
--- a/thirdparty/Jamfile.jam
+++ b/thirdparty/Jamfile.jam
@@ -12,3 +12,18 @@ lib stb : stb_image.c :
<warnings>off
<warnings-as-errors>off
;
+
+lib imguisdl2 :
+ [ glob imgui/imgui*.cpp : imgui/imgui_demo.cpp ]
+ imgui/backends/imgui_impl_sdl2.cpp
+ imgui/backends/imgui_impl_opengl3.cpp
+ :
+ <link>static
+ <include>imgui
+ <use>..//sdl2
+ <cflags>-fPIC
+ <warnings>off
+ <warnings-as-errors>off
+ : :
+ <include>imgui
+ ;