如何在Windows中配置Sublime Text 2 ANT构建脚本



我通常在Mac电脑上使用Sublime Text,效果很好。但是我试图在家里用我的Windows PC设置Sublime Text,并且在试图运行我的构建脚本时不断得到错误。

这是我的项目文件:

{
    "folders":
    [
        {
            "path": "my-folder"
        }
    ],
    "build_systems":
    [
        {
            "name": "Ant",
            "cmd": ["ant"],
            "working_dir": "${project_path}"
        }
    ]
}

我得到的错误是:

[Error 2] The system cannot find the file specified
[cmd:  [u'ant']]
[dir:  D:Users****Projects]
[path: C:Program Files (x86)NVIDIA CorporationPhysXCommon;C:Windowssystem32;C:Windows;C:WindowsSystem32Wbem;C:WindowsSystem32WindowsPowerShellv1.0]
[Finished]

似乎找不到ANT?但这不是和Sublime Text捆绑在一起的吗?

在命令行中输入" ant "。如果抛出错误,则ant不在PATH中。您需要安装它(http://ant.apache.org/manual/install.html),然后将它添加到您的PATH环境变量中。

我使用Sublime,但我不知道它是否默认打包了Ant。如果是,只需将二进制文件的位置添加到您的系统PATH中。

相关内容

  • 没有找到相关文章

最新更新