Rename Visual Studio 2008 solution/project file + adjust deployment script accordingly.

This commit is contained in:
LoRd_MuldeR 2011-04-08 00:25:06 +02:00
parent 10d0e92089
commit 707c8e98da
18 changed files with 38 additions and 31 deletions

View File

@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LameXP", "LameXP.vcproj", "{00FE736A-8DB1-41B3-B915-4CD8DB09EF48}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LameXP", "LameXP_VS2008.vcproj", "{00FE736A-8DB1-41B3-B915-4CD8DB09EF48}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution

View File

@ -94,7 +94,7 @@
<Tool
Name="VCPostBuildEventTool"
Description="Copy plugin DLL&apos;s"
CommandLine="mkdir &quot;$(TargetDir)imageformats&quot;&#x0D;&#x0A;copy &quot;$(QTDIR)\plugins\imageformats\q???d4.dll&quot; &quot;$(TargetDir)imageformats\&quot;&#x0D;&#x0A;"
CommandLine="mkdir &quot;$(TargetDir)imageformats&quot;&#x0D;&#x0A;copy &quot;$(QTDIR)\plugins\imageformats\q???d4.dll&quot; &quot;$(TargetDir)imageformats\&quot;&#x0D;&#x0A;copy &quot;$(QTDIR)\plugins\imageformats\q????d4.dll&quot; &quot;$(TargetDir)imageformats\&quot;&#x0D;&#x0A;"
/>
</Configuration>
<Configuration
@ -1445,7 +1445,7 @@
<Tool
Name="VCCustomBuildTool"
Description="MOC &quot;$(SolutionDir)tmp\MOC_$(SafeInputName).cpp&quot;"
CommandLine="&quot;$(QTDIR)\bin\moc.exe&quot; -o &quot;$(SolutionDir)tmp\MOC_$(SafeInputName).cpp&quot; &quot;$(InputPath)&quot;"
CommandLine="&quot;$(QTDIR)\bin\moc.exe&quot; -o &quot;$(SolutionDir)tmp\MOC_$(SafeInputName).cpp&quot; &quot;$(InputPath)&quot;&#x0D;&#x0A;"
Outputs="&quot;$(SolutionDir)tmp\MOC_$(SafeInputName).cpp&quot;"
/>
</FileConfiguration>
@ -1455,7 +1455,7 @@
<Tool
Name="VCCustomBuildTool"
Description="MOC &quot;$(SolutionDir)tmp\MOC_$(SafeInputName).cpp&quot;"
CommandLine="&quot;$(QTDIR)\bin\moc.exe&quot; -o &quot;$(SolutionDir)tmp\MOC_$(SafeInputName).cpp&quot; &quot;$(InputPath)&quot;"
CommandLine="&quot;$(QTDIR)\bin\moc.exe&quot; -o &quot;$(SolutionDir)tmp\MOC_$(SafeInputName).cpp&quot; &quot;$(InputPath)&quot;&#x0D;&#x0A;"
Outputs="&quot;$(SolutionDir)tmp\MOC_$(SafeInputName).cpp&quot;"
/>
</FileConfiguration>
@ -1465,7 +1465,7 @@
<Tool
Name="VCCustomBuildTool"
Description="MOC &quot;$(SolutionDir)tmp\MOC_$(SafeInputName).cpp&quot;"
CommandLine="&quot;$(QTDIR)\bin\moc.exe&quot; -o &quot;$(SolutionDir)tmp\MOC_$(SafeInputName).cpp&quot; &quot;$(InputPath)&quot;"
CommandLine="&quot;$(QTDIR)\bin\moc.exe&quot; -o &quot;$(SolutionDir)tmp\MOC_$(SafeInputName).cpp&quot; &quot;$(InputPath)&quot;&#x0D;&#x0A;"
Outputs="&quot;$(SolutionDir)tmp\MOC_$(SafeInputName).cpp&quot;"
/>
</FileConfiguration>

View File

