mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-07-12 04:35:50 +00:00
a915bdc1b6
. dbghelp is now pulled in by a separate external_libraries header . disable _SECURE_SCL (improves perf) . amd64: initial implementation of essential functions, not yet complete . manifest: disabled on ICC because its IPO module incorrectly interprets /manifestdependency . wdbg_sym: no longer support stack walks on non-ia32 win2k (avoids trouble due to mixing SEH and dtors) . winit and wstartup: had to remove forced symbol include - does not link otherwise on ICC (for reasons unknown). function pointers are actually included and called on x64 windows (compiling with MSC) This was SVN commit r5895.
21 lines
946 B
C++
21 lines
946 B
C++
#include "precompiled.h"
|
|
|
|
/*
|
|
To use XP-style themed controls, we need to use the manifest to specify the
|
|
desired version. (This must be set in the game's .exe in order to affect Atlas.)
|
|
|
|
For VC7.1, we use manifest.rc to include a complete manifest file.
|
|
For VC8.0, which already generates its own manifest, we use the line below
|
|
to add the necessary parts to that generated manifest.
|
|
|
|
ICC 10.1 IPO considers this string to be an input file, hence this
|
|
is currently disabled there.
|
|
*/
|
|
#if MSC_VERSION >= 1400 && !ICC_VERSION
|
|
# if ARCH_IA32
|
|
# pragma comment(linker, "\"/manifestdependency:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='X86' publicKeyToken='6595b64144ccf1df'\"")
|
|
# elif ARCH_AMD64
|
|
# pragma comment(linker, "\"/manifestdependency:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='x64' publicKeyToken='6595b64144ccf1df'\"")
|
|
# endif
|
|
#endif
|