From 4b0f13d351327a423837d5de6c641f53daffd3b8 Mon Sep 17 00:00:00 2001 From: Joshua Ashton Date: Tue, 9 Aug 2022 13:19:36 +0100 Subject: [PATCH] [build] Set dxvk_wsi and defines for Windows --- meson.build | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meson.build b/meson.build index f044c8f4..11692c38 100644 --- a/meson.build +++ b/meson.build @@ -92,6 +92,9 @@ if platform == 'windows' endif dxvk_include_path = include_directories('./include') + + dxvk_wsi = 'win32' + compiler_args += ['-DDXVK_WSI_WIN32'] else lib_vulkan = cpp.find_library('vulkan') lib_sdl2 = cpp.find_library('SDL2')