Boost logo

Boost-Commit :

From: troy_at_[hidden]
Date: 2008-07-02 20:42:49


Author: troy
Date: 2008-07-02 20:42:49 EDT (Wed, 02 Jul 2008)
New Revision: 47019
URL: http://svn.boost.org/trac/boost/changeset/47019

Log:
Bring directory structure in line with main release branch
Removed:
   branches/CMake/release/libs/any/include/
   branches/CMake/release/libs/asio/include/
   branches/CMake/release/libs/filesystem/include/
   branches/CMake/release/libs/graph/include/
   branches/CMake/release/libs/program_options/include/
   branches/CMake/release/libs/quickbook/
   branches/CMake/release/libs/serialization/include/
   branches/CMake/release/libs/signals/include/
   branches/CMake/release/libs/system/include/
   branches/CMake/release/libs/wave/include/
   branches/CMake/release/libs/xpressive/include/
Properties modified:
   branches/CMake/release/ (props changed)
Text files modified:
   branches/CMake/release/tools/quickbook/CMakeLists.txt | 33 ++++++++++++++++++++-------------
   1 files changed, 20 insertions(+), 13 deletions(-)

Modified: branches/CMake/release/tools/quickbook/CMakeLists.txt
==============================================================================
--- branches/CMake/release/tools/quickbook/CMakeLists.txt (original)
+++ branches/CMake/release/tools/quickbook/CMakeLists.txt 2008-07-02 20:42:49 EDT (Wed, 02 Jul 2008)
@@ -1,14 +1,21 @@
-if (MSVC)
- add_definitions(/wd4511 /wd4512 /wd4701 /wd4702 /wd4244 /wd4267 /wd4800)
-endif (MSVC)
+boost_tool_project(Quickbook
+ DESCRIPTION "A WikiWiki style documentation tool geared towards C++ documentation"
+ AUTHORS "Joel de Guzman <joel -at- boost-consulting.com>"
+ "Eric Niebler <eric -at- boost-consulting.com>")
 
-boost_add_executable(quickbook
- detail/quickbook.cpp
- detail/actions.cpp
- detail/actions_class.cpp
- detail/utils.cpp
- detail/post_process.cpp
- detail/collector.cpp
- detail/template_stack.cpp
- DEPENDS boost_program_options boost_filesystem
- )
+if (BUILD_QUICKBOOK)
+ if (MSVC)
+ add_definitions(/wd4511 /wd4512 /wd4701 /wd4702 /wd4244 /wd4267 /wd4800)
+ endif (MSVC)
+
+ boost_add_executable(quickbook
+ detail/quickbook.cpp
+ detail/actions.cpp
+ detail/actions_class.cpp
+ detail/utils.cpp
+ detail/post_process.cpp
+ detail/collector.cpp
+ detail/template_stack.cpp
+ DEPENDS boost_program_options boost_filesystem
+ )
+endif (BUILD_QUICKBOOK)
\ No newline at end of file


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk