diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2025-04-09 20:53:45 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2025-04-09 20:53:45 +0100 |
commit | f606183442b3548a47649d55fe32ff06d04958e0 (patch) | |
tree | 9943a1fc1fb2f7c98589653b2a96b25bab5073bf /Jamroot.jam | |
parent | Reasonably function asset viewing functionality (diff) | |
download | ilt-f606183442b3548a47649d55fe32ff06d04958e0.tar.bz2 ilt-f606183442b3548a47649d55fe32ff06d04958e0.tar.xz ilt-f606183442b3548a47649d55fe32ff06d04958e0.zip |
Add boost_program_options for command line parsing
Diffstat (limited to 'Jamroot.jam')
-rw-r--r-- | Jamroot.jam | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Jamroot.jam b/Jamroot.jam index 7585ec7..8589861 100644 --- a/Jamroot.jam +++ b/Jamroot.jam @@ -12,6 +12,7 @@ pkg-config.import mxml : : <link>shared ; pkg-config.import assimp : : <link>shared ; lib pthread : : <link>shared ; lib OpenMeshCore : : <link>shared ; +lib boost_program_options : : <link>shared ; variant coverage : debug ; project i-like-trains : requirements @@ -47,7 +48,7 @@ project i-like-trains : requirements ; exe iliketrains : application/main.cpp : <library>ilt ; -exe resviewer : application/resviewer.cpp : <library>ilt ; +exe resviewer : application/resviewer.cpp : <library>ilt <library>boost_program_options ; explicit main ; always main ; |