1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2024-11-29 19:24:10 +01:00
dxvk/utils/meson.build
Andre Heider 7d7dbe2632 [meta] Don't hardcode the default libdir
Use the configured libdir, so non-defaults paths don't break the script.
2018-10-11 08:21:58 +02:00

12 lines
374 B
Meson

conf = configuration_data()
conf.set('bindir', get_option('bindir'))
conf.set('libdir', get_option('libdir'))
conf.set('arch', target_machine.cpu_family())
conf.set('winelib', meson.get_cross_property('winelib', false))
configure_file(
configuration : conf,
input : 'setup_dxvk.sh.in',
output : 'setup_dxvk.sh',
install_dir : get_option('bindir')
)