Delphi dcc32 和清单编译
Delphi dcc32 and manifest compilation
如何使用 DCC32.EXE 和默认清单文件编译 Delphi 项目?
我已经编译了一些项目,但由于缺少清单文件,任务对话框没有出现。
当我从 IDE 编译时,一切正常,但是当我使用 DCC32.EXE 时,任务对话框组件不起作用。
我认为是版本信息文件的问题。
- 创建文件并命名为
anything.xml
- 将以下内容写入文件:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity type="win32" name="App" version="3.1.0.0" processorArchitecture="*"/>
<dependency>
<dependentAssembly>
<assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" publicKeyToken="6595b64144ccf1df" language="*" processorArchitecture="*"/>
</dependentAssembly>
</dependency>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
<security>
<requestedPrivileges>
<requestedExecutionLevel level="requireAdministrator" uiAccess="false"/>
</requestedPrivileges>
</security>
</trustInfo>
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
<application>
<!--The ID below indicates application support for Windows Vista -->
<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/>
<!--The ID below indicates application support for Windows 7 -->
<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
</application>
</compatibility>
</assembly>
- 创建一个资源文件,例如
proj_manifest.rc
,并在其中写入以下行:
1 24 "anything.xml"
- 使用brcc32.exe
编译资源文件
- 将以下行添加到项目源中:
{$R 'proj_manifest.res'}
- 使用 dcc32.exe 编译项目,仅此而已。
如何使用 DCC32.EXE 和默认清单文件编译 Delphi 项目? 我已经编译了一些项目,但由于缺少清单文件,任务对话框没有出现。 当我从 IDE 编译时,一切正常,但是当我使用 DCC32.EXE 时,任务对话框组件不起作用。 我认为是版本信息文件的问题。
- 创建文件并命名为
anything.xml
- 将以下内容写入文件:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> <assemblyIdentity type="win32" name="App" version="3.1.0.0" processorArchitecture="*"/> <dependency> <dependentAssembly> <assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" publicKeyToken="6595b64144ccf1df" language="*" processorArchitecture="*"/> </dependentAssembly> </dependency> <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3"> <security> <requestedPrivileges> <requestedExecutionLevel level="requireAdministrator" uiAccess="false"/> </requestedPrivileges> </security> </trustInfo> <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1"> <application> <!--The ID below indicates application support for Windows Vista --> <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/> <!--The ID below indicates application support for Windows 7 --> <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/> </application> </compatibility> </assembly>
- 创建一个资源文件,例如
proj_manifest.rc
,并在其中写入以下行:1 24 "anything.xml"
- 使用brcc32.exe 编译资源文件
- 将以下行添加到项目源中:
{$R 'proj_manifest.res'}
- 使用 dcc32.exe 编译项目,仅此而已。