mirror of https://github.com/axmolengine/axmol.git
Merge pull request #1791 from minggo/gles20
issue #1603:delete space when setting language
This commit is contained in:
commit
c5e62206e0
|
@ -132,7 +132,7 @@ move anttmp.properties ant.properties
|
|||
::Calculate the errorlevel and change build target.
|
||||
cd %_ROOT_%
|
||||
if "%_PROJECTNAME%"=="TestCpp" set /a TestCpp_Result=(result8+result10+result11+result12+result13) && set _PROJECTNAME=HelloCpp&& goto project
|
||||
if "%_PROJECTNAME%"=="HelloCpp" set /a HelloCpp_Result=(result8+result10+result11+result12+result13) && set _LANGUAGE_=Lua && set _PROJECTNAME=HelloLua&& goto project
|
||||
if "%_PROJECTNAME%"=="HelloCpp" set /a HelloCpp_Result=(result8+result10+result11+result12+result13) && set _LANGUAGE_=Lua&& set _PROJECTNAME=HelloLua&& goto project
|
||||
if "%_PROJECTNAME%"=="HelloLua" set /a HelloLua_Result=(result8+result10+result11+result12+result13)
|
||||
set /a Compile_Result=(TestCpp_Result+HelloCpp_Result+HelloLua_Result)
|
||||
if %Compile_Result% NEQ 0 goto error
|
||||
|
|
|
@ -149,7 +149,7 @@ move ant1.properties ant.properties
|
|||
::Calculate the errorlevel and change build target.
|
||||
cd %_ROOT_%
|
||||
if "%_PROJECTNAME%"=="TestCpp" set /a testresult1=(result8+result10+result11+result12+result13) && set _PROJECTNAME=HelloCpp&& goto project
|
||||
if "%_PROJECTNAME%"=="HelloCpp" set /a testresult2=(result8+result10+result11+result12+result13) && set _LANGUAGE_=Lua && set _PROJECTNAME=HelloLua&& goto project
|
||||
if "%_PROJECTNAME%"=="HelloCpp" set /a testresult2=(result8+result10+result11+result12+result13) && set _LANGUAGE_=Lua&& set _PROJECTNAME=HelloLua&& goto project
|
||||
if "%_PROJECTNAME%"=="HelloLua" set /a testresult3=(result8+result10+result11+result12+result13)
|
||||
set /a testresult=(testresult1+testresult2+testresult3)
|
||||
if %testresult% NEQ 0 goto error
|
||||
|
|
|
@ -88,7 +88,7 @@ move anttmp.properties ant.properties
|
|||
::Calculate the errorlevel and change build target.
|
||||
cd %_ROOT_%
|
||||
IF "%_PROJECTNAME%"=="TestCpp" set /a testresult1=(result14+result15) && set _PROJECTNAME=HelloCpp&& goto project
|
||||
IF "%_PROJECTNAME%"=="HelloCpp" set /a testresult2=(result14+result15) && set _LANGUAGE_=Lua && set _PROJECTNAME=HelloLua&& goto project
|
||||
IF "%_PROJECTNAME%"=="HelloCpp" set /a testresult2=(result14+result15) && set _LANGUAGE_=Lua&& set _PROJECTNAME=HelloLua&& goto project
|
||||
IF "%_PROJECTNAME%"=="HelloLua" set /a testresult3=(result14+result15)
|
||||
set /a testresult=(testresult1+testresult2+testresult3)
|
||||
IF %testresult% NEQ 0 goto error
|
||||
|
|
|
@ -97,7 +97,7 @@ move ant1.properties ant.properties
|
|||
::Calculate the errorlevel and change build target.
|
||||
cd %_ROOT_%
|
||||
IF "%_PROJECTNAME%"=="TestCpp" set /a testresult1=(result14+result15) && set _PROJECTNAME=HelloCpp&& goto project
|
||||
IF "%_PROJECTNAME%"=="HelloCpp" set /a testresult2=(result14+result15) && set _LANGUAGE_=Lua && set _PROJECTNAME=HelloLua&& goto project
|
||||
IF "%_PROJECTNAME%"=="HelloCpp" set /a testresult2=(result14+result15) && set _LANGUAGE_=Lua&& set _PROJECTNAME=HelloLua&& goto project
|
||||
IF "%_PROJECTNAME%"=="HelloLua" set /a testresult3=(result14+result15)
|
||||
set /a testresult=(testresult1+testresult2+testresult3)
|
||||
IF %testresult% NEQ 0 goto error
|
||||
|
|
Loading…
Reference in New Issue