diff options
Diffstat (limited to 'muse/doc')
-rw-r--r-- | muse/doc/CMakeLists.txt | 24 | ||||
-rw-r--r-- | muse/doc/dimpl/CMakeLists.txt | 44 | ||||
-rw-r--r-- | muse/doc/dimpl/dimpl.pdf | bin | 166457 -> 162120 bytes | |||
-rw-r--r-- | muse/doc/man/CMakeLists.txt | 22 | ||||
-rw-r--r-- | muse/doc/man/de/CMakeLists.txt | 42 |
5 files changed, 132 insertions, 0 deletions
diff --git a/muse/doc/CMakeLists.txt b/muse/doc/CMakeLists.txt new file mode 100644 index 00000000..387df934 --- /dev/null +++ b/muse/doc/CMakeLists.txt @@ -0,0 +1,24 @@ +#============================================================================= +# MusE +# Linux Music Editor +# $Id:$ +# +# Copyright (C) 2002-2006 by Werner Schweer and others +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License version 2. +# +# This program 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 this program; if not, write to the Free Software +# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +#============================================================================= + +if (TEXEXEC_PATH) + subdirs( dimpl man ) +endif (TEXEXEC_PATH) + diff --git a/muse/doc/dimpl/CMakeLists.txt b/muse/doc/dimpl/CMakeLists.txt new file mode 100644 index 00000000..4c923a9b --- /dev/null +++ b/muse/doc/dimpl/CMakeLists.txt @@ -0,0 +1,44 @@ +#============================================================================= +# MusE +# Linux Music Editor +# $Id:$ +# +# Copyright (C) 2002-2006 by Werner Schweer and others +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License version 2. +# +# This program 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 this program; if not, write to the Free Software +# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +#============================================================================= + +set (SRC dimpl.tex) + +add_custom_command ( + OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/dimpl.pdf + DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/dimpl.tex + COMMAND ${TEXEXEC_PATH}/texexec + ARGS --language=en --verbose --batch --pdf --result=dimpl.pdf dimpl.tex + ) + +add_custom_target ( dimpl ALL + DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/dimpl.pdf + ) + +install_files ( /share/${MusE_INSTALL_NAME}/doc/ .pdf + ${CMAKE_CURRENT_SOURCE_DIR}/dimpl.pdf ) + +set (extraClean dimpl.log dimpl.tmp dimpl.tuo dimpl.tui + dimpl-mpgraph.mp mpgraph.mp ) + +set_directory_properties( PROPERTIES + ADDITIONAL_MAKE_CLEAN_FILES "${extraClean}" + ) + + diff --git a/muse/doc/dimpl/dimpl.pdf b/muse/doc/dimpl/dimpl.pdf Binary files differindex 0e055d37..22f0df05 100644 --- a/muse/doc/dimpl/dimpl.pdf +++ b/muse/doc/dimpl/dimpl.pdf diff --git a/muse/doc/man/CMakeLists.txt b/muse/doc/man/CMakeLists.txt new file mode 100644 index 00000000..a1d7c93f --- /dev/null +++ b/muse/doc/man/CMakeLists.txt @@ -0,0 +1,22 @@ +#============================================================================= +# MusE +# Linux Music Editor +# $Id:$ +# +# Copyright (C) 2002-2006 by Werner Schweer and others +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License version 2. +# +# This program 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 this program; if not, write to the Free Software +# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +#============================================================================= + +subdirs( de en ) + diff --git a/muse/doc/man/de/CMakeLists.txt b/muse/doc/man/de/CMakeLists.txt new file mode 100644 index 00000000..9c73fd00 --- /dev/null +++ b/muse/doc/man/de/CMakeLists.txt @@ -0,0 +1,42 @@ +#============================================================================= +# MusE +# Linux Music Editor +# $Id:$ +# +# Copyright (C) 2002-2006 by Werner Schweer and others +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License version 2. +# +# This program 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 this program; if not, write to the Free Software +# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +#============================================================================= + +set (SRC man-de.tex) + +add_custom_command ( + OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/man-de.pdf + DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/man-de.tex + COMMAND ${TEXEXEC_PATH}/texexec + ARGS --language=en --verbose --batch --pdf --result=man-de.pdf man-de.tex + ) + +add_custom_target ( man-de ALL + DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/man-de.pdf + ) + +install_files ( /share/${MusE_INSTALL_NAME}/doc/ .pdf + ${CMAKE_CURRENT_SOURCE_DIR}/man-de.pdf ) + +set (extraClean man-de.log man-de.tmp man-de.tuo man-de.tui + man-de-mpgraph.mp mpgraph.mp ) + +set_directory_properties( PROPERTIES + ADDITIONAL_MAKE_CLEAN_FILES "${extraClean}" + ) |