final String haxelibPath = sdkData.getHaxelibPath();
if (haxelibPath == null || haxelibPath.isEmpty()) {
throw new ExecutionException(HaxeCommonBundle.message("no.haxelib.for.sdk", sdk.getName()));
}
commandLine.setExePath(haxelibPath);
commandLine.addParameter("run");
commandLine.addParameter("nme");
commandLine.addParameter(myRunInTest ? "test" : "run");
commandLine.addParameter(settings.getNmmlPath());
for (String flag : settings.getNmeTarget().getFlags()) {
commandLine.addParameter(flag);