Building ConEmu

Problems with ConEmu building from https://github.com/Maximus5/ConEmu.git v14.01.06in Visual Studio 2010ConEmuCunresolved external symbol `__imp__`wsprintfA - add additional dependency **User32.lib** **ConEmuCD**Error 3 error LNK2001: unresolved external symbol `__imp__`CharUpperBuffW@8 Error 4 error LNK2001: unresolved external symbol `__imp__`MapVirtualKeyW@8 Error 5 error LNK2001: unresolved external symbol `__imp__`VkKeyScanW@4 Error 6 error LNK2001: unresolved external symbol `__imp__`GetSystemMetrics@4 Error 7 error LNK2001: unresolved external symbol `__imp__`IsRectEmpty@4 Error 8 error LNK2001: unresolved external symbol `__imp__`MonitorFromRect@8 Error 9 error LNK2001: unresolved external symbol `__imp__`GetMonitorInfoW@8 Error 10 error LNK2001: unresolved external symbol `__imp__`MonitorFromWindow@8 Error 11 error LNK2001: unresolved external symbol `__imp__`SystemParametersInfoW@16 etc....

January 16, 2014 · SergeM

Temporary files format that can be deleted from project of Visual Studio 2010

Add to .gitignore: *.ipch Debug Release *.sdf - The SDF file is your code browsing database which uses SQL Sever Compact Edition. You don’t need to copy this SDF file while you move your project, and it will be automatically populated in the new location once you open your project. [[1](http://social.msdn.microsoft.com/Forums/en-US/20fee924-e267-4c1a-b0fe-3321f86e1bb5/sdf-file?forum=vcprerelease" target="_blank)] [[2](http://social.msdn.microsoft.com/Forums/vstudio/en-US/1ef46540-e4b8-4779-8403-49239bc3f7ee/is-it-safe-to-delete-ipch-folder-precompiled-headers?forum=vcgeneral" target="_blank)]

January 14, 2014 · SergeM

Error spawning cmd.exe

I got error message Error spawning cmd.exeduring compiling of Blender sources. The cause was in system PATH environment variable. Some buggy software I had installed and uninstalled before erased all contents of PATH. So I found out that Visual Studio 2008 has missing paths to %SystemRoot%\system32; %SystemRoot%; %SystemRoot%\System32\Wbem;A added it and the problem gone. 

May 12, 2013 · SergeM