mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-11-29 19:24:10 +01:00
26ef59dd6f
Also, the install script no longer relies on the prefix being set by the Meson configuration.
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 : 'setup_dxvk.sh.in',
|
|
output : 'setup_dxvk.sh',
|
|
install_dir : get_option('bindir')
|
|
)
|