diff options
author | Jason McDonald <jason.mcdonald@nokia.com> | 2010-01-13 11:01:21 (GMT) |
---|---|---|
committer | Jason McDonald <jason.mcdonald@nokia.com> | 2010-01-13 11:01:21 (GMT) |
commit | e60277e8d5934ca9fff8abaf9493a33985ee34c4 (patch) | |
tree | 087f848d84038e85d456efd1aab49584062269bd /doc/src/development/rcc.qdoc | |
parent | abd6f1d678757e963909e3202b24e61fb0e865ba (diff) | |
parent | c01c7f59449aa4c1b2edf260ba8fb783ac180f95 (diff) | |
download | Qt-e60277e8d5934ca9fff8abaf9493a33985ee34c4.zip Qt-e60277e8d5934ca9fff8abaf9493a33985ee34c4.tar.gz Qt-e60277e8d5934ca9fff8abaf9493a33985ee34c4.tar.bz2 |
Merge branch '4.6.1' of git@scm.dev.nokia.troll.no:qt/qt-releases into 4.6.1
Diffstat (limited to 'doc/src/development/rcc.qdoc')
-rw-r--r-- | doc/src/development/rcc.qdoc | 49 |
1 files changed, 26 insertions, 23 deletions
diff --git a/doc/src/development/rcc.qdoc b/doc/src/development/rcc.qdoc index b479915..4c2e0c6 100644 --- a/doc/src/development/rcc.qdoc +++ b/doc/src/development/rcc.qdoc @@ -57,37 +57,40 @@ \table \header \o Option \o Argument \o Description - \row \o \c{-o} \o \o Writes output to file rather than - stdout. + \row \o \c{-o} \o \c{file} \o Write output to \c{file} rather than to stdout. - \row \o \c{-name} \o \c name \o Creates an external initialization - function with name. + \row \o \c{-name} \o \c{name} \o Create an external initialization + function with \c{name}. - \row \o \c{-threshold} \o \c level \o Specifies a threshold (in bytes) - to use when compressing files. If - the file is smaller than the - threshold, it will not be - compressed, independent of what - the compression level is. + \row \o \c{-threshold} \o \c{level} \o Specifies a threshold \c{level} (in + bytes) to use when deciding whether + to compress a file. If the file is + smaller than the threshold \c{level}, + it is not compressed. The default + threshold level is 70 bytes. - \row \o \c{-compress} \o \c level \o Compresses input files with the - given level. Level is an integer - from 1 to 9 - 1 being the fastest, - producing the least compression; - 9 being the slowest, producing - the most compression. + \row \o \c{-compress} \o \c{level} \o Compress input files to the given + compression \c{level}, which is an + integer in the range 1 to 9. Level 1 + does the least compression but is + fastest. Level 9 does the most + compression but is slowest. To turn + off compression, use \c{-no-compress}. + The default value for \c{level} is -1, + which means use zlib's default + compression level. - \row \o \c{-root} \o \c path \o Prefixes the resource access path - with root path. + \row \o \c{-root} \o \c{path} \o Prefix the resource access path with \c{path}. + The default is no prefix. - \row \o \c{-no-compress} \o \o Disables all compression. + \row \o \c{-no-compress} \o \o Disable compression. - \row \o \c{-binary} \o \o Outputs a binary file for use as - a dynamic resource. + \row \o \c{-binary} \o \o Output a binary file for use as a dynamic resource. - \row \o \c{-version} \o \o Displays version information. + \row \o \c{-version} \o \o Display version information. + + \row \o \c{-help} \o \o Display usage information. - \row \o \c{-help} \o \o Displays usage information. \endtable See also \l{The Qt Resource System} for more information about embedding |