From 96a58cc251354954241aa2c9008b25d98daaad92 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Tue, 19 Jan 2021 20:35:29 +0000 Subject: Add basic work and worker thread pool Well... that requires GCC 11 cos 10 doesn't implement semaphore. --- Jamroot.jam | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'Jamroot.jam') 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 : : : : /usr/include/stb ; +lib pthread ; project : requirements 20 @@ -48,7 +49,9 @@ exe test : : . utility + lib sdl2 glew + pthread stb ; -- cgit v1.2.3