diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-12-10 19:05:45 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-12-10 19:05:45 +0000 |
commit | e4101fe3d17d6e310616300ab7f3ecd1dd976cb9 (patch) | |
tree | 4f734f1b0acb44bdc47ab95ea7c728ab7fcc822a /slice.jam | |
parent | Enable gc-sections in release (diff) | |
download | netfs-e4101fe3d17d6e310616300ab7f3ecd1dd976cb9.tar.bz2 netfs-e4101fe3d17d6e310616300ab7f3ecd1dd976cb9.tar.xz netfs-e4101fe3d17d6e310616300ab7f3ecd1dd976cb9.zip |
Add slicer pure feature value to build just the slicer parts, not the raw ice parts
Diffstat (limited to 'slice.jam')
-rw-r--r-- | slice.jam | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -7,7 +7,7 @@ import toolset ; type.register SLICE : ice ; -feature slicer : no yes ; +feature slicer : no yes pure ; class slice-scanner : common-scanner { @@ -23,9 +23,11 @@ type.set-scanner SLICE : slice-scanner ; generators.register-standard slice.slice2cpp : SLICE : CPP H : <slicer>no ; generators.register-standard slice.slicer : SLICE : CPP H : <slicer>yes ; +generators.register-standard slice.slicer.pure : SLICE : CPP : <slicer>pure ; toolset.flags slice.slice2cpp INCLUDES <include> ; toolset.flags slice.slicer INCLUDES <include> ; +toolset.flags slice.slicer.pure INCLUDES <include> ; actions slice.slice2cpp { @@ -38,6 +40,12 @@ actions slice.slicer slicer -I"$(INCLUDES)" $(2) $(1[1]) } +actions slice.slicer.pure +{ + slicer -I"$(INCLUDES)" $(2) $(1[1]) +} + IMPORT $(__name__) : slice.slice2cpp : : slice.slice2cpp ; IMPORT $(__name__) : slice.slicer : : slice.slicer ; +IMPORT $(__name__) : slice.slicer.pure : : slice.slicer.pure ; |