@ -40,7 +40,7 @@ REM ------------------------------------------
REM :: BUILD BINARIES ::
REM ------------------------------------------
call _lupdate.bat
call _build.bat "..\..\LameXP.sln" "%LAMEXP_CONFIG%"
call _build.bat "%PATH_VCPROJ%" "%LAMEXP_CONFIG%"
if not "%LAMEXP_ERROR%"=="0" (
call _error.bat "BUILD HAS FAILED"
GOTO:EOF

View File

@ -8,6 +8,7 @@ set "PATH_MKNSIS="
set "PATH_MSVC90="
set "PATH_QTMSVC="
set "PATH_GNUPG1="
set "PATH_VCPROJ="
REM ------------------------------------------
for /f "tokens=2,*" %%s in (buildenv.txt) do (
if "%%s"=="PATH_SEVENZ" set "PATH_SEVENZ=%%~t"
@ -17,14 +18,17 @@ for /f "tokens=2,*" %%s in (buildenv.txt) do (
if "%%s"=="PATH_MSVC90" set "PATH_MSVC90=%%~t"
if "%%s"=="PATH_QTMSVC" set "PATH_QTMSVC=%%~t"
if "%%s"=="PATH_GNUPG1" set "PATH_GNUPG1=%%~t"
if "%%s"=="PATH_VCPROJ" set "PATH_VCPROJ=%%~t"
)
REM ------------------------------------------
:: echo PATH_SEVENZ=%PATH_SEVENZ%
:: echo PATH_MPRESS=%PATH_MPRESS%
:: echo PATH_UPXBIN=%PATH_UPXBIN%
:: echo PATH_MKNSIS=%PATH_MKNSIS%
:: echo PATH_MSVC90=%PATH_MSVC90%
:: echo PATH_QTMSVC=%PATH_QTMSVC%
echo PATH_SEVENZ ="%PATH_SEVENZ%"
echo PATH_MPRESS ="%PATH_MPRESS%"
echo PATH_UPXBIN ="%PATH_UPXBIN%"
echo PATH_MKNSIS ="%PATH_MKNSIS%"
echo PATH_MSVC90 ="%PATH_MSVC90%"
echo PATH_QTMSVC ="%PATH_QTMSVC%"
echo PATH_GNUPG1 ="%PATH_GNUPG1%"
echo PATH_VCPROJ ="%PATH_VCPROJ%"
REM ------------------------------------------
set "LAMEXP_ERROR=1"
REM ------------------------------------------
@ -39,5 +43,7 @@ if not exist "%PATH_QTMSVC%\bin\uic.exe" GOTO:EOF
if not exist "%PATH_QTMSVC%\bin\moc.exe" GOTO:EOF
if not exist "%PATH_QTMSVC%\bin\rcc.exe" GOTO:EOF
if not exist "%PATH_GNUPG1%\gpg.exe" GOTO:EOF
if not exist "%PATH_GNUPG1%\gpg.exe" GOTO:EOF
if not exist "%PATH_VCPROJ%" GOTO:EOF
REM ------------------------------------------
set "LAMEXP_ERROR=0"

View File

@ -5,3 +5,4 @@
#define PATH_MSVC90 "D:\Microsoft Visual Studio 9.0"
#define PATH_QTMSVC "E:\Qt\4.7.2"
#define PATH_GNUPG1 "E:\GnuPG"
#define PATH_VCPROJ "..\..\LameXP_VS2008.sln"

View File

@ -7,10 +7,6 @@
<source>LameXP &amp;minus; Audio Encoder Front-end</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>DEMO VERSION</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Please visit %1 for news and updates!</source>
<translation type="unfinished"></translation>
@ -199,6 +195,10 @@
<source>n/a</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Note: This demo (pre-release) version of LameXP will expire at %1.</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>AudioFileModel</name>

View File

@ -196,8 +196,8 @@
<translation>Silk Icons &amp;minus; Über 700 Symbole im PNG Format</translation>
</message>
<message>
<source>DEMO VERSION</source>
<translation>DEMO VERSION</translation>
<source>Note: This demo (pre-release) version of LameXP will expire at %1.</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
@ -1538,7 +1538,7 @@
</message>
<message>
<source>Close</source>
<translation>Schießen</translation>
<translation>Schließen</translation>
</message>
<message>
<source>Encoding Files</source>

View File

@ -196,8 +196,8 @@
<translation>GNU Wget &amp;minus; Software para descarga de archivos mediante HTTP</translation>
</message>
<message>
<source>DEMO VERSION</source>
<translation>VERSIÓN DEMO</translation>
<source>Note: This demo (pre-release) version of LameXP will expire at %1.</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>

View File

@ -200,8 +200,8 @@
<translation>GNU Wget &amp;minus; Logiciel permettant de récupérer des fichiers à l&apos;aide du HTTP</translation>
</message>
<message>
<source>DEMO VERSION</source>
<translation>VERSION DE DEMO</translation>
<source>Note: This demo (pre-release) version of LameXP will expire at %1.</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>

View File

@ -196,8 +196,8 @@
<translation type="unfinished"></translation>
</message>
<message>
<source>DEMO VERSION</source>
<translation>VERSIONE DEMO</translation>
<source>Note: This demo (pre-release) version of LameXP will expire at %1.</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>

View File

@ -7,10 +7,6 @@
<source>LameXP &amp;minus; Audio Encoder Front-end</source>
<translation type="unfinished">LameXP &amp;minus; Audio Encoder Front-end</translation>
</message>
<message>
<source>DEMO VERSION</source>
<translation type="unfinished">ДЕМО ВЕРСИЯ</translation>
</message>
<message>
<source>Please visit %1 for news and updates!</source>
<translation type="unfinished">Пожайлуйста посетите %1 за новостями и обновлениями!</translation>
@ -199,6 +195,10 @@
<source>n/a</source>
<translation>н/д</translation>
</message>
<message>
<source>Note: This demo (pre-release) version of LameXP will expire at %1.</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>AudioFileModel</name>

View File

@ -196,8 +196,8 @@
<translation type="unfinished"></translation>
</message>
<message>
<source>DEMO VERSION</source>
<translation type="unfinished">ДЕМО ВЕРСІЯ</translation>
<source>Note: This demo (pre-release) version of LameXP will expire at %1.</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.