summaryrefslogtreecommitdiffstats
path: root/src/boost/tools/build/example/pch-multi/jamroot.jam
blob: fd152851012a7917282968925694ac4b9c4e28a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Copyright 2006 Ilya Sokolov
#
# Distributed under the Boost Software License, Version 1.0. (See
# accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt)

# pch ##########################################################################

import pch ;

local pchs ;
for local hpp in [ glob-tree *.hpp ]
{
    cpp-pch $(hpp:B) : $(hpp) : <include>include ;
    explicit $(hpp:B) ;
    pchs += $(hpp:B) ;
}
alias headers : $(pchs) ;

# exe ##########################################################################

exe hello_world
  : # sources
    headers
    source/hello_world.cpp
  : # requirements
    <include>include
  : # default build
  : # usage requirements
  ;