# Drumstick MIDI Monitor
# Copyright (C) 2005-2022 Pedro Lopez-Cabanillas <plcl@users.sourceforge.net>
#
# This program is free software; you can 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 of the License, or
# (at your option) any later version.
#
# 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, see <http://www.gnu.org/licenses/>.

set(MANPAGE ${PROJECT_NAME}.1)
if (BUILD_DOCS)
    include(PandocMacros)
    if (UNIX AND NOT APPLE)
        update_manpages(${MANPAGE} ${PROJECT_NAME}.ja.1)
        install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${MANPAGE}
                DESTINATION ${CMAKE_INSTALL_MANDIR}/man1)
        install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}.ja.1
                DESTINATION ${CMAKE_INSTALL_MANDIR}/ja/man1
                RENAME ${MANPAGE})
    endif()
    update_helpfiles(cs en es fr ja)
else()
    if (UNIX AND NOT APPLE)
        install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/${MANPAGE}
                DESTINATION ${CMAKE_INSTALL_MANDIR}/man1)
        install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/${PROJECT_NAME}.ja.1
                DESTINATION ${CMAKE_INSTALL_MANDIR}/ja/man1
                RENAME ${MANPAGE})
        foreach(_lang IN ITEMS cs en es fr ja)
            install( FILES "${_lang}/index.html"
                     DESTINATION ${CMAKE_INSTALL_DOCDIR}/${_lang}/${PROJECT_NAME} )
        endforeach()
    endif()
endif()
