Imported Upstream version 1.57.0
[platform/upstream/boost.git] / tools / build / example / pch / jamroot.jam
1 # Copyright 2006 Ilya Sokolov
2 #
3 # Distributed under the Boost Software License, Version 1.0. (See
4 # accompanying file LICENSE_1_0.txt or copy at
5 # http://www.boost.org/LICENSE_1_0.txt)
6
7 # pch ##########################################################################
8
9 import pch ;
10
11 cpp-pch pch
12   : # sources
13     include/pch.hpp
14   : # requirements
15     <include>include
16   ;
17 explicit pch ;
18
19 # exe ##########################################################################
20
21 exe hello_world
22   : # sources
23     pch
24     source/hello_world.cpp
25   : # requirements
26     <include>include
27   : # default build
28   : # usage requirements
29   ;