Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/doitsujin/dxvk.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Ashton <joshua@froggi.es>2022-08-21 22:14:10 +0300
committerJoshua Ashton <joshua@froggi.es>2022-08-21 22:14:10 +0300
commiteea181ab1da416b97fd7dbcfe4f4702ff7ae1096 (patch)
tree99b87d8f513c8a3ebd3bb62cd0637f66fed87ed8
parent2f6e70bfd429ae94462e5327ff16530876b0a7a4 (diff)
[build] Enable building nativelynative-final
-rw-r--r--meson.build7
1 files changed, 3 insertions, 4 deletions
diff --git a/meson.build b/meson.build
index 11692c38..d2c6a546 100644
--- a/meson.build
+++ b/meson.build
@@ -103,6 +103,9 @@ else
wrc_generator = generator(wrc, output : [ '@BASENAME@_ignored.h' ], arguments : [ '@OUTPUT@' ] )
dxvk_include_path = include_directories('./include', './include/native', './include/native/windows', './include/native/directx')
+
+ dxvk_wsi = 'sdl2'
+ compiler_args += ['-DDXVK_WSI_SDL2']
endif
add_project_arguments(cpp.get_supported_arguments(compiler_args), language: 'cpp')
@@ -130,10 +133,6 @@ dxvk_version = vcs_tag(
output: 'version.h',
)
-if platform != 'windows'
- error('Non-Windows platforms not supported... yet.')
-endif
-
subdir('src')
enable_tests = get_option('enable_tests')