[经验分享]在CodeIDE中配置外部工具,快速启动quickx player

在quickx项目的debug_win.bat中可以知道quickx player启动项目的参数,如下:

set DIR=%~dp0

echo %QUICK_V3_ROOT%

set BIN=%QUICK_V3_ROOT%quick\player\proj.win32\bin\player3.exe
if not exist %BIN% set BIN=%QUICK_V3_ROOT%quick\player\proj.win32\Release\player3.exe
if not exist %BIN% set BIN=%QUICK_V3_ROOT%quick\player\proj.win32\Debug\player3.exe

set ARG=-debugger-codeide -workdir %DIR%
set SIZE=-portrait

%BIN% %ARG% %SIZE%



```



对应的我们可以在CodeIDE中配置外部工具来实现类似功能

好流逼!!!!