使用 createjs 库在 osx 终端中发布 运行 haxe 应用程序

Issues running haxe application in osx terminal with createjs library

当运行这个命令

haxe -main Main.hx

我遇到了这个错误

Main.hx:2: characters 7-33 : Type not found : createjs.easeljs.Container

Main.hx

package ;
import createjs.easeljs.Container;
import createjs.easeljs.Shape;
import createjs.easeljs.Stage;
import createjs.easeljs.Text;
import createjs.easeljs.Ticker;
import js.Browser;
import js.html.CanvasElement;
import js.html.Element;

我已经包含了 createjs 库的 javascript 文件,我还使用命令

安装了该库
haxe install createjs

您必须在编译期间包含带有 -lib 参数的 createjs haxelib:

haxe -main Main.hx -lib createjs