|
@@ -840,7 +840,8 @@ try
|
|
|
Genswf.add_swf_lib com file true
|
|
|
),"<file> : use the SWF library for type checking");
|
|
|
("-java-lib",Arg.String (fun file ->
|
|
|
- Genjava.add_java_lib com file
|
|
|
+ ()
|
|
|
+ (* Genjava.add_java_lib com file *)
|
|
|
),"<file> : add an external JAR or class directory library");
|
|
|
("-x", Arg.String (fun file ->
|
|
|
let neko_file = file ^ ".n" in
|
|
@@ -1053,10 +1054,10 @@ try
|
|
|
add_std "cpp";
|
|
|
"cpp"
|
|
|
| Cs ->
|
|
|
- Gencs.before_generate com;
|
|
|
+ (*Gencs.before_generate com;*)
|
|
|
add_std "cs"; "cs"
|
|
|
| Java ->
|
|
|
- Genjava.before_generate com;
|
|
|
+ (*Genjava.before_generate com;*)
|
|
|
add_std "java"; "java"
|
|
|
) in
|
|
|
(* if we are at the last compilation step, allow all packages accesses - in case of macros or opening another project file *)
|
|
@@ -1156,11 +1157,11 @@ try
|
|
|
Common.log com ("Generating Cpp in : " ^ com.file);
|
|
|
Gencpp.generate com;
|
|
|
| Cs ->
|
|
|
- Common.log com ("Generating Cs in : " ^ com.file);
|
|
|
- Gencs.generate com;
|
|
|
+ Common.log com ("Generating Cs in : " ^ com.file);
|
|
|
+ (* Gencs.generate com; *)
|
|
|
| Java ->
|
|
|
- Common.log com ("Generating Cs in : " ^ com.file);
|
|
|
- Genjava.generate com;
|
|
|
+ Common.log com ("Generating Cs in : " ^ com.file);
|
|
|
+ (* Genjava.generate com; *)
|
|
|
);
|
|
|
end;
|
|
|
Sys.catch_break false;
|