diff options
author | Allen Winter <winter@kde.org> | 2007-01-20 23:57:46 +0000 |
---|---|---|
committer | Allen Winter <winter@kde.org> | 2007-01-20 23:57:46 +0000 |
commit | 334e5ff5439d76c03d57b57518ebd596067fb837 (patch) | |
tree | 851c8229c212c02c01a17f6862c6fa4e49f94c77 /modules/FindKDE4Internal.cmake | |
parent | 70c525d58ab923b19720edb3257d602b38d588c2 (diff) | |
download | extra-cmake-modules-334e5ff5439d76c03d57b57518ebd596067fb837.tar.gz extra-cmake-modules-334e5ff5439d76c03d57b57518ebd596067fb837.tar.bz2 |
New macros for creating and installing application handbooks.
To use, in your module/doc/app/CMakeLists.txt:
kde4_create_handbook(index.docbook)
kde4_install_handbook()
Oh, this will probably not work for kdelibs/doc because we
need to pass meinproc the --srcdir option in that module.
CCMAIL: kde-buildsystem@kde.org
svn path=/trunk/KDE/kdelibs/; revision=625750
Diffstat (limited to 'modules/FindKDE4Internal.cmake')
-rw-r--r-- | modules/FindKDE4Internal.cmake | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/modules/FindKDE4Internal.cmake b/modules/FindKDE4Internal.cmake index 143c3ea0..6322bd75 100644 --- a/modules/FindKDE4Internal.cmake +++ b/modules/FindKDE4Internal.cmake @@ -181,8 +181,14 @@ # Installs all png and svgz files in the current directory to the icon # directoy given in path, in the subdirectory for the given icon theme. # -# KDE4_CREATE_HTML_HANDBOOK( <docbookfile1> ... <docbookfileN> -# Create the HTML documentation using meinproc from the listed docbook files +# KDE4_CREATE_HANDBOOK( docbookfile ) +# Create the handbook from the docbookfile (using meinproc) +# +# KDE4_INSTALL_HANDBOOK() +# Install the handbook documentation +# +# KDE4_CREATE_HTML_HANDBOOK( docbookfile ) +# Create HTML version of the handbook from the docbookfile (using meinproc) # # _KDE4_PLATFORM_INCLUDE_DIRS is used only internally # _KDE4_PLATFORM_DEFINITIONS is used only internally |