]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/tools/quickbook/src/Jamfile.v2
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / tools / quickbook / src / Jamfile.v2
CommitLineData
7c673cae
FG
1#==============================================================================
2# Copyright (c) 2002 2004 2006 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
11project quickbook
12 : requirements
13 <toolset>gcc:<c++-template-depth>300
14 <toolset>darwin:<c++-template-depth>300
15 <toolset>gcc:<cflags>-g0
16 <toolset>darwin:<cflags>-g0
17 <toolset>msvc:<cflags>/wd4709
18 ;
19
20lib shell32 ;
21
22exe quickbook
23 :
24 quickbook.cpp
25 actions.cpp
26 doc_info_actions.cpp
27 state.cpp
28 dependency_tracker.cpp
29 utils.cpp
30 files.cpp
31 native_text.cpp
32 glob.cpp
33 include_paths.cpp
34 values.cpp
35 document_state.cpp
36 id_generation.cpp
37 id_xml.cpp
38 post_process.cpp
39 collector.cpp
40 template_stack.cpp
41 code_snippet.cpp
42 markups.cpp
43 syntax_highlight.cpp
44 grammar.cpp
45 main_grammar.cpp
46 block_element_grammar.cpp
47 phrase_element_grammar.cpp
48 doc_info_grammar.cpp
49 /boost//program_options
50 /boost//filesystem
51 : #<define>QUICKBOOK_NO_DATES
52 <define>BOOST_FILESYSTEM_NO_DEPRECATED
53 <toolset>msvc:<cxxflags>/wd4355
54 <toolset>msvc:<cxxflags>/wd4511
55 <toolset>msvc:<cxxflags>/wd4512
56 <toolset>msvc:<cxxflags>/wd4701
57 <toolset>msvc:<cxxflags>/wd4702
58 <toolset>msvc:<cxxflags>/wd4244
59 <toolset>msvc:<cxxflags>/wd4267
60 <toolset>msvc:<cxxflags>/wd4800
61 <toolset>msvc:<define>_CRT_SECURE_NO_DEPRECATE
62 <toolset>msvc:<define>_SCL_SECURE_NO_DEPRECATE
63 <target-os>windows:<library>shell32
64 ;