summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Jamroot.jam7
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 ]
;