是否可以通过命令行编译使用 Cairngorm 的 Flex 项目?

发布于 2024-09-30 11:14:48 字数 44 浏览 3 评论 0原文

有没有人尝试过通过命令行编译使用 Cairngorm 的 Flex 项目?

Has anyone tried to compile a flex project that uses Cairngorm with command line?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

烦人精 2024-10-07 11:14:48

确保 Cairngorm SWC 位于您的库路径中。例如,如果 SWC 位于相对于当前目录的名为“libs”的文件夹中,则应为 mxmlc 包含以下命令行参数:

--library-path+="libs"

注意其中的 +=。这意味着“libs”被添加到当前库路径中,该路径可能已经包含其他文件夹。如果路径中没有空格,引号是可选的。

Ensure that the Cairngorm SWC is in your library path. For instance, if you have the SWC in a folder called "libs" that is relative to the current directory, you should include the following command line argument for mxmlc:

--library-path+="libs"

Notice the += in there. This means that "libs" is added to the current library path, which may already include other folders. The quotes are optional if you don't have spaces in your path.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文