mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-12-01 07:24:12 +01:00
f5782cd6cd
* use winepath to convert unix path * Add overrides option to setup script * Fix missing arch switch in setup script
10 lines
294 B
Meson
10 lines
294 B
Meson
conf = configuration_data()
|
|
conf.set('dlldir', get_option('prefix')+'/'+get_option('bindir'))
|
|
conf.set('arch', target_machine.cpu_family())
|
|
configure_file(
|
|
configuration : conf,
|
|
input : 'dlls_setup.sh.in',
|
|
output : 'dlls_setup.sh',
|
|
install_dir : get_option('bindir')
|
|
)
|