summaryrefslogtreecommitdiffstats
path: root/test cases/frameworks/7 gnome/resources-data/meson.build
blob: 31a577b2ed93705aad8562ffca7cfb764001ffa1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
subdir('subdir')

python3 = import('python3').find_python()

fake_generator_script = '''
import os, sys
assert os.path.exists(sys.argv[1]), "File %s not found" % sys.argv[1]
print("This is a generated resource.")
'''

# Generate file res3.txt from file res3.txt.in. This is then included
# in a GResource file, driven by resources/meson.build.
res3_txt = custom_target('res3',
  input: 'res3.txt.in',
  output: 'res3.txt',
  command: [python3, '-c', fake_generator_script, '@INPUT@'],
  capture: true,
)