fix: align Release UNICODE config name with vcxproj; use --config in CI

This commit is contained in:
2026-04-30 22:44:48 +02:00
parent 5f7bf03806
commit ef88d32877
3 changed files with 4 additions and 5 deletions
+2 -3
View File
@@ -145,8 +145,8 @@ class BuildConfig:
CONFIGS = {
'x86-ansi': BuildConfig('x86-ansi', 'Release', 'Win32', 'x86-ansi'),
'x86-unicode': BuildConfig('x86-unicode', 'Release Unicode', 'Win32', 'x86-unicode'),
'x64-unicode': BuildConfig('x64-unicode', 'Release Unicode', 'x64', 'amd64-unicode'),
'x86-unicode': BuildConfig('x86-unicode', 'Release UNICODE', 'Win32', 'x86-unicode'),
'x64-unicode': BuildConfig('x64-unicode', 'Release UNICODE', 'x64', 'amd64-unicode'),
}
DLL_NAME = 'nsProcess.dll'
@@ -677,4 +677,3 @@ def main() -> int:
if __name__ == '__main__':
sys.exit(main())