lazarus: use resources by official way

git-svn-id: trunk@22962 -
This commit is contained in:
paul 2009-12-04 14:41:19 +00:00
parent 4212ad71e2
commit 48ba589092
5 changed files with 25 additions and 22 deletions

1
.gitattributes vendored
View File

@ -3454,6 +3454,7 @@ ide/keymapschemedlg.pas svneol=native#text/pascal
ide/keymapshortcutdlg.lfm svneol=native#text/plain
ide/keymapshortcutdlg.lrs svneol=native#text/pascal
ide/keymapshortcutdlg.pas svneol=native#text/plain
ide/lazarus.ico -text svneol=unset#image/ico
ide/lazarus.lpi svneol=native#text/plain
ide/lazarus.pp svneol=native#text/pascal
ide/lazarus.rc svneol=native#text/plain

BIN
ide/lazarus.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 133 KiB

View File

@ -14,6 +14,8 @@
<MainUnit Value="0"/>
<TargetFileExt Value=""/>
<Title Value="Lazarus"/>
<Icon Value="0"/>
<UseXPManifest Value="True"/>
</General>
<PublishOptions>
<Version Value="2"/>

View File

@ -1,22 +1,17 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity
version="1.0.0.0"
processorArchitecture="*"
name="Lazarus"
type="win32"
/>
<description>GUI RAD for FreePascal</description>
<dependency>
<dependentAssembly>
<assemblyIdentity
type="win32"
name="Microsoft.Windows.Common-Controls"
version="6.0.0.0"
processorArchitecture="*"
publicKeyToken="6595b64144ccf1df"
language="*"
/>
</dependentAssembly>
</dependency>
</assembly>
<assemblyIdentity version="1.0.0.0" processorArchitecture="*" name="CompanyName.ProductName.YourApp" type="win32"/>
<description>Your application description here.</description>
<dependency>
<dependentAssembly>
<assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" processorArchitecture="*" publicKeyToken="6595b64144ccf1df" language="*"/>
</dependentAssembly>
</dependency>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
<security>
<requestedPrivileges>
<requestedExecutionLevel level="asInvoker" uiAccess="false"/>
</requestedPrivileges>
</security>
</trustInfo>
</assembly>

View File

@ -1,2 +1,7 @@
MAINICON ICON "../images/mainicon.ico"
1 24 "lazarus.manifest"
#define RT_MANIFEST 24
#define CREATEPROCESS_MANIFEST_RESOURCE_ID 1
#define ISOLATIONAWARE_MANIFEST_RESOURCE_ID 2
#define ISOLATIONAWARE_NOSTATICIMPORT_MANIFEST_RESOURCE_ID 3
CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "lazarus.manifest"
MAINICON ICON "lazarus.ico"