Files
quickbook/Jamfile.v2
Daniel James e529faf7ba Merge the 1.5.2 changes from trunk.
[SVN r62830]
2010-06-12 08:29:53 +00:00

85 lines
2.1 KiB
Plaintext

#==============================================================================
# Copyright (c) 2002 2004 2006 Joel de Guzman
# Copyright (c) 2004 Eric Niebler
# http://spirit.sourceforge.net/
#
# Use, modification and distribution is subject to 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)
#==============================================================================
project quickbook
: requirements
<toolset>gcc:<c++-template-depth>300
<toolset>darwin:<c++-template-depth>300
<toolset>gcc:<cflags>-g0
<toolset>darwin:<cflags>-g0
<warnings>off
;
exe quickbook
:
process.cpp
quickbook.cpp
actions.cpp
state.cpp
utils.cpp
input_path.cpp
post_process.cpp
collector.cpp
template.cpp
grammar.cpp
phrase_grammar.cpp
phrase_markup_grammar.cpp
phrase_actions.cpp
phrase_image.cpp
block_grammar.cpp
block_markup_grammar.cpp
block_actions.cpp
block_list.cpp
doc_info_grammar.cpp
doc_info_actions.cpp
code_snippet_actions.cpp
code_snippet_grammar.cpp
syntax_highlight_grammar.cpp
boostbook.cpp
html.cpp
encoder_impl.cpp
misc_rules.cpp
/boost//program_options
/boost//filesystem
: #<define>QUICKBOOK_NO_DATES
# Still using 'normalize' which has been deprecated.
#<define>BOOST_FILESYSTEM_NO_DEPRECATED
<toolset>msvc:<cxxflags>/wd4355
<toolset>msvc:<cxxflags>/wd4511
<toolset>msvc:<cxxflags>/wd4512
<toolset>msvc:<cxxflags>/wd4701
<toolset>msvc:<cxxflags>/wd4702
<toolset>msvc:<cxxflags>/wd4244
<toolset>msvc:<cxxflags>/wd4267
<toolset>msvc:<cxxflags>/wd4800
<toolset>msvc:<define>_CRT_SECURE_NO_DEPRECATE
<toolset>msvc:<define>_SCL_SECURE_NO_DEPRECATE
;
install dist-bin
:
quickbook
:
<install-type>EXE
<location>../../dist/bin
:
release
;
install dist-lib
:
quickbook
:
<install-type>LIB
<location>../../dist/lib
:
release
;