1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-02-21 04:54:15 +01:00

[build][msvc] Enable PDB output for all builds.

PDB generation even for release builds takes a little more time, but makes debugging DXVK on Windows easier. As the symbols are not embedded in the DLL it doesn't impact code generation or output binary size.
This commit is contained in:
num0005 2024-07-26 16:53:54 +01:00 committed by misyl
parent e2b4060d43
commit 01684d36ba

View File

@ -87,8 +87,14 @@ if platform == 'windows'
]
endif
else
# setup file alignment + enable PDB output for MSVC builds
# PDBs are useful for Windows consumers of DXVK
compiler_args += [
'/Z7'
]
link_args += [
'/FILEALIGN:4096',
'/DEBUG:FULL'
]
endif