2012-07-10 17:17:17 +02:00
|
|
|
#=============================================================================
|
|
|
|
# MusE
|
|
|
|
# Linux Music Editor
|
|
|
|
# $Id:$
|
|
|
|
#
|
2012-07-11 21:29:42 +02:00
|
|
|
# Copyright (C) 2002-2012 by Werner Schweer and others
|
2012-07-10 17:17:17 +02:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#=============================================================================
|
|
|
|
|
2012-08-07 20:47:48 +02:00
|
|
|
install(DIRECTORY
|
|
|
|
plugins
|
|
|
|
DESTINATION ${Mscore_SHARE_NAME}${Mscore_INSTALL_NAME}manual
|
2012-07-12 18:46:15 +02:00
|
|
|
)
|
2012-07-12 19:20:41 +02:00
|
|
|
|
2014-07-21 12:38:00 +02:00
|
|
|
install (DIRECTORY
|
|
|
|
${PROJECT_BINARY_DIR}/share/manual/plugins
|
|
|
|
DESTINATION ${Mscore_SHARE_NAME}${Mscore_INSTALL_NAME}manual
|
2014-07-21 12:49:32 +02:00
|
|
|
)
|
2014-07-21 12:38:00 +02:00
|
|
|
|
2013-10-16 18:09:26 +02:00
|
|
|
install(FILES
|
|
|
|
DESTINATION ${Mscore_SHARE_NAME}${Mscore_INSTALL_NAME}manual
|
|
|
|
)
|
|
|
|
|
2012-07-13 13:09:26 +02:00
|
|
|
if (IS_DIRECTORY en)
|
2012-07-12 18:46:15 +02:00
|
|
|
install (DIRECTORY
|
2012-08-07 20:47:48 +02:00
|
|
|
en
|
2012-07-10 17:17:17 +02:00
|
|
|
DESTINATION ${Mscore_SHARE_NAME}${Mscore_INSTALL_NAME}manual
|
|
|
|
)
|
2012-07-13 13:09:26 +02:00
|
|
|
endif (IS_DIRECTORY en)
|
2012-07-11 21:29:42 +02:00
|
|
|
|
2012-08-07 20:47:48 +02:00
|
|
|
if (IS_DIRECTORY de)
|
|
|
|
install (DIRECTORY
|
|
|
|
de
|
|
|
|
DESTINATION ${Mscore_SHARE_NAME}${Mscore_INSTALL_NAME}manual
|
|
|
|
)
|
|
|
|
endif (IS_DIRECTORY de)
|
|
|
|
|