我安装了 Eclihx 插件,现在我正在尝试对其进行测试。Main.hx 的内容是
class Main {
static function main() {
trace("This is a test.");
}
}
Build.hxml 的内容是
-cp Source
# Uncomment the desirable target
# JavaScript target
-js Output/haxe Test.js
# SWF 9 target
-swf9 Output/haxe Test.swf
# ActionScript3 target
-as3 Output
# Neko target
-neko Output/haxe Test.n
# PHP target
-php Output
# C++ target
-cpp Output
# Uncomment and place your main class with package
-main Main
项目菜单中的构建选项显示为灰色。我该怎么办?