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:
authorTatsuyuki Ishi <ishitatsuyuki@gmail.com>2024-01-19 04:04:55 +0300
committerPhilip Rebohle <25567304+doitsujin@users.noreply.github.com>2024-01-23 17:45:42 +0300
commit6199776869308b6d8f38095a580bda8ca711fd71 (patch)
treede3ba48cd186ae649b133a91fcafa8e1b3a67128
parent6faf3c1acd26040371ea0a5a387217d6cd85d022 (diff)
[build] Set filealign for MSVC builds
Useful if you want to run a MSVC build on Wine.
-rw-r--r--meson.build4
1 files changed, 4 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index acd8d308..8e7f2c4d 100644
--- a/meson.build
+++ b/meson.build
@@ -72,6 +72,10 @@ if platform == 'windows'
'-Wl,--kill-at',
]
endif
+ else
+ link_args += [
+ '/FILEALIGN:4096',
+ ]
endif
lib_d3d9 = cpp.find_library('d3d9')