$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r56755 - trunk/tools/quickbook
From: daniel_james_at_[hidden]
Date: 2009-10-12 16:21:13
Author: danieljames
Date: 2009-10-12 16:21:13 EDT (Mon, 12 Oct 2009)
New Revision: 56755
URL: http://svn.boost.org/trac/boost/changeset/56755
Log:
Copy latest quickbook CMakeLists.txt from release.
Text files modified: 
   trunk/tools/quickbook/CMakeLists.txt |    38 +++++++++++++++++++-------------------  
   1 files changed, 19 insertions(+), 19 deletions(-)
Modified: trunk/tools/quickbook/CMakeLists.txt
==============================================================================
--- trunk/tools/quickbook/CMakeLists.txt	(original)
+++ trunk/tools/quickbook/CMakeLists.txt	2009-10-12 16:21:13 EDT (Mon, 12 Oct 2009)
@@ -7,13 +7,13 @@
 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>"
-  )
-
-if (MSVC)
-  add_definitions(/wd4511 /wd4512 /wd4701 /wd4702 /wd4244 /wd4267 /wd4800)
-endif (MSVC)
+          "Eric Niebler <eric -at- boost-consulting.com>")
 
+if (BUILD_QUICKBOOK)
+  if (MSVC)
+    add_definitions(/wd4511 /wd4512 /wd4701 /wd4702 /wd4244 /wd4267 /wd4800)
+  endif (MSVC)
+  
 #
 # TDS: this needs fixing...  these are the modules that quickbook is
 # dependent on.  if boost is modularized, you need these, but
@@ -47,16 +47,16 @@
   ${CMAKE_SOURCE_DIR}/libs/utility/include
   )
 
-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/input_path.cpp
-  detail/template_stack.cpp
-  detail/markups.cpp
-  DEPENDS boost_program_options boost_filesystem
-  )  
-
+  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/input_path.cpp
+    detail/template_stack.cpp
+    detail/markups.cpp
+    DEPENDS boost_program_options boost_filesystem
+    )  
+endif (BUILD_QUICKBOOK)