JamPlus manual
|
For the given project TARGET
, assign the DEFINES
for the resource file compilation.
TARGET | The target to assign the DEFINES to. TARGET is optional if rule ActiveTarget TARGET has been specified. If TARGET is * , the defines are made available globally. |
RESOURCE_NAME | (optional) When present, the DEFINES are applied to the specified .rc file. |
DEFINES | The list of defines to apply. |
For the given project TARGET
, assign the FLAGS
for the resource file compilation.
TARGET | The target to assign the FLAGS to. TARGET is optional if rule ActiveTarget TARGET has been specified. If TARGET is * , the flags are made available globally. |
RESOURCE_NAME | (optional) When present, the FLAGS are applied to the specified .rc file. |
FLAGS | The list of flags to apply. |
For the given project TARGET
, assign the include directories specified in HDRS
to the resource file compilation.
TARGET | The target to assign the HDRS to. TARGET is optional if rule ActiveTarget TARGET has been specified. If TARGET is * , the include directories are made available globally. |
RESOURCE_NAME | (optional) When present, the HDRS are applied to the specified .rc file. |
HDRS | The list of include directories to apply. |
Compiles a resource .rc
file into a .res
file.
#defines made available by the rule C.RcDefines TARGET [ : RESOURCE_NAME ] : DEFINES rule are applied in the following order: PARENT
then *
.
Compilation flags made available by the rule C.RcFlags TARGET [ : RESOURCE_NAME ] : FLAGS rule are applied in the following order: PARENT
then *
.
Include directories made available by the rule C.RcIncludeDirectories TARGET [ : RESOURCE_NAME ] : HDRS are looked up in this order: ,
PARENT
, *
, , then
.
PARENT | The parent target to which the resource file belongs. This is needed to properly grist the resource filenames. |
SOURCES | The .rc file to be compiled. |
OPTIONS | (optional) The following options are available. |
quiet
- Typically not user specified. Used internally by the manifest generation script.
Application
or Library
rules.