Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/rpm-software-management/createrepo_c.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorScott K Logan <logans@cottsay.net>2014-09-29 00:44:40 +0400
committerScott K Logan <logans@cottsay.net>2014-09-29 00:44:40 +0400
commit020693355ca5af58c41c31938cf0df629d496c23 (patch)
treef3cfd518582443ba9a280982e0a8cf3335a6a061 /doc
parent1e32fcdd93132b7016702968a2ad3b501e7641cb (diff)
Docs: Output python docs to separate directory
It makes it hard to package these docs when the CMake files are in the same directory as the output. This patch moves the sphinx-build output to the subdirectory "html".
Diffstat (limited to 'doc')
-rw-r--r--doc/python/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/python/CMakeLists.txt b/doc/python/CMakeLists.txt
index cde28df..90036fc 100644
--- a/doc/python/CMakeLists.txt
+++ b/doc/python/CMakeLists.txt
@@ -1,5 +1,5 @@
ADD_CUSTOM_TARGET (doc-python
PYTHONPATH=${CMAKE_BINARY_DIR}/src/python sphinx-build -E -b html
- ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR}/html
COMMENT "Building Python API documentation with Sphinx")