~unity-team/unity-scopes-shell/trunk

« back to all changes in this revision

Viewing changes to docs/CMakeLists.txt

  • Committer: Pawel Stolowski
  • Date: 2015-05-25 10:14:55 UTC
  • mto: This revision was merged to the branch mainline in revision 222.
  • Revision ID: pawel.stolowski@canonical.com-20150525101455-sen1bk6x95jdgdnl
Sphinx skeleton files

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
find_program(SPHINX_EXEC NAMES sphinx-build DOC "Sphinx documentation generator")
 
2
include(FindPackageHandleStandardArgs)
 
3
find_package_handle_standard_args(Sphinx DEFAULT_MSG
 
4
    SPHINX_EXEC
 
5
)
 
6
 
 
7
add_custom_target(scope_harness_docs ALL
 
8
    PYTHONPATH=${CMAKE_CURRENT_BINARY_DIR}/../src/python ${SPHINX_EXEC}
 
9
        -b html
 
10
        "${CMAKE_CURRENT_SOURCE_DIR}"
 
11
        "${CMAKE_CURRENT_BINARY_DIR}")