mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-11-30 04:24:11 +01:00
11 lines
358 B
Meson
11 lines
358 B
Meson
conf = configuration_data()
|
|
conf.set('dlldir', get_option('prefix')+'/'+get_option('bindir'))
|
|
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')
|
|
)
|