summaryrefslogtreecommitdiff
path: root/thirdparty/Jamfile.jam
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2024-07-07 00:25:19 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2024-07-07 00:25:19 +0100
commitb43ed0554f5d6326f80e8d6bd85d75a422ca8c05 (patch)
tree596e967d69b073109dad7db437a60093bf499e26 /thirdparty/Jamfile.jam
parentReplace deprecated GL_QUADS usage in text rendering (diff)
parentReplace deprecated GL_QUADS usage in text rendering (diff)
downloadilt-b43ed0554f5d6326f80e8d6bd85d75a422ca8c05.tar.bz2
ilt-b43ed0554f5d6326f80e8d6bd85d75a422ca8c05.tar.xz
ilt-b43ed0554f5d6326f80e8d6bd85d75a422ca8c05.zip
Merge branch 'imgui'
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
+ ;