diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2025-04-18 19:43:44 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2025-04-18 19:43:44 +0100 |
commit | 6036877ac4e92da3185f21d5928bf3ed28d685b2 (patch) | |
tree | 5e5a5f6ad09e196bbecfbfec2a9a3c8f02262ca3 /Jamroot.jam | |
parent | Merge branch 'openmesh-11' (diff) | |
parent | Remember selected asset id and reload/reselect resource file on change (diff) | |
download | ilt-6036877ac4e92da3185f21d5928bf3ed28d685b2.tar.bz2 ilt-6036877ac4e92da3185f21d5928bf3ed28d685b2.tar.xz ilt-6036877ac4e92da3185f21d5928bf3ed28d685b2.zip |
Diffstat (limited to 'Jamroot.jam')
-rw-r--r-- | Jamroot.jam | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/Jamroot.jam b/Jamroot.jam index 9b589cf..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 @@ -46,15 +47,15 @@ project i-like-trains : requirements <toolset>tidy:<define>TIDY ; -exe iliketrains : - application/main.cpp - : - <library>ilt - ; +exe iliketrains : application/main.cpp : <library>ilt ; +exe resviewer : application/resviewer.cpp : <library>ilt <library>boost_program_options ; explicit main ; always main ; run iliketrains : -- : [ sequence.insertion-sort [ glob-tree-ex res : *.* ] ] : : main ; +explicit runresviewer ; +always runresviewer ; +run resviewer : -- : [ sequence.insertion-sort [ glob-tree-ex res : *.xml ] ] : : runresviewer ; lib ilt : [ glob-tree *.cpp *.?s *.t?s : application bin test thirdparty ] |