summaryrefslogtreecommitdiffstats
path: root/plugins/pythonconsole/pythonconsole/meson.build
blob: 6bae3880acdf757f94d493fa6e60be6846551231 (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
pythonconsole_sources = files(
  '__init__.py',
  'config.py',
  'console.py',
)

install_data(
  pythonconsole_sources,
  install_dir: join_paths(
    pkglibdir,
    'plugins',
    'pythonconsole',
  )
)

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