~ubuntu-branches/ubuntu/trusty/muse/trusty

« back to all changes in this revision

Viewing changes to doc/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Alessio Treglia
  • Date: 2013-08-28 16:25:57 UTC
  • mto: This revision was merged to the branch mainline in revision 27.
  • Revision ID: package-import@ubuntu.com-20130828162557-knls3ip7j262eepx
Tags: upstream-2.1.2
ImportĀ upstreamĀ versionĀ 2.1.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#=============================================================================
 
2
#  MusE
 
3
#  Linux Music Editor
 
4
#  $Id:$
 
5
#
 
6
#  Copyright (C) 1999-2013 by Werner Schweer and others
 
7
#
 
8
#  This program is free software; you can redistribute it and/or modify
 
9
#  it under the terms of the GNU General Public License
 
10
#  as published by the Free Software Foundation; either version 2
 
11
#  of the License, or (at your option) any later version.
 
12
#
 
13
#  This program is distributed in the hope that it will be useful,
 
14
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
#  GNU General Public License for more details.
 
17
#
 
18
#  You should have received a copy of the GNU General Public License
 
19
#  along with this program; if not, write to the
 
20
#  Free Software Foundation, Inc.,
 
21
#  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
22
#=============================================================================
 
23
 
 
24
install( FILES pdf/documentation.pdf pdf/developer_docs.pdf
 
25
      DESTINATION ${MusE_DOC_DIR}/muse_pdf
 
26
      )
 
27
 
 
28
file (GLOB single_documentation_html_files
 
29
      html/single/documentation/*.css
 
30
      html/single/documentation/*.html
 
31
      # html/single/documentation/*.jpg
 
32
      html/single/documentation/*.png
 
33
      # html/single/documentation/toc_.txt
 
34
      )
 
35
 
 
36
file (GLOB single_developer_docs_html_files
 
37
      html/single/developer_docs/*.css
 
38
      html/single/developer_docs/*.html
 
39
      # html/single/developer_docs/*.jpg
 
40
      html/single/developer_docs/*.png
 
41
      # html/single/developer_docs/toc_.txt
 
42
      )
 
43
 
 
44
file (GLOB split_documentation_html_files
 
45
      html/split/documentation/*.css
 
46
      html/split/documentation/*.html
 
47
      # html/split/documentation/*.jpg
 
48
      html/split/documentation/*.png
 
49
      # html/split/documentation/toc_.txt
 
50
      )
 
51
 
 
52
file (GLOB split_developer_docs_html_files
 
53
      html/split/developer_docs/*.css
 
54
      html/split/developer_docs/*.html
 
55
      # html/split/developer_docs/*.jpg
 
56
      html/split/developer_docs/*.png
 
57
      # html/split/developer_docs/toc_.txt
 
58
      )
 
59
 
 
60
install( FILES ${single_documentation_html_files}
 
61
      DESTINATION ${MusE_DOC_DIR}/muse_html/single/documentation
 
62
      )
 
63
 
 
64
install( FILES ${single_developer_docs_html_files}
 
65
      DESTINATION ${MusE_DOC_DIR}/muse_html/single/developer_docs
 
66
      )
 
67
 
 
68
install( FILES ${split_documentation_html_files}
 
69
      DESTINATION ${MusE_DOC_DIR}/muse_html/split/documentation
 
70
      )
 
71
 
 
72
install( FILES ${split_developer_docs_html_files}
 
73
      DESTINATION ${MusE_DOC_DIR}/muse_html/split/developer_docs
 
74
      )
 
75
      
 
 
b'\\ No newline at end of file'