Compile Options |
The options shown here are valid for the "compile" command, you may need to alter these options to work around cabinet file limitations.
Please see the "options for commands" section of the manual for generic configuration details on how these can be altered:
<__$ExampleFile INDENT=0 FILE="Compile.MMH" Fragment="[Options4Doco]" STATE="REMEMBER">
Options that Vary by Processing Mode |
You should note that the following definitions override some of the above, the values vary based on the processing mode (development or production):
;---------------------------------------------------------------------------- ;--- Which compression to use? ---------------------------------------------- ;---------------------------------------------------------------------------- #define? COMPILE_COMPRESSION_TYPE_4_PRODUCTION <$COMPRESS_BEST> #define? COMPILE_COMPRESSION_TYPE_4_NOT_PRODUCTION <$COMPRESS_MEDIUM> #define? COMPILE_COMPRESS_4_PRODUCTION ON #define? COMPILE_COMPRESS_4_NOT_PRODUCTION ON #if ['<$MmMode>' = '<$MMMODE_PRODUCTION>'] ;--- Production mode ----------------------------------------------------- #define? COMPILE_CABDDF_CompressionType <$COMPILE_COMPRESSION_TYPE_4_PRODUCTION> #define? COMPILE_CABDDF_Compress <$COMPILE_COMPRESS_4_PRODUCTION> #elseif ;--- Other mode ---------------------------------------------------------- #define? COMPILE_CABDDF_CompressionType <$COMPILE_COMPRESSION_TYPE_4_NOT_PRODUCTION> #define? COMPILE_CABDDF_Compress <$COMPILE_COMPRESS_4_NOT_PRODUCTION> #endif