STYLE: fix docs
This commit is contained in:
parent
71934cedbd
commit
590377dcdd
|
@ -58,15 +58,15 @@ public:
|
||||||
"Set properties on a target. The syntax for the command is to "
|
"Set properties on a target. The syntax for the command is to "
|
||||||
"list all the files you want "
|
"list all the files you want "
|
||||||
"to change, and then provide the values you want to set next. "
|
"to change, and then provide the values you want to set next. "
|
||||||
"Properties that cmake knows about are PREFIX and SUFFIX for Unix "
|
"Properties that cmake knows about are PREFIX and SUFFIX for UNIX "
|
||||||
"systems and libraries. CMake also knows about LINK_FLAGS, which "
|
"systems and libraries. CMake also knows about LINK_FLAGS, which "
|
||||||
"can be used to add extra flags to the link step of a target. "
|
"can be used to add extra flags to the link step of a target. "
|
||||||
"DEFINE_SYMBOL is a symbol that is defined when compiling C or C++ "
|
"DEFINE_SYMBOL is a symbol that is defined when compiling C or C++ "
|
||||||
"sources. PRE_INSTALL_SCRIPT specifies CMake script that is run "
|
"sources. PRE_INSTALL_SCRIPT specifies a CMake script that is run "
|
||||||
"prior to installing the target. POST_INSTALL_SCRIPT specifies "
|
"prior to installing the target. POST_INSTALL_SCRIPT specifies "
|
||||||
"CMake script that is run after target is installed. "
|
"a CMake script that is run after target is installed. "
|
||||||
"For shared libraries VERSION and SOVERSION can be used to specify "
|
"For shared libraries VERSION and SOVERSION can be used to specify "
|
||||||
"the build version and api version respecitvely. When building or "
|
"the build version and api version respectively. When building or "
|
||||||
"installing appropriate symlinks are created if the platform "
|
"installing appropriate symlinks are created if the platform "
|
||||||
"supports symlinks and the linker supports so-names. "
|
"supports symlinks and the linker supports so-names. "
|
||||||
"If only one of both is specified the missing is assumed to have "
|
"If only one of both is specified the missing is assumed to have "
|
||||||
|
@ -75,11 +75,11 @@ public:
|
||||||
"When building or installing appropriate symlinks are created if "
|
"When building or installing appropriate symlinks are created if "
|
||||||
"the platform supports symlinks. "
|
"the platform supports symlinks. "
|
||||||
"The OUTPUT_NAME can be used to set an output name that is "
|
"The OUTPUT_NAME can be used to set an output name that is "
|
||||||
"used in place of the target name when creating executables."
|
"used in place of the target name when creating executables. "
|
||||||
"If not set here then it is set to target_EXPORTS by default "
|
"If not set here then it is set to target_EXPORTS by default "
|
||||||
"(with some substitutions if target is not a valid C identifier). "
|
"(with some substitutions if the target is not a valid C "
|
||||||
"You can use and prop value pair you want and extract it later with "
|
"identifier). You can use any prop value pair you want and "
|
||||||
"the GET_TARGET_PROPERTY command.";
|
"extract it later with the GET_TARGET_PROPERTY command.";
|
||||||
}
|
}
|
||||||
|
|
||||||
cmTypeMacro(cmSetTargetPropertiesCommand, cmCommand);
|
cmTypeMacro(cmSetTargetPropertiesCommand, cmCommand);
|
||||||
|
|
Loading…
Reference in New Issue