2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-15 00:52:16 +00:00

This commit was manufactured by cvs2svn to create branch 'RC_1_34_0'.

[SVN r35705]
This commit is contained in:
nobody
2006-10-23 18:25:03 +00:00
parent 62d43e1988
commit f035ad5300

29
example/pch/Jamroot Normal file
View File

@@ -0,0 +1,29 @@
# 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 ;
cpp-pch pch
: # sources
include/pch.hpp
: # requirements
<include>include
;
explicit pch ;
# exe ##########################################################################
exe hello_world
: # sources
pch
source/hello_world.cpp
: # requirements
<include>include
: # default build
: # usage requirements
;