Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/tools/quickbook/Jamfile.v2 @ 33

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

updated boost from 1_33_1 to 1_34_1

File size: 1.2 KB
Line 
1#==============================================================================
2#   Copyright (c) 2002 2004 Joel de Guzman
3#   Copyright (c) 2004 Eric Niebler
4#   http://spirit.sourceforge.net/
5#
6#   Use, modification and distribution is subject to the Boost Software
7#   License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
8#   http://www.boost.org/LICENSE_1_0.txt)
9#==============================================================================
10
11exe quickbook
12    :
13    detail/quickbook.cpp
14    detail/actions.cpp
15    detail/utils.cpp
16    detail/post_process.cpp
17    /boost//program_options
18    /boost//filesystem
19    : #<define>QUICKBOOK_NO_DATES
20      <toolset>msvc:<cxxflags>/wd4511
21      <toolset>msvc:<cxxflags>/wd4512
22      <toolset>msvc:<cxxflags>/wd4701
23      <toolset>msvc:<cxxflags>/wd4702
24      <toolset>msvc:<cxxflags>/wd4244
25      <toolset>msvc:<cxxflags>/wd4267
26      <toolset>msvc:<cxxflags>/wd4800
27    ;
28
29install dist-bin
30    :
31    quickbook
32    :
33    <install-type>EXE
34    <location>../../dist/bin
35    :
36    release
37    ;
38
39install dist-lib
40    :
41    quickbook
42    :
43    <install-type>LIB
44    <location>../../dist/lib
45    :
46    release
47    ;
Note: See TracBrowser for help on using the repository browser.