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 11lib shell32 ; 12 13exe quickbook 14 : 15 quickbook.cpp 16 actions.cpp 17 doc_info_actions.cpp 18 state.cpp 19 dependency_tracker.cpp 20 utils.cpp 21 files.cpp 22 native_text.cpp 23 stream.cpp 24 glob.cpp 25 path.cpp 26 include_paths.cpp 27 values.cpp 28 document_state.cpp 29 id_generation.cpp 30 id_xml.cpp 31 post_process.cpp 32 bb2html.cpp 33 boostbook_chunker.cpp 34 xml_parse.cpp 35 html_printer.cpp 36 tree.cpp 37 collector.cpp 38 template_stack.cpp 39 code_snippet.cpp 40 markups.cpp 41 syntax_highlight.cpp 42 grammar.cpp 43 main_grammar.cpp 44 block_element_grammar.cpp 45 phrase_element_grammar.cpp 46 doc_info_grammar.cpp 47 /boost//program_options 48 /boost//filesystem 49 : #<define>QUICKBOOK_NO_DATES 50 <define>BOOST_FILESYSTEM_NO_DEPRECATED 51 <toolset>msvc:<cxxflags>/wd4355 52 <toolset>msvc:<cxxflags>/wd4511 53 <toolset>msvc:<cxxflags>/wd4512 54 <toolset>msvc:<cxxflags>/wd4701 55 <toolset>msvc:<cxxflags>/wd4702 56 <toolset>msvc:<cxxflags>/wd4244 57 <toolset>msvc:<cxxflags>/wd4267 58 <toolset>msvc:<cxxflags>/wd4800 59 <toolset>msvc:<define>_CRT_SECURE_NO_DEPRECATE 60 <toolset>msvc:<define>_SCL_SECURE_NO_DEPRECATE 61 <target-os>windows:<library>shell32 62 ; 63