summaryrefslogtreecommitdiff
path: root/Jamroot.jam
blob: d54e7c50e81d873c3f8ac4b117216c88ede163a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import package ;
using gcc ;

lib slice-parser :
	[ glob ice/cpp/src/Slice/*.cpp ]
	:
	<include>ice/cpp/src
	<cxxstd>11
	<warnings>off
	<variant>release:<lto>on
	;

package.install install : : :
	slice-parser
	:
	[ glob ice/cpp/src/Slice/*.h ]
	;