diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-01-19 20:35:29 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-01-19 20:35:29 +0000 |
commit | 96a58cc251354954241aa2c9008b25d98daaad92 (patch) | |
tree | 383d379fe8bbf5026a5a0cdea4a376485c65b318 /Jamroot.jam | |
parent | Factor to support worlds, objects, windows etc (diff) | |
download | ilt-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.jam | 5 |
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 ; |