diff options
author | gregory guy <[email protected]> | 2019-05-01 14:48:25 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2019-05-12 16:30:25 +0200 |
commit | db17d12f24fab5ed233b222c90000e3c0081f99d (patch) | |
tree | 8a67c231c7f3df939bbebd42f5c9c932a6747dd1 /doc | |
parent | 45746889b14682c45c1d1ee41668c073acd39280 (diff) | |
download | kchmviewer-db17d12f24fab5ed233b222c90000e3c0081f99d.tar.gz kchmviewer-db17d12f24fab5ed233b222c90000e3c0081f99d.zip |
conversion to the cmake building system
Signed-off-by: gregory guy <[email protected]>
Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/CMakeLists.txt | 3 | ||||
-rw-r--r-- | doc/en/CMakeLists.txt | 1 | ||||
-rw-r--r-- | doc/man/CMakeLists.txt | 5 | ||||
-rw-r--r-- | doc/man/kchmviewer.1 | 34 | ||||
-rw-r--r-- | doc/tdeioslave/CMakeLists.txt | 1 | ||||
-rw-r--r-- | doc/tdeioslave/en/CMakeLists.txt | 1 | ||||
-rw-r--r-- | doc/tdeioslave/en/msits/CMakeLists.txt | 1 |
7 files changed, 46 insertions, 0 deletions
diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt new file mode 100644 index 0000000..185eab9 --- /dev/null +++ b/doc/CMakeLists.txt @@ -0,0 +1,3 @@ +add_subdirectory( man ) +tde_conditional_add_subdirectory( WITH_TDE en ) +tde_conditional_add_subdirectory( WITH_TDE tdeioslave ) diff --git a/doc/en/CMakeLists.txt b/doc/en/CMakeLists.txt new file mode 100644 index 0000000..ba3ef3e --- /dev/null +++ b/doc/en/CMakeLists.txt @@ -0,0 +1 @@ +tde_create_handbook( DESTINATION ${PROJECT_NAME} ) diff --git a/doc/man/CMakeLists.txt b/doc/man/CMakeLists.txt new file mode 100644 index 0000000..8512250 --- /dev/null +++ b/doc/man/CMakeLists.txt @@ -0,0 +1,5 @@ +INSTALL( + FILES ${PROJECT_NAME}.1 + DESTINATION ${MAN_INSTALL_DIR}/man1 + COMPONENT doc +) diff --git a/doc/man/kchmviewer.1 b/doc/man/kchmviewer.1 new file mode 100644 index 0000000..5994f53 --- /dev/null +++ b/doc/man/kchmviewer.1 @@ -0,0 +1,34 @@ +.\" Author: Jose Luis Tallon <[email protected]> +.\" +.\" This is free software; you may redistribute it and/or modify +.\" it under the terms of the GNU General Public License as +.\" published by the Free Software Foundation; either version 2, +.\" or (at your option) any later version. +.\" +.\" This is distributed in the hope that it will be useful, but +.\" WITHOUT ANY WARRANTY; without even the implied warranty of +.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +.\" GNU General Public License for more details. +.\" +.\" You should have received a copy of the GNU General Public License +.\" along with the Debian GNU/Linux system; if not, write to the Free +.\" Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA +.\" 02111-1307 USA +.TH kchmviwer "1" "December 2005" +.SH NAME +kchmviewer \- Windows CHM viewer for TDE +.SH SYNOPSIS +kchmviewer +.SH DESCRIPTION +.B kchmviewer +makes it possible to browse native Windows CHM files under TDE. +.PP +Complete documentation can be found in docbook format in +/usr/share/doc/tde/HTML/<lang>/kchmviewer/ on this system. +.SH AUTHOR + George Yunaev <[email protected]> +.PP +This manual page was written by Jose Luis Tallon +.nh +<jltallon@adv\-solutions.net> +for the \fBDebian\fP system (but may be used by others). diff --git a/doc/tdeioslave/CMakeLists.txt b/doc/tdeioslave/CMakeLists.txt new file mode 100644 index 0000000..c938175 --- /dev/null +++ b/doc/tdeioslave/CMakeLists.txt @@ -0,0 +1 @@ +add_subdirectory( en ) diff --git a/doc/tdeioslave/en/CMakeLists.txt b/doc/tdeioslave/en/CMakeLists.txt new file mode 100644 index 0000000..a91f2c1 --- /dev/null +++ b/doc/tdeioslave/en/CMakeLists.txt @@ -0,0 +1 @@ +add_subdirectory( msits ) diff --git a/doc/tdeioslave/en/msits/CMakeLists.txt b/doc/tdeioslave/en/msits/CMakeLists.txt new file mode 100644 index 0000000..fcbaa9b --- /dev/null +++ b/doc/tdeioslave/en/msits/CMakeLists.txt @@ -0,0 +1 @@ +tde_create_handbook( DESTINATION tdeioslave/msits ) |