diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2016-06-26 14:06:54 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2016-06-26 14:06:54 +0100 |
commit | 00bb478c63df348eeed43cd5e13d3c4e9a36653f (patch) | |
tree | 366f8d72f5664eef8c94c8d68f6bf9332a1814d1 | |
parent | Build most things by default (diff) | |
download | libadhocutil-00bb478c63df348eeed43cd5e13d3c4e9a36653f.tar.bz2 libadhocutil-00bb478c63df348eeed43cd5e13d3c4e9a36653f.tar.xz libadhocutil-00bb478c63df348eeed43cd5e13d3c4e9a36653f.zip |
Allow control of --dll-export and --ice
-rw-r--r-- | slice.jam | 15 |
1 files changed, 11 insertions, 4 deletions
@@ -8,6 +8,8 @@ import toolset ; type.register SLICE : ice ; feature slicer : no yes pure ; +feature allow-ice : no yes ; +feature ice-visibility : public hidden ; class slice-scanner : common-scanner { @@ -26,24 +28,29 @@ 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.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) --dll-export JAM_DLL_PUBLIC + 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) --dll-export JAM_DLL_PUBLIC - slicer -I"$(INCLUDES)" $(2) $(1[1]) + slice2cpp -I"$(INCLUDES)" --checksum --output-dir $(1[1]:D) $(2) $(DLLEXPORT) $(ALLOWICE[1]) + slicer -I"$(INCLUDES)" $(2) $(1[1]) $(ALLOWICE[1]) } actions slice.slicer.pure { truncate -c -s 0 $(1[1]) - slicer -I"$(INCLUDES)" $(2) $(1[1]) + slicer -I"$(INCLUDES)" $(2) $(1[1]) $(ALLOWICE[1]) } IMPORT $(__name__) : slice.slice2cpp : : slice.slice2cpp ; |