File: meson.build

package info (click to toggle)
gpu-viewer 3.23%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 8,008 kB
  • sloc: python: 4,687; xml: 59; csh: 21; makefile: 11; sh: 2
file content (24 lines) | stat: -rw-r--r-- 625 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
project('gpu-viewer',
  license: 'GPL-3.0-or-later',
  meson_version: '>=0.49.0'
)

APPLICATION_ID = 'io.github.arunsivaramanneo.GPUViewer'

subdir('data')
bin_conf = configuration_data()
bin_conf.set('datadir', get_option('prefix') / get_option('datadir'))

configure_file(
  input: 'gpu-viewer.in',
  output: 'gpu-viewer',
  configuration: bin_conf,
  install_dir: get_option('bindir')
)

install_data([ 'About_GPU_Viewer', 'Change Log.md', 'LICENSE', 'README.md' ])

install_subdir('Files',
  install_dir: get_option('datadir') / 'gpu-viewer')
install_subdir('Images',
  install_dir: get_option('datadir') / 'gpu-viewer')