在Komodo中添加一个perl项目

时间:2016-07-22 08:14:22

标签: perl debugging batch-file komodo

我有一个旧的perl(5.12.3)项目,我想在komodo 3.0.1环境中调试(暂时我只有这个旧版本)。
该项目是一个多模块项目,有三个相似的结构:

Root
    core
        module1.pm
        ...
    external
        ext_module.pm
        ...
    caller.bat


项目起点是.bat文件。可以在komodo中添加和调试它吗?任何建议都表示赞赏。

set PERL_EXIST=0
perl -version >nul 2>&1 && ( set PERL_EXIST=1 )
if %PERL_EXIST% EQU 0 (
rem if perl doesn't exist give an error message and finish
echo.
echo ERROR:     Perl %PERL_DIR% is missing
set PERL_EXIST=
set MY_EXIT_CODE=1
goto EXIT
)
.
.
.
#perl starts here
use core::FirstModule;
use Cwd qw(getcwd chdir);
use Switch;

use core::FirstModule;
use Env qw(PATH VAR_1 PROJ_VERSION CORE_LOC );

# adapt the environment to point to main folder
$ENV{'CORE_LOC'}=~s/[\\\/]?[^\\\/]*$//;
if ($ENV{'CORE_LOC'}=~/[\\\/].*$/i) {
$ENV{'CORE_LOC'} =~s/[\\\/]?[^\\\/]*$//;
.
.
.
.
push @INC,$sourceDir;
$hFirstModule = core::FirstModule->new("object properties");
$hFirstModule->checkDir($dir_version);

0 个答案:

没有答案