From 382e25ec3e7d938ff5e2f3e352d20486ff15cdf0 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Tue, 18 Dec 2012 08:44:00 -0800 Subject: [PATCH] Add doc/ to cmake build. --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 60f8c6ea..8978a894 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,6 +16,8 @@ if (CMAKE_COMPILER_IS_GNUCXX) "-Wall -Wextra -pedantic") endif () +add_subdirectory(doc) + # We compile Google Test ourselves instead of using pre-compiled libraries. # See the Google Test FAQ "Why is it not recommended to install a # pre-compiled copy of Google Test (for example, into /usr/local)?"