diff options
Diffstat (limited to 'Jamroot.jam')
-rw-r--r-- | Jamroot.jam | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Jamroot.jam b/Jamroot.jam new file mode 100644 index 0000000..33c67c4 --- /dev/null +++ b/Jamroot.jam @@ -0,0 +1,15 @@ +using gcc ; +using pkg-config ; +import pkg-config ; + +pkg-config.import sdl2 ; +pkg-config.import glew ; +lib stb : : : : <include>/usr/include/stb ; + +exe test : + [ glob *.cpp *.c ] + : + <library>sdl2 + <library>glew + <use>stb + ; |