diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2024-06-24 23:46:25 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2024-06-24 23:46:25 +0100 |
commit | 353116f55989c8b49e26265d1d7948f520259cec (patch) | |
tree | 759f88819f1fcbd2bc8db5b8a45f827cf5fe3e27 | |
parent | Don't process input events which ImGui handled (diff) | |
download | ilt-353116f55989c8b49e26265d1d7948f520259cec.tar.bz2 ilt-353116f55989c8b49e26265d1d7948f520259cec.tar.xz ilt-353116f55989c8b49e26265d1d7948f520259cec.zip |
Use shared installed libraries explicitly
-rw-r--r-- | Jamroot.jam | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Jamroot.jam b/Jamroot.jam index 94ab3b2..81a3831 100644 --- a/Jamroot.jam +++ b/Jamroot.jam @@ -6,13 +6,13 @@ import lex ; import sequence ; import glsl ; -pkg-config.import sdl2 ; -pkg-config.import freetype2 ; -pkg-config.import glib-2.0 ; -pkg-config.import mxml ; -pkg-config.import assimp ; -lib pthread ; -lib OpenMeshCore ; +pkg-config.import sdl2 : : <link>shared ; +pkg-config.import freetype2 : : <link>shared ; +pkg-config.import glib-2.0 : : <link>shared ; +pkg-config.import mxml : : <link>shared ; +pkg-config.import assimp : : <link>shared ; +lib pthread : : <link>shared ; +lib OpenMeshCore : : <link>shared ; variant coverage : debug ; project i-like-trains : requirements |