summaryrefslogtreecommitdiff
path: root/slice.jam
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2019-10-03 19:18:45 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2019-10-03 19:18:45 +0100
commitdcc097c47d9536d54830735e0528498da45656e0 (patch)
tree1c4e9dfa8954fb81ae4c0eaba89358da1ee21f41 /slice.jam
parentModernize build (diff)
downloadlibadhocutil-dcc097c47d9536d54830735e0528498da45656e0.tar.bz2
libadhocutil-dcc097c47d9536d54830735e0528498da45656e0.tar.xz
libadhocutil-dcc097c47d9536d54830735e0528498da45656e0.zip
Remove slicer referenceslibadhocutil-0.7.6
Diffstat (limited to 'slice.jam')
-rw-r--r--slice.jam23
1 files changed, 1 insertions, 22 deletions
diff --git a/slice.jam b/slice.jam
index 434e562..b165657 100644
--- a/slice.jam
+++ b/slice.jam
@@ -7,7 +7,6 @@ import toolset ;
type.register SLICE : ice ;
-feature slicer : no yes pure ;
feature allow-ice : no yes ;
feature ice-visibility : public hidden ;
@@ -23,36 +22,16 @@ scanner.register slice-scanner : include ;
type.set-scanner SLICE : slice-scanner ;
-generators.register-standard slice.slice2cpp : SLICE : CPP H : <slicer>no ;
-generators.register-standard slice.slicer : SLICE : CPP CPP(slicer-%) H : <slicer>yes ;
-generators.register-standard slice.slicer.pure : SLICE : CPP(slicer-%) : <slicer>pure ;
+generators.register-standard slice.slice2cpp : SLICE : CPP H ;
toolset.flags slice.slice2cpp INCLUDES <include> ;
toolset.flags slice.slice2cpp DLLEXPORT <ice-visibility>public : --dll-export JAM_DLL_PUBLIC ;
toolset.flags slice.slice2cpp ALLOWICE <allow-ice>yes : --ice ;
-toolset.flags slice.slicer INCLUDES <include> ;
-toolset.flags slice.slicer DLLEXPORT <ice-visibility>public : --dll-export JAM_DLL_PUBLIC ;
-toolset.flags slice.slicer ALLOWICE <allow-ice>yes : --ice ;
-toolset.flags slice.slicer.pure INCLUDES <include> ;
-toolset.flags slice.slicer.pure ALLOWICE <allow-ice>yes : --ice ;
actions slice.slice2cpp
{
slice2cpp -I"$(INCLUDES)" --checksum --output-dir $(1[1]:D) $(2) $(DLLEXPORT) $(ALLOWICE[1])
}
-actions slice.slicer
-{
- slice2cpp -I"$(INCLUDES)" --checksum --output-dir $(1[1]:D) $(2) $(DLLEXPORT) $(ALLOWICE[1])
- slicer -I"$(INCLUDES)" $(2) $(1[2]) $(ALLOWICE[1])
-}
-
-actions slice.slicer.pure
-{
- slicer -I"$(INCLUDES)" $(2) $(1[1]) $(ALLOWICE[1])
-}
-
IMPORT $(__name__) : slice.slice2cpp : : slice.slice2cpp ;
-IMPORT $(__name__) : slice.slicer : : slice.slicer ;
-IMPORT $(__name__) : slice.slicer.pure : : slice.slicer.pure ;