hxmake icon indicating copy to clipboard operation
hxmake copied to clipboard

Build automation for Haxe

Results 9 hxmake issues
Sort by recently updated
recently updated
newest added

`Content of make/EnabledTestModule.hx`: ```haxe package; import hxmake.cli.MakeLog; import hxmake.Task; class EnabledTestModule extends hxmake.Module { public function new() { task("task1", Task.empty().doLast(function(_):Void { MakeLog.warning("task1"); })); task("task1").enabled = false; } } ``` Run...

There is need for create a test plugin which create test tasks on configuration step based on provided module configurations. something like: ```haxe ... testConfiguration(function(config:TestConfigurationExt) { config.targets = [Target.Flash, Target.Js,...

Create examples repository to demonstrate current capabilities. Add examples running to hxmake continues-integration process.

Add Daemon-mode with Haxe compiler server (for recompiling make scripts faster)