@echo off rem ¸Å°³º¯¼ö- SUNEnginePath ½ÇÇàÆÄÀÏOutputPath if '%1'=='' goto errlog set engine_dll_path=%1\dll set engine_shader_path=%1\shader set bin_path=%2\ set bin_system=%2\system\ echo. echo ¢¹ ¿£Áø dll path: %engine_dll_path% echo ¢¹ ¿£Áø shader path: %engine_shader_path% echo ¢¹ bin path: %bin_path% echo. xcopy %engine_dll_path%\*.dll %bin_path% /c /f /r /y xcopy %engine_shader_path%\*.pso %bin_system% /c /f /r /y xcopy %engine_shader_path%\*.vso %bin_system% /c /f /r /y exit /b 0 :errlog echo. echo ¢¹ ¸Å°³º¯¼ö°¡ À߸ø µÇ¾ú½À´Ï´Ù. echo. pause