Files
GDevelop/GDJS/scripts/CopyRuntimeToGD.bat
T
Florian 6b5c6c948d Improved MathematicalToolsExtension.
Added loading of TextObject extension from GD C++.
Tried to improve performance of Runtime.

git-svn-id: svn://localhost@1059 8062f311-0dae-4547-b526-b8ab9ac864a5
2013-06-23 19:56:32 +00:00

19 lines
1.1 KiB
Batchfile

::This script copies the runtimes files ( i.e: the javascript files located into the Runtime
::folder and in the Extensions folder ) to the Game Develop folder ( See below )
@echo off
set destDir="..\..\IDE\bin\dev\JsPlatform"
xcopy ..\Runtime\* %destDir%\Runtime\* /S /E /D /Y
xcopy ..\..\Extensions\*.js %destDir%\Runtime\Extensions\*.js /S /E /D /Y /EXCLUDE:FilesExcludedFromCopy
set destDir="..\..\IDE\bin\release\JsPlatform"
xcopy ..\Runtime\* %destDir%\Runtime\* /S /E /D /Y
xcopy ..\..\Extensions\*.js %destDir%\Runtime\Extensions\*.js /S /E /D /Y /EXCLUDE:FilesExcludedFromCopy
set destDir="..\..\IDE\bin\debug\JsPlatform"
xcopy ..\Runtime\* %destDir%\Runtime\* /S /E /D /Y
xcopy ..\..\Extensions\*.js %destDir%\Runtime\Extensions\*.js /S /E /D /Y /EXCLUDE:FilesExcludedFromCopy
::You may want to change this or add new similar lines to copy the runtime and the extensions
::to your Game Develop directory.
set destDir="C:\Users\Florian\AppData\Local\Temp\GDTemporaries\JSPreview"
xcopy ..\Runtime\*.js %destDir%\*.js /S /E /D /Y
xcopy ..\..\Extensions\*.js %destDir%\Extensions\*.js /S /E /D /Y /EXCLUDE:FilesExcludedFromCopy