• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
9import pch ;
10
11cpp-pch pch
12  : # sources
13    include/pch.hpp
14  : # requirements
15    <include>include
16  ;
17explicit pch ;
18
19# exe ##########################################################################
20
21exe hello_world
22  : # sources
23    pch
24    source/hello_world.cpp
25  : # requirements
26    <include>include
27  : # default build
28  : # usage requirements
29  ;
30