mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-26 11:17:57 +08:00
Move resource files where they belong
This commit is contained in:
@ -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
|
||||
|
||||
|
@ -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.');
|
||||
|
@ -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">
|
||||
|
@ -1 +0,0 @@
|
||||
MAINICON ICON "../../res/mainicon.ico"
|
@ -1 +0,0 @@
|
||||
1 24 "..\..\res\manifest.xml"
|
1
res/icon.rc
Normal file
1
res/icon.rc
Normal file
@ -0,0 +1 @@
|
||||
MAINICON ICON "mainicon.ico"
|
1
res/manifest.rc
Normal file
1
res/manifest.rc
Normal file
@ -0,0 +1 @@
|
||||
1 24 "manifest.xml"
|
Reference in New Issue
Block a user