|
@@ -198,9 +198,9 @@ let parse_args com =
|
|
("Target-specific",["--swf-lib"],["-swf-lib"],Arg.String (fun file ->
|
|
("Target-specific",["--swf-lib"],["-swf-lib"],Arg.String (fun file ->
|
|
add_native_lib file false;
|
|
add_native_lib file false;
|
|
),"<file>","add the SWF library to the compiled SWF");
|
|
),"<file>","add the SWF library to the compiled SWF");
|
|
- ("Target-specific",["--neko-lib"],[],Arg.String (fun file ->
|
|
|
|
- com.neko_libs <- file :: com.neko_libs
|
|
|
|
- ),"<file>","add the neko library");
|
|
|
|
|
|
+ ("Target-specific",["--neko-lib-path"],[],Arg.String (fun dir ->
|
|
|
|
+ com.neko_lib_paths <- dir :: com.neko_lib_paths
|
|
|
|
+ ),"<directory>","add the neko library path");
|
|
("Target-specific",["--swf-lib-extern"],["-swf-lib-extern"],Arg.String (fun file ->
|
|
("Target-specific",["--swf-lib-extern"],["-swf-lib-extern"],Arg.String (fun file ->
|
|
add_native_lib file true;
|
|
add_native_lib file true;
|
|
),"<file>","use the SWF library for type checking");
|
|
),"<file>","use the SWF library for type checking");
|