diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2020-08-22 16:32:50 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2020-08-22 16:32:50 +0100 |
commit | e8612480ef46aa732eb1b261eee8f917b60614ac (patch) | |
tree | 9b490446d757bac58b4cdc642b67e88659835927 /Jamroot.jam | |
parent | c01694326cd078cc3dedea6441cc7f49991b0458 (diff) | |
download | slice-parser-e8612480ef46aa732eb1b261eee8f917b60614ac.tar.bz2 slice-parser-e8612480ef46aa732eb1b261eee8f917b60614ac.tar.xz slice-parser-e8612480ef46aa732eb1b261eee8f917b60614ac.zip |
Fix library name, remove pointless variant
Diffstat (limited to 'Jamroot.jam')
-rw-r--r-- | Jamroot.jam | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/Jamroot.jam b/Jamroot.jam index 19bbff3..d54e7c5 100644 --- a/Jamroot.jam +++ b/Jamroot.jam @@ -1,20 +1,17 @@ import package ; using gcc ; -variant coverage : debug ; - -lib slicer-parser : +lib slice-parser : [ glob ice/cpp/src/Slice/*.cpp ] : <include>ice/cpp/src <cxxstd>11 <warnings>off <variant>release:<lto>on - <variant>coverage:<coverage>on ; package.install install : : : - slicer-parser + slice-parser : [ glob ice/cpp/src/Slice/*.h ] ; |