summaryrefslogtreecommitdiffstats
path: root/plugins/snippets/snippets/meson.build
blob: 1ca34de28e7eb45cb85c70df1f9ae3b7f182c117 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
snippets_sources = [
  '__init__.py',
  'appactivatable.py',
  'completion.py',
  'document.py',
  'exporter.py',
  'helper.py',
  'importer.py',
  'languagemanager.py',
  'library.py',
  'manager.py',
  'parser.py',
  'placeholder.py',
  'shareddata.py',
  'signals.py',
  'singleton.py',
  'snippet.py',
  'substitutionparser.py',
  'windowactivatable.py',
]

install_data(
  snippets_sources,
  install_dir: join_paths(
    pkglibdir,
    'plugins',
    'snippets',
  )
)

install_data(
  'snippets.ui',
  install_dir: join_paths(
    pkgdatadir,
    'plugins',
    'snippets',
    'ui',
  )
)