diff options
author | Stephen D. Huston <shuston@apache.org> | 2009-10-16 21:24:13 +0000 |
---|---|---|
committer | Stephen D. Huston <shuston@apache.org> | 2009-10-16 21:24:13 +0000 |
commit | 9b87bc73af87d6d626fa3c23b0249c7eb1299c78 (patch) | |
tree | ae573f334d605517bf39daa7ee286e2feccdb5d6 /cpp/docs/api | |
parent | e12998518a0e366b1cd9f6c70a2bd7c8add7059a (diff) | |
download | qpid-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/docs/api')
-rw-r--r-- | cpp/docs/api/CMakeLists.txt | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/cpp/docs/api/CMakeLists.txt b/cpp/docs/api/CMakeLists.txt new file mode 100644 index 0000000000..d701f3be71 --- /dev/null +++ b/cpp/docs/api/CMakeLists.txt @@ -0,0 +1,36 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + +if (GEN_DOXYGEN) + # The user.doxygen.in file was originally written for a + # configure-generated situation so makes use of configure names that + # need to be set from the CMake equivalents. + set (top_builddir ${CMAKE_BINARY_DIR}) + set (top_srcdir ${CMAKE_SOURCE_DIR}) + set (srcdir ${CMAKE_CURRENT_SOURCE_DIR}) + configure_file (${CMAKE_CURRENT_SOURCE_DIR}/user.doxygen.in + ${CMAKE_CURRENT_BINARY_DIR}/user.doxygen) + add_custom_target (user-api-docs COMMAND ${DOXYGEN_EXECUTABLE} user.doxygen) + + # HTML files are generated to ./html - put those in the install. + install (DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/html/ + DESTINATION ${QPID_INSTALL_HTMLDIR} + COMPONENT ${QPID_COMPONENT_CLIENT_INCLUDE}) + +endif (GEN_DOXYGEN) |