- Timestamp:
- 06/10/11 01:16:27 (14 years ago)
- Location:
- ps/trunk
- Files:
-
- 2 edited
-
build/premake/premake.lua (modified) (1 diff)
-
source/lib/sysdep/os/win/manifest.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ps/trunk/build/premake/premake.lua
r9574 r9607 672 672 673 673 -- allow manual unload of delay-loaded DLLs 674 "/DELAY:UNLOAD" 674 "/DELAY:UNLOAD", 675 676 -- see manifest.cpp 677 -- (we need to use " because Premake emits this string directly 678 -- into a double-quoted attribute value in the project XML files 679 -- with no automatic escaping) 680 ""/manifestdependency:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='X86' publicKeyToken='6595b64144ccf1df'"", 681 } 682 683 -- see manifest.cpp 684 package.config["Debug"].linkoptions = { 685 ""/manifestdependency:type='win32' name='Microsoft.VC80.DebugCRT' version='8.0.50727.4053' processorArchitecture='x86' publicKeyToken='1fc8b3b9a1e18e3b'"", 686 } 687 package.config["Release"].linkoptions = { 688 ""/manifestdependency:type='win32' name='Microsoft.VC80.CRT' version='8.0.50727.4053' processorArchitecture='x86' publicKeyToken='1fc8b3b9a1e18e3b'"", 675 689 } 676 690 -
ps/trunk/source/lib/sysdep/os/win/manifest.cpp
r9576 r9607 56 56 #endif 57 57 58 /* 59 NOTE: vcbuild.exe (as used by the autobuilder) seems to ignore these linker 60 comments, so we have to duplicate these commands into premake.lua too. 61 Remember to keep them in sync with this file. 62 (Duplicate entries appear to get omitted from the .manifest file so there 63 should be no harmful effects.) 64 */ 65 58 66 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
