summaryrefslogtreecommitdiff
path: root/cpp/CMakeLists.txt
diff options
context:
space:
mode:
authorStephen D. Huston <shuston@apache.org>2009-10-16 21:24:13 +0000
committerStephen D. Huston <shuston@apache.org>2009-10-16 21:24:13 +0000
commit9b87bc73af87d6d626fa3c23b0249c7eb1299c78 (patch)
treeae573f334d605517bf39daa7ee286e2feccdb5d6 /cpp/CMakeLists.txt
parente12998518a0e366b1cd9f6c70a2bd7c8add7059a (diff)
downloadqpid-python-9b87bc73af87d6d626fa3c23b0249c7eb1299c78.tar.gz
Add API doc generation and install to CMake build.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@826092 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/CMakeLists.txt')
-rw-r--r--cpp/CMakeLists.txt8
1 files changed, 6 insertions, 2 deletions
diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt
index b15a60ca37..dd5154781e 100644
--- a/cpp/CMakeLists.txt
+++ b/cpp/CMakeLists.txt
@@ -91,6 +91,8 @@ if (WIN32)
"Directory to install configuration files")
set (QPID_INSTALL_DATADIR conf CACHE STRING
"Directory to install read-only arch.-independent data root")
+ set (QPID_INSTALL_HTMLDIR html CACHE STRING
+ "Directory to install HTML documentation")
set (QPID_INSTALL_INCLUDEDIR include CACHE STRING
"Directory to install programming header files")
set (QPID_INSTALL_LIBDIR bin CACHE STRING
@@ -121,8 +123,8 @@ if (WIN32)
# gacutil /u 'Apache.Qpid.Channel'
# gacutil /u 'Apache.Qpid.Interop'
# ")
-
endif (WIN32)
+
if (CMAKE_SYSTEM_NAME STREQUAL Linux)
# Set up install locations. Since the Linux install puts some files in
# /etc and most in the install location, we need to use a DESTDIR build
@@ -146,6 +148,8 @@ if (CMAKE_SYSTEM_NAME STREQUAL Linux)
"Directory to install configuration files")
set (QPID_INSTALL_DATADIR share/qpid CACHE STRING
"Directory to install read-only arch.-independent data root")
+ set (QPID_INSTALL_HTMLDIR html CACHE STRING
+ "Directory to install HTML documentation")
set (QPID_INSTALL_INCLUDEDIR include CACHE STRING
"Directory to install programming header files")
set (QPID_INSTALL_LIBDIR lib CACHE STRING
@@ -177,7 +181,7 @@ endif (WIN32)
add_subdirectory(managementgen)
add_subdirectory(etc)
add_subdirectory(src)
-# add_subdirectory(docs/api)
+add_subdirectory(docs/api)
# add_subdirectory(docs/man)
add_subdirectory(examples)