diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2023-05-27 11:47:02 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2023-05-27 11:47:02 +0100 |
commit | ac0247a610a5a2ffbb8419a5de02c49fac9b4265 (patch) | |
tree | 265d09ecb29c354b542735c1778af60b5866634a /Jamroot.jam | |
parent | Mark main rule as always, so we can always launch it (diff) | |
download | ilt-ac0247a610a5a2ffbb8419a5de02c49fac9b4265.tar.bz2 ilt-ac0247a610a5a2ffbb8419a5de02c49fac9b4265.tar.xz ilt-ac0247a610a5a2ffbb8419a5de02c49fac9b4265.zip |
Add glad submodule and build a glad library
Slightly messy regarding file paths to get files generated by the glad generator into a place where
b2 will happily find them later... but it works.
Diffstat (limited to 'Jamroot.jam')
-rw-r--r-- | Jamroot.jam | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Jamroot.jam b/Jamroot.jam index 95b3135..0273fe2 100644 --- a/Jamroot.jam +++ b/Jamroot.jam @@ -58,8 +58,8 @@ always main ; run iliketrains : -- : [ sequence.insertion-sort [ glob-tree-ex res : *.* ] ] : : main ; lib ilt : - [ glob-tree *.cpp *.?s *.t?s : application bin test ] - [ lib generated : [ glob-tree *.ll *.c ] : + [ glob-tree *.cpp *.?s *.t?s : application bin test thirdparty ] + [ lib generated : [ glob-tree *.ll *.c : bin thirdparty ] : <include>. <include>lib <link>static @@ -89,6 +89,8 @@ lib ilt : <toolset>gcc,<variant>debug:<cflags>-Wuseless-cast <include>. <include>lib + <library>thirdparty//glad + <implicit-dependency>thirdparty//glad <library>sdl2 <library>glew <library>freetype2 |