mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-25 04:15:49 -04:00
6b5c6c948d
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
19 lines
1.1 KiB
Batchfile
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 |