2002-12-21 19:14:47 +03:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
|
|
|
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
PURPOSE. See the above copyright notices for more information.
|
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#ifndef cmSetTargetsPropertiesCommand_h
|
|
|
|
#define cmSetTargetsPropertiesCommand_h
|
|
|
|
|
|
|
|
#include "cmCommand.h"
|
|
|
|
|
|
|
|
class cmSetTargetPropertiesCommand : public cmCommand
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual cmCommand* Clone()
|
|
|
|
{
|
|
|
|
return new cmSetTargetPropertiesCommand;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is called when the command is first encountered in
|
|
|
|
* the input file.
|
|
|
|
*/
|
|
|
|
virtual bool InitialPass(std::vector<std::string> const& args);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The name of the command as specified in CMakeList.txt.
|
|
|
|
*/
|
|
|
|
virtual const char* GetName() { return "SET_TARGET_PROPERTIES";}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Succinct documentation.
|
|
|
|
*/
|
|
|
|
virtual const char* GetTerseDocumentation()
|
|
|
|
{
|
2003-02-15 02:47:16 +03:00
|
|
|
return "Targets can have properties that affect how they are built.";
|
2002-12-21 19:14:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Longer documentation.
|
|
|
|
*/
|
|
|
|
virtual const char* GetFullDocumentation()
|
|
|
|
{
|
|
|
|
return
|
2003-02-15 02:47:16 +03:00
|
|
|
" SET_TARGET_PROPERTIES(target1 target2 ...\n"
|
|
|
|
" PROPERTIES prop1 value1\n"
|
|
|
|
" prop2 value2 ...)\n"
|
|
|
|
"Set properties on a target. The syntax for the command is to "
|
|
|
|
"list all the files you want "
|
|
|
|
"to change, and then provide the values you want to set next. "
|
2006-02-19 23:25:27 +03:00
|
|
|
"You can use any prop value pair you want and "
|
|
|
|
"extract it later with the GET_TARGET_PROPERTY command.\n"
|
|
|
|
"Properties that affect the name of a target's output file are "
|
|
|
|
"as follows. "
|
|
|
|
"The PREFIX and SUFFIX properties override the default target name "
|
|
|
|
"prefix (such as \"lib\") and suffix (such as \".so\"). "
|
|
|
|
"IMPORT_PREFIX and IMPORT_SUFFIX are the equivalent properties for "
|
|
|
|
"the import library corresponding to a DLL "
|
|
|
|
"(for SHARED library targets). "
|
|
|
|
"OUTPUT_NAME sets the real name of a target when it is built and "
|
|
|
|
"can be used to help create two targets of the same name even though "
|
2006-04-18 18:56:28 +04:00
|
|
|
"CMake requires unique logical target names. There is also a "
|
|
|
|
"<CONFIG>_OUTPUT_NAME that can set the output name on a "
|
|
|
|
"per-configuration basis. "
|
2006-03-02 06:45:13 +03:00
|
|
|
"<CONFIG>_POSTFIX sets a postfix for the real name of the target "
|
|
|
|
"when it is built under the configuration named by <CONFIG> "
|
|
|
|
"(in upper-case, such as \"DEBUG_POSTFIX\"). The value of "
|
|
|
|
"this property is initialized when the target is created to the "
|
|
|
|
"value of the variable CMAKE_<CONFIG>_POSTFIX (except for executable "
|
|
|
|
"targets because earlier CMake versions which did not use this "
|
|
|
|
"variable for executables)."
|
|
|
|
"\n"
|
2006-02-19 23:25:27 +03:00
|
|
|
"The LINK_FLAGS property can be used to add extra flags to the "
|
2006-05-12 21:53:21 +04:00
|
|
|
"link step of a target. LINK_FLAGS_<CONFIG> will add to the "
|
|
|
|
"configuration <CONFIG>, "
|
|
|
|
"for example, DEBUG, RELEASE, MINSIZEREL, RELWITHDEBINFO. "
|
2006-02-17 02:09:02 +03:00
|
|
|
"DEFINE_SYMBOL sets the name of the preprocessor symbol defined when "
|
|
|
|
"compiling sources in a shared library. "
|
2005-11-22 19:35:41 +03:00
|
|
|
"If not set here then it is set to target_EXPORTS by default "
|
|
|
|
"(with some substitutions if the target is not a valid C "
|
2006-04-04 22:53:03 +04:00
|
|
|
"identifier). This is useful for headers to know whether they are "
|
|
|
|
"being included from inside their library our outside to properly "
|
|
|
|
"setup dllexport/dllimport decorations. "
|
|
|
|
"The COMPILE_FLAGS property sets additional compiler flags used "
|
|
|
|
"to build sources within the target. It may also be used to pass "
|
|
|
|
"additional preprocessor definitions."
|
|
|
|
"\n"
|
2006-05-09 00:40:56 +04:00
|
|
|
"The LINKER_LANGUAGE property is used to change the tool "
|
|
|
|
"used to link an executable or shared library. The default is "
|
|
|
|
"set the language to match the files in the library. CXX and C "
|
|
|
|
"are common values for this property."
|
|
|
|
"\n"
|
2005-06-20 19:54:12 +04:00
|
|
|
"For shared libraries VERSION and SOVERSION can be used to specify "
|
2005-11-17 18:41:37 +03:00
|
|
|
"the build version and api version respectively. When building or "
|
2005-06-20 19:54:12 +04:00
|
|
|
"installing appropriate symlinks are created if the platform "
|
|
|
|
"supports symlinks and the linker supports so-names. "
|
|
|
|
"If only one of both is specified the missing is assumed to have "
|
|
|
|
"the same version number. "
|
2005-08-18 00:11:18 +04:00
|
|
|
"For executables VERSION can be used to specify the build version. "
|
|
|
|
"When building or installing appropriate symlinks are created if "
|
2006-10-17 02:17:14 +04:00
|
|
|
"the platform supports symlinks. "
|
|
|
|
"For shared libraries and executables on Windows the VERSION "
|
|
|
|
"attribute is parsed to extract a \"major.minor\" version number. "
|
|
|
|
"These numbers are used as the image version of the binary. "
|
|
|
|
"\n"
|
2006-02-16 23:19:00 +03:00
|
|
|
"There are a few properties used to specify RPATH rules. "
|
|
|
|
"INSTALL_RPATH is a semicolon-separated list specifying the rpath "
|
|
|
|
"to use in installed targets (for platforms that support it). "
|
2006-06-15 18:12:19 +04:00
|
|
|
"INSTALL_RPATH_USE_LINK_PATH is a boolean that if set to true will "
|
2006-06-16 22:19:37 +04:00
|
|
|
"append directories in the linker search path and outside the "
|
|
|
|
"project to the INSTALL_RPATH. "
|
2006-02-16 23:19:00 +03:00
|
|
|
"SKIP_BUILD_RPATH is a boolean specifying whether to skip automatic "
|
|
|
|
"generation of an rpath allowing the target to run from the "
|
|
|
|
"build tree. "
|
|
|
|
"BUILD_WITH_INSTALL_RPATH is a boolean specifying whether to link "
|
|
|
|
"the target in the build tree with the INSTALL_RPATH. This takes "
|
|
|
|
"precedence over SKIP_BUILD_RPATH and avoids the need for relinking "
|
2006-02-24 21:13:14 +03:00
|
|
|
"before installation. INSTALL_NAME_DIR is a string specifying the "
|
|
|
|
"directory portion of the \"install_name\" field of shared libraries "
|
|
|
|
"on Mac OSX to use in the installed targets. "
|
|
|
|
"When the target is created the values of "
|
2006-06-15 18:12:19 +04:00
|
|
|
"the variables CMAKE_INSTALL_RPATH, "
|
|
|
|
"CMAKE_INSTALL_RPATH_USE_LINK_PATH, CMAKE_SKIP_BUILD_RPATH, "
|
2006-02-24 21:13:14 +03:00
|
|
|
"CMAKE_BUILD_WITH_INSTALL_RPATH, and CMAKE_INSTALL_NAME_DIR "
|
|
|
|
"are used to initialize these properties.\n"
|
2005-11-22 19:35:41 +03:00
|
|
|
"PROJECT_LABEL can be used to change the name of "
|
2005-11-19 17:40:11 +03:00
|
|
|
"the target in an IDE like visual studio. VS_KEYWORD can be set "
|
|
|
|
"to change the visual studio keyword, for example QT integration "
|
2006-02-19 23:25:27 +03:00
|
|
|
"works better if this is set to Qt4VSv1.0.\n"
|
2006-08-03 17:42:48 +04:00
|
|
|
"When a library is built CMake by default generates code to remove "
|
|
|
|
"any existing library using all possible names. This is needed "
|
|
|
|
"to support libraries that switch between STATIC and SHARED by "
|
|
|
|
"a user option. However when using OUTPUT_NAME to build a static "
|
|
|
|
"and shared library of the same name using different logical target "
|
|
|
|
"names the two targets will remove each other's files. This can be "
|
|
|
|
"prevented by setting the CLEAN_DIRECT_OUTPUT property to 1.\n"
|
2006-02-19 23:25:27 +03:00
|
|
|
"The PRE_INSTALL_SCRIPT and POST_INSTALL_SCRIPT properties are the "
|
|
|
|
"old way to specify CMake scripts to run before and after "
|
|
|
|
"installing a target. They are used only when the old "
|
|
|
|
"INSTALL_TARGETS command is used to install the target. Use the "
|
|
|
|
"INSTALL command instead."
|
|
|
|
;
|
2002-12-21 19:14:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
cmTypeMacro(cmSetTargetPropertiesCommand, cmCommand);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|