Details
Description
Cannot compile VS project with Multibyte Character Sets becouse in file "windows-msvc.qbs" hard coded "platformDefines: base.concat(['UNICODE'])", for VS compiler this means Use Unicode Character Set.
I changed string "platformDefines: base.concat(['UNICODE'])" to "platformDefines: base.concat([])" and project compiles corectly. In project file I set cpp.defines: "_MBCS" that means Use Multi-Byte Character Set.
This very important thing for vs compilers. Please fix this.
I attached changed file...