diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2025-04-03 00:28:54 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2025-04-07 00:58:02 +0100 |
commit | 237da037606bad97445562ef1f8863becb71a25c (patch) | |
tree | a0b53f953bf89efd00ca59113752808bee0e6602 /Jamroot.jam | |
parent | Drop WindowContent::render const (diff) | |
download | ilt-237da037606bad97445562ef1f8863becb71a25c.tar.bz2 ilt-237da037606bad97445562ef1f8863becb71a25c.tar.xz ilt-237da037606bad97445562ef1f8863becb71a25c.zip |
Basically empty ResViewer application
Diffstat (limited to 'Jamroot.jam')
-rw-r--r-- | Jamroot.jam | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Jamroot.jam b/Jamroot.jam index 9b589cf..7585ec7 100644 --- a/Jamroot.jam +++ b/Jamroot.jam @@ -46,15 +46,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 ; 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 ] |