summaryrefslogtreecommitdiff
path: root/data/illuminant/meson.build
blob: f8dfa07b0ec55c30e464177d53d620373b8fed01 (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
generated_spectra = [
  'CIE-A',
  'CIE-B',
  'CIE-C',
  'CIE-D50',
  'CIE-D55',
  'CIE-D65',
  'CIE-D93',
  'CIE-E',
  'CIE-F10',
  'CIE-F11',
  'CIE-F12',
  'CIE-F1',
  'CIE-F2',
  'CIE-F3',
  'CIE-F4',
  'CIE-F5',
  'CIE-F6',
  'CIE-F7',
  'CIE-F8',
  'CIE-F9',
]
foreach arg: generated_spectra
  custom_target(arg,
    input: arg + '.csv',
    output: arg + '.sp',
    command: [ cd_idt8, 'create-sp', '@OUTPUT@', '@INPUT@', '100.0' ],
    install: true,
    install_dir: join_paths(datadir, 'colord', 'illuminant')
  )
endforeach