mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-11-29 10:24:10 +01:00
a05c93dd17
- Don't turn off warnings for winelib builds, fix them. Using __declspec on winelib builds just doesn't make sense.
- Drop the custom cross property 'winelib'. Detect it instead.
- Move the libdl dependency to the build system
- Don't run wine during mingw build process. Same as for wine builds, see 715d2571
12 lines
344 B
Meson
12 lines
344 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', dxvk_winelib)
|
|
configure_file(
|
|
configuration : conf,
|
|
input : 'setup_dxvk.sh.in',
|
|
output : 'setup_dxvk.sh',
|
|
install_dir : get_option('bindir')
|
|
)
|