diff options
Diffstat (limited to 'Jamroot.jam')
-rw-r--r-- | Jamroot.jam | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Jamroot.jam b/Jamroot.jam new file mode 100644 index 0000000..658f055 --- /dev/null +++ b/Jamroot.jam @@ -0,0 +1,18 @@ +import package ; +using gcc ; + +lib slicer-parser : + [ glob ice/cpp/src/Slice/*.cpp ] + : + <include>ice/cpp/src + <cxxstd>11 + <warnings>off + <variant>release:<lto>on + ; + +package.install install : : : + slicer-parser + : + [ glob ice/cpp/src/Slice/*.h ] + ; + |