Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/tools/build/v2/example/pch/Jamroot @ 29

Last change on this file since 29 was 29, checked in by landauf, 17 years ago

updated boost from 1_33_1 to 1_34_1

File size: 624 bytes
Line 
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  ;
Note: See TracBrowser for help on using the repository browser.