diff options
author | Littleboy | 2012-07-11 01:19:55 -0400 |
---|---|---|
committer | Littleboy | 2012-07-14 12:22:10 -0400 |
commit | 4e832ff947dcb998d76a33ccf86682e75c237fe1 (patch) | |
tree | d4823c5e0f8d72f4034b1353e1a9c2363e0ca657 /devtools/create_project/scripts | |
parent | d86c0a44f8452261e7d1e330edf2449642b056fd (diff) | |
download | scummvm-rg350-4e832ff947dcb998d76a33ccf86682e75c237fe1.tar.gz scummvm-rg350-4e832ff947dcb998d76a33ccf86682e75c237fe1.tar.bz2 scummvm-rg350-4e832ff947dcb998d76a33ccf86682e75c237fe1.zip |
CREATE_PROJECT: Add freetype dll to copied files in postbuild script
Diffstat (limited to 'devtools/create_project/scripts')
-rw-r--r-- | devtools/create_project/scripts/postbuild.cmd | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/devtools/create_project/scripts/postbuild.cmd b/devtools/create_project/scripts/postbuild.cmd index dd52c0217c..d78119d058 100644 --- a/devtools/create_project/scripts/postbuild.cmd +++ b/devtools/create_project/scripts/postbuild.cmd @@ -24,6 +24,7 @@ echo Copying data files echo.
xcopy /F /Y "%~4/lib/%~3/SDL.dll" "%~2" 1>NUL 2>&1
+xcopy /F /Y "%~4/lib/%~3/freetype6.dll" "%~2" 1>NUL 2>&1 xcopy /F /Y "%~1/backends/vkeybd/packs/vkeybd_default.zip" "%~2" 1>NUL 2>&1
if "%~5"=="0" goto done
|