...confirmed. I'll look into it. The actual idea was to be natively compatible with Windows 7/8.Just a quick note: Its not as easy as it seems. Usually this really should work - it works just fine in several other applications. So the manifest/resource file is not the issue. I'm afraid one of our hacks (maybe the one to achieve debugging privileges on Windows) screws it. It was wrong all the time, just it becomes visual now.
/*
#if defined(WX_CPU_AMD64)
wxMANIFEST_ID RT_MANIFEST "amd64.manifest"
#elif defined(WX_CPU_IA64)
wxMANIFEST_ID RT_MANIFEST "ia64.manifest"
#elif defined(WX_CPU_X86)
wxMANIFEST_ID RT_MANIFEST "x86.manifest"
#else
#warning No platform defined! Unable to embed manifest file.
#endif
*/
As a result no manifest file is being embedded in codeblocks.exe file.Yes, I've seen this meanwhile (I wasn't looking at the resource file in the first place, just at the manifest files). It was commented because it was wrong. I've fixed it properly in SVN head now.