Move resource files where they belong

This commit is contained in:
Ansgar Becker
2009-01-13 18:12:08 +00:00
parent b9ae5d8fe2
commit 6d388db57b
8 changed files with 11 additions and 11 deletions

View File

@ -225,9 +225,9 @@ if not %err% == 0 goto end
rem Build main executable
echo Compiling main project.
cd /d "%base_dir%\packages\%package_dir%\"
brcc32 version.rc
brcc32 icon.rc
brcc32 manifest.rc
brcc32 ..\..\res\version.rc
brcc32 ..\..\res\icon.rc
brcc32 ..\..\res\manifest.rc
"%compiler%" %params% -e"%base_dir%\out" heidisql.dpr
if not %errorlevel% == 0 goto end

View File

@ -43,9 +43,9 @@ uses
uVistaFuncs in '..\..\source\uVistaFuncs.pas',
dataviewsave in '..\..\source\dataviewsave.pas' {FrmDataViewSave};
{$R icon.RES}
{$R version.RES}
{$R manifest.RES}
{$R ..\..\res\icon.RES}
{$R ..\..\res\version.RES}
{$R ..\..\res\manifest.RES}
begin
debug('perf: All modules loaded.');

View File

@ -58,13 +58,13 @@
<DelphiCompile Include="heidisql.dpr">
<MainSource>MainSource</MainSource>
</DelphiCompile>
<RcCompile Include="icon.rc">
<RcCompile Include="..\..\res\icon.rc">
<Form>icon.res</Form>
</RcCompile>
<RcCompile Include="version.rc">
<RcCompile Include="..\..\res\version.rc">
<Form>version.res</Form>
</RcCompile>
<RcCompile Include="manifest.rc">
<RcCompile Include="..\..\res\manifest.rc">
<Form>manifest.res</Form>
</RcCompile>
<DCCReference Include="..\..\source\about.pas">

View File

@ -1 +0,0 @@
MAINICON ICON "../../res/mainicon.ico"

View File

@ -1 +0,0 @@
1 24 "..\..\res\manifest.xml"

1
res/icon.rc Normal file
View File

@ -0,0 +1 @@
MAINICON ICON "mainicon.ico"

1
res/manifest.rc Normal file
View File

@ -0,0 +1 @@
1 24 "manifest.xml"