From 400410fcd436d5e4310bfa779f0309c5fae5b2c2 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sat, 16 Jan 2021 18:09:15 +0000 Subject: Initial commit Stripped back and formatted from https://github.com/BennyQBD/ModernOpenGLTutorial/ --- Jamroot.jam | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Jamroot.jam (limited to 'Jamroot.jam') 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 : : : : /usr/include/stb ; + +exe test : + [ glob *.cpp *.c ] + : + sdl2 + glew + stb + ; -- cgit v1.2.3