mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-11-29 19:24:10 +01:00
7d7dbe2632
Use the configured libdir, so non-defaults paths don't break the script.
12 lines
374 B
Meson
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')
|
|
)
|