Rename Visual Studio 2008 solution/project file + adjust deployment script accordingly.
This commit is contained in:
parent
10d0e92089
commit
707c8e98da
@ -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
|
@ -94,7 +94,7 @@
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
Description="Copy plugin DLL's"
|
||||
CommandLine="mkdir "$(TargetDir)imageformats"
copy "$(QTDIR)\plugins\imageformats\q???d4.dll" "$(TargetDir)imageformats\"
"
|
||||
CommandLine="mkdir "$(TargetDir)imageformats"
copy "$(QTDIR)\plugins\imageformats\q???d4.dll" "$(TargetDir)imageformats\"
copy "$(QTDIR)\plugins\imageformats\q????d4.dll" "$(TargetDir)imageformats\"
"
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
@ -1445,7 +1445,7 @@
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Description="MOC "$(SolutionDir)tmp\MOC_$(SafeInputName).cpp""
|
||||
CommandLine=""$(QTDIR)\bin\moc.exe" -o "$(SolutionDir)tmp\MOC_$(SafeInputName).cpp" "$(InputPath)""
|
||||
CommandLine=""$(QTDIR)\bin\moc.exe" -o "$(SolutionDir)tmp\MOC_$(SafeInputName).cpp" "$(InputPath)"
"
|
||||
Outputs=""$(SolutionDir)tmp\MOC_$(SafeInputName).cpp""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
@ -1455,7 +1455,7 @@
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Description="MOC "$(SolutionDir)tmp\MOC_$(SafeInputName).cpp""
|
||||
CommandLine=""$(QTDIR)\bin\moc.exe" -o "$(SolutionDir)tmp\MOC_$(SafeInputName).cpp" "$(InputPath)""
|
||||
CommandLine=""$(QTDIR)\bin\moc.exe" -o "$(SolutionDir)tmp\MOC_$(SafeInputName).cpp" "$(InputPath)"
"
|
||||
Outputs=""$(SolutionDir)tmp\MOC_$(SafeInputName).cpp""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
@ -1465,7 +1465,7 @@
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Description="MOC "$(SolutionDir)tmp\MOC_$(SafeInputName).cpp""
|
||||
CommandLine=""$(QTDIR)\bin\moc.exe" -o "$(SolutionDir)tmp\MOC_$(SafeInputName).cpp" "$(InputPath)""
|
||||
CommandLine=""$(QTDIR)\bin\moc.exe" -o "$(SolutionDir)tmp\MOC_$(SafeInputName).cpp" "$(InputPath)"
"
|
||||
Outputs=""$(SolutionDir)tmp\MOC_$(SafeInputName).cpp""
|
||||
/>
|
||||
</FileConfiguration>
|
@ -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
|
||||
|
@ -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"
|
||||
|
@ -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"
|
||||
|
@ -7,10 +7,6 @@
|
||||
<source>LameXP &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>
|
||||
|
@ -196,8 +196,8 @@
|
||||
<translation>Silk Icons &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>
|
||||
|
@ -196,8 +196,8 @@
|
||||
<translation>GNU Wget &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>
|
||||
|
@ -200,8 +200,8 @@
|
||||
<translation>GNU Wget &minus; Logiciel permettant de récupérer des fichiers à l'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>
|
||||
|
@ -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>
|
||||
|
@ -7,10 +7,6 @@
|
||||
<source>LameXP &minus; Audio Encoder Front-end</source>
|
||||
<translation type="unfinished">LameXP &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>
|
||||
|
@ -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.
Loading…
Reference in New Issue
Block a user