diff options
Diffstat (limited to 'man/man1/slice2swift.1')
-rw-r--r-- | man/man1/slice2swift.1 | 103 |
1 files changed, 103 insertions, 0 deletions
diff --git a/man/man1/slice2swift.1 b/man/man1/slice2swift.1 new file mode 100644 index 00000000000..8f19b6c5cf3 --- /dev/null +++ b/man/man1/slice2swift.1 @@ -0,0 +1,103 @@ +.TH slice2cs 1 + +.SH NAME + +slice2cs - The Slice to C# compiler. + +.SH SYNOPSIS + +slice2swift [options] [files] + +.SH DESCRIPTION + +slice2swift compiles Slice files to Swift. The macro __SLICE2SWIFT__ +is defined during this compilation. + +Full documentation for slice2swift is available online at: +.br +https://doc.zeroc.com/display/Ice37/slice2swift+Command-Line+Options + +.SH OPTIONS + +.TP +.BR \-h ", " \-\-help\fR +.br +Displays a help message. + +.TP +.BR \-v ", " \-\-version\fR +Displays the compiler version. + +.TP +.BR \-DNAME\fR +.br +Defines the preprocessor symbol NAME. + +.TP +.BR \-DNAME=DEF\fR +.br +Defines the preprocessor symbol NAME with the value DEF. + +.TP +.BR \-UNAME\fR +.br +Undefines the preprocessor symbol NAME. + +.TP +.BR \-IDIR\fR +.br +Add the directory DIR to the search path for #include directives. + +.TP +.BR \-E\fR +.br +Print the preprocessor output on stdout. + +.TP +.BR \-\-output-dir " " DIR\fR +.br +Place the generated files into directory DIR. + +.TP +.BR \-d ", " \-\-debug\fR +.br +Print debug information showing the operation of the Slice parser. + +.TP +.BR \-\-depend\fR +.br +Print dependency information to standard output by default, or to the +file specified by the --depend-file option. No code is generated when +this option is specified. + +.TP +.BR \-\-depend\-xml\fR +.br +Print dependency information in XML format to standard output by default, +or to the file specified by the --depend-file option. No code is generated +when this option is specified. + +.TP +.BR \-\-depend\-file " " FILE\fR +.br +Directs dependency information to the specified file. The output +format depends on whether --depend or --depend-xml is also specified. + +.TP +.BR \-\-validate\fR +.br +Checks the provided command-line options for correctness, and does not +generate any code. + +.SH SEE ALSO + +.BR slice2cpp (1), +.BR slice2cs (1), +.BR slice2java (1), +.BR slice2js (1), +.BR slice2matlab (1), +.BR slice2objc (1), +.BR slice2php (1), +.BR slice2py (1), +.BR slice2rb (1) + |