summaryrefslogtreecommitdiff
path: root/Jamroot.jam
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2021-01-19 20:35:29 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2021-01-19 20:35:29 +0000
commit96a58cc251354954241aa2c9008b25d98daaad92 (patch)
tree383d379fe8bbf5026a5a0cdea4a376485c65b318 /Jamroot.jam
parentFactor to support worlds, objects, windows etc (diff)
downloadilt-96a58cc251354954241aa2c9008b25d98daaad92.tar.bz2
ilt-96a58cc251354954241aa2c9008b25d98daaad92.tar.xz
ilt-96a58cc251354954241aa2c9008b25d98daaad92.zip
Add basic work and worker thread pool
Well... that requires GCC 11 cos 10 doesn't implement semaphore.
Diffstat (limited to 'Jamroot.jam')
-rw-r--r--Jamroot.jam5
1 files changed, 4 insertions, 1 deletions
diff --git a/Jamroot.jam b/Jamroot.jam
index 38a759d..397a167 100644
--- a/Jamroot.jam
+++ b/Jamroot.jam
@@ -1,4 +1,4 @@
-using gcc ;
+using gcc : 11.0.0 ;
using pkg-config ;
import pkg-config ;
import type : register ;
@@ -7,6 +7,7 @@ import generators : register-standard ;
pkg-config.import sdl2 ;
pkg-config.import glew ;
lib stb : : : : <include>/usr/include/stb ;
+lib pthread ;
project : requirements
<cxxstd>20
@@ -48,7 +49,9 @@ exe test :
:
<include>.
<include>utility
+ <include>lib
<library>sdl2
<library>glew
+ <library>pthread
<use>stb
;