cmDocumentVariables.cxx 63 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387
  1. #include "cmDocumentVariables.h"
  2. #include "cmake.h"
  3. void cmDocumentVariables::DefineVariables(cmake* cm)
  4. {
  5. // Subsection: variables defined by cmake, that give
  6. // information about the project, and cmake
  7. cm->DefineProperty
  8. ("CMAKE_AR", cmProperty::VARIABLE,
  9. "Name of archiving tool for static libraries.",
  10. "This specifies name of the program that creates archive "
  11. "or static libraries.",false,
  12. "Variables that Provide Information");
  13. cm->DefineProperty
  14. ("CMAKE_COMMAND", cmProperty::VARIABLE,
  15. "The full path to the cmake executable.",
  16. "This is the full path to the CMake executable cmake which is "
  17. "useful from custom commands that want to use the cmake -E "
  18. "option for portable system commands. "
  19. "(e.g. /usr/local/bin/cmake", false,
  20. "Variables that Provide Information");
  21. cm->DefineProperty
  22. ("CMAKE_BINARY_DIR", cmProperty::VARIABLE,
  23. "The path to the top level of the build tree.",
  24. "This is the full path to the top level of the current CMake "
  25. "build tree. For an in-source build, this would be the same "
  26. "as CMAKE_SOURCE_DIR. ", false,
  27. "Variables that Provide Information");
  28. cm->DefineProperty
  29. ("CMAKE_SOURCE_DIR", cmProperty::VARIABLE,
  30. "The path to the top level of the source tree.",
  31. "This is the full path to the top level of the current CMake "
  32. "source tree. For an in-source build, this would be the same "
  33. "as CMAKE_BINARY_DIR. ", false,
  34. "Variables that Provide Information");
  35. cm->DefineProperty
  36. ("CMAKE_CURRENT_BINARY_DIR", cmProperty::VARIABLE,
  37. "The path to the binary directory currently being processed.",
  38. "This the full path to the build directory that is currently "
  39. "being processed by cmake. Each directory added by "
  40. "add_subdirectory will create a binary directory in the build "
  41. "tree, and as it is being processed this variable will be set. "
  42. "For in-source builds this is the current source directory "
  43. "being processed.", false,
  44. "Variables that Provide Information");
  45. cm->DefineProperty
  46. ("CMAKE_CURRENT_SOURCE_DIR", cmProperty::VARIABLE,
  47. "The path to the source directory currently being processed.",
  48. "This the full path to the source directory that is currently "
  49. "being processed by cmake. ", false,
  50. "Variables that Provide Information");
  51. cm->DefineProperty
  52. ("CMAKE_CURRENT_LIST_FILE", cmProperty::VARIABLE,
  53. "Full path to the listfile currently being processed.",
  54. "As CMake processes the listfiles in your project this "
  55. "variable will always be set to the one currently being "
  56. "processed. "
  57. "The value has dynamic scope. "
  58. "When CMake starts processing commands in a source file "
  59. "it sets this variable to the location of the file. "
  60. "When CMake finishes processing commands from the file it "
  61. "restores the previous value. "
  62. "Therefore the value of the variable inside a macro or "
  63. "function is the file invoking the bottom-most entry on "
  64. "the call stack, not the file containing the macro or "
  65. "function definition."
  66. "\n"
  67. "See also CMAKE_PARENT_LIST_FILE.",false,
  68. "Variables that Provide Information");
  69. cm->DefineProperty
  70. ("CMAKE_CURRENT_LIST_LINE", cmProperty::VARIABLE,
  71. "The line number of the current file being processed.",
  72. "This is the line number of the file currently being"
  73. " processed by cmake.", false,
  74. "Variables that Provide Information");
  75. cm->DefineProperty
  76. ("CMAKE_BUILD_TOOL", cmProperty::VARIABLE,
  77. "Tool used for the actual build process.",
  78. "This variable is set to the program that will be"
  79. " needed to build the output of CMake. If the "
  80. "generator selected was Visual Studio 6, the "
  81. "CMAKE_MAKE_PROGRAM will be set to msdev, for "
  82. "Unix makefiles it will be set to make or gmake, "
  83. "and for Visual Studio 7 it set to devenv. For "
  84. "Nmake Makefiles the value is nmake. This can be "
  85. "useful for adding special flags and commands based"
  86. " on the final build environment. ", false,
  87. "Variables that Provide Information");
  88. cm->DefineProperty
  89. ("CMAKE_CROSSCOMPILING", cmProperty::VARIABLE,
  90. "Is CMake currently cross compiling.",
  91. "This variable will be set to true by CMake if CMake is cross "
  92. "compiling. Specifically if the build platform is different "
  93. "from the target platform.", false,
  94. "Variables that Provide Information");
  95. cm->DefineProperty
  96. ("CMAKE_CACHEFILE_DIR", cmProperty::VARIABLE,
  97. "The directory with the CMakeCache.txt file.",
  98. "This is the full path to the directory that has the "
  99. "CMakeCache.txt file in it. This is the same as "
  100. "CMAKE_BINARY_DIR.", false,
  101. "Variables that Provide Information");
  102. cm->DefineProperty
  103. ("CMAKE_CACHE_MAJOR_VERSION", cmProperty::VARIABLE,
  104. "Major version of CMake used to create the CMakeCache.txt file",
  105. "This is stores the major version of CMake used to "
  106. "write a CMake cache file. It is only different when "
  107. "a different version of CMake is run on a previously "
  108. "created cache file.", false,
  109. "Variables that Provide Information");
  110. cm->DefineProperty
  111. ("CMAKE_CACHE_MINOR_VERSION", cmProperty::VARIABLE,
  112. "Minor version of CMake used to create the CMakeCache.txt file",
  113. "This is stores the minor version of CMake used to "
  114. "write a CMake cache file. It is only different when "
  115. "a different version of CMake is run on a previously "
  116. "created cache file.", false,
  117. "Variables that Provide Information");
  118. cm->DefineProperty
  119. ("CMAKE_CACHE_PATCH_VERSION", cmProperty::VARIABLE,
  120. "Patch version of CMake used to create the CMakeCache.txt file",
  121. "This is stores the patch version of CMake used to "
  122. "write a CMake cache file. It is only different when "
  123. "a different version of CMake is run on a previously "
  124. "created cache file.", false,
  125. "Variables that Provide Information");
  126. cm->DefineProperty
  127. ("CMAKE_CFG_INTDIR", cmProperty::VARIABLE,
  128. "Build-time reference to per-configuration output subdirectory.",
  129. "For native build systems supporting multiple configurations "
  130. "in the build tree (such as Visual Studio and Xcode), "
  131. "the value is a reference to a build-time variable specifying "
  132. "the name of the per-configuration output subdirectory. "
  133. "On Makefile generators this evaluates to \".\" because there "
  134. "is only one configuration in a build tree. "
  135. "Example values:\n"
  136. " $(IntDir) = Visual Studio 6\n"
  137. " $(OutDir) = Visual Studio 7, 8, 9\n"
  138. " $(Configuration) = Visual Studio 10\n"
  139. " $(CONFIGURATION) = Xcode\n"
  140. " . = Make-based tools\n"
  141. "Since these values are evaluated by the native build system, this "
  142. "variable is suitable only for use in command lines that will be "
  143. "evaluated at build time. "
  144. "Example of intended usage:\n"
  145. " add_executable(mytool mytool.c)\n"
  146. " add_custom_command(\n"
  147. " OUTPUT out.txt\n"
  148. " COMMAND ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/mytool\n"
  149. " ${CMAKE_CURRENT_SOURCE_DIR}/in.txt out.txt\n"
  150. " DEPENDS mytool in.txt\n"
  151. " )\n"
  152. " add_custom_target(drive ALL DEPENDS out.txt)\n"
  153. "Note that CMAKE_CFG_INTDIR is no longer necessary for this purpose "
  154. "but has been left for compatibility with existing projects. "
  155. "Instead add_custom_command() recognizes executable target names in "
  156. "its COMMAND option, so "
  157. "\"${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/mytool\" can be "
  158. "replaced by just \"mytool\"."
  159. "\n"
  160. "This variable is read-only. Setting it is undefined behavior. "
  161. "In multi-configuration build systems the value of this variable "
  162. "is passed as the value of preprocessor symbol \"CMAKE_INTDIR\" to "
  163. "the compilation of all source files.",false,
  164. "Variables that Provide Information");
  165. cm->DefineProperty
  166. ("CMAKE_CTEST_COMMAND", cmProperty::VARIABLE,
  167. "Full path to ctest command installed with cmake.",
  168. "This is the full path to the CTest executable ctest "
  169. "which is useful from custom commands that want "
  170. " to use the cmake -E option for portable system "
  171. "commands.",false,
  172. "Variables that Provide Information");
  173. cm->DefineProperty
  174. ("CMAKE_DL_LIBS", cmProperty::VARIABLE,
  175. "Name of library containing dlopen and dlcose.",
  176. "The name of the library that has dlopen and "
  177. "dlclose in it, usually -ldl on most UNIX machines.",false,
  178. "Variables that Provide Information");
  179. cm->DefineProperty
  180. ("CMAKE_EDIT_COMMAND", cmProperty::VARIABLE,
  181. "Full path to cmake-gui or ccmake.",
  182. "This is the full path to the CMake executable "
  183. "that can graphically edit the cache. For example,"
  184. " cmake-gui, ccmake, or cmake -i.",false,
  185. "Variables that Provide Information");
  186. cm->DefineProperty
  187. ("CMAKE_GENERATOR", cmProperty::VARIABLE,
  188. "The generator used to build the project.",
  189. "The name of the generator that is being used to generate the "
  190. "build files. (e.g. \"Unix Makefiles\", "
  191. "\"Visual Studio 6\", etc.)",false,
  192. "Variables that Provide Information");
  193. cm->DefineProperty
  194. ("CMAKE_HOME_DIRECTORY", cmProperty::VARIABLE,
  195. "Path to top of source tree.",
  196. "This is the path to the top level of the source tree.",false,
  197. "Variables that Provide Information");
  198. cm->DefineProperty
  199. ("CMAKE_LINK_LIBRARY_SUFFIX", cmProperty::VARIABLE,
  200. "The suffix for libraries that you link to.",
  201. "The suffix to use for the end of a library, .lib on Windows.",false,
  202. "Variables that Provide Information");
  203. cm->DefineProperty
  204. ("CMAKE_EXECUTABLE_SUFFIX", cmProperty::VARIABLE,
  205. "The suffix for executables on this platform.",
  206. "The suffix to use for the end of an executable if any, "
  207. ".exe on Windows."
  208. "\n"
  209. "CMAKE_EXECUTABLE_SUFFIX_<LANG> overrides this for language <LANG>."
  210. ,false, "Variables that Provide Information");
  211. cm->DefineProperty
  212. ("CMAKE_MAJOR_VERSION", cmProperty::VARIABLE,
  213. "The Major version of cmake (i.e. the 2 in 2.X.X)",
  214. "This specifies the major version of the CMake executable"
  215. " being run.",false,
  216. "Variables that Provide Information");
  217. cm->DefineProperty
  218. ("CMAKE_MAKE_PROGRAM", cmProperty::VARIABLE,
  219. "See CMAKE_BUILD_TOOL.",
  220. "This variable is around for backwards compatibility, "
  221. "see CMAKE_BUILD_TOOL.",false,
  222. "Variables that Provide Information");
  223. cm->DefineProperty
  224. ("CMAKE_MINOR_VERSION", cmProperty::VARIABLE,
  225. "The Minor version of cmake (i.e. the 4 in X.4.X).",
  226. "This specifies the minor version of the CMake"
  227. " executable being run.",false,
  228. "Variables that Provide Information");
  229. cm->DefineProperty
  230. ("CMAKE_PATCH_VERSION", cmProperty::VARIABLE,
  231. "The patch version of cmake (i.e. the 3 in X.X.3).",
  232. "This specifies the patch version of the CMake"
  233. " executable being run.",false,
  234. "Variables that Provide Information");
  235. cm->DefineProperty
  236. ("CMAKE_VERSION", cmProperty::VARIABLE,
  237. "The full version of cmake in major.minor.patch format.",
  238. "This specifies the full version of the CMake executable being run. "
  239. "This variable is defined by versions 2.6.3 and higher. "
  240. "See variables CMAKE_MAJOR_VERSION, CMAKE_MINOR_VERSION, and "
  241. "CMAKE_PATCH_VERSION for individual version components.", false,
  242. "Variables that Provide Information");
  243. cm->DefineProperty
  244. ("CMAKE_PARENT_LIST_FILE", cmProperty::VARIABLE,
  245. "Full path to the parent listfile of the one currently being processed.",
  246. "As CMake processes the listfiles in your project this "
  247. "variable will always be set to the listfile that included "
  248. "or somehow invoked the one currently being "
  249. "processed. See also CMAKE_CURRENT_LIST_FILE.",false,
  250. "Variables that Provide Information");
  251. cm->DefineProperty
  252. ("CMAKE_PROJECT_NAME", cmProperty::VARIABLE,
  253. "The name of the current project.",
  254. "This specifies name of the current project from"
  255. " the closest inherited PROJECT command.",false,
  256. "Variables that Provide Information");
  257. cm->DefineProperty
  258. ("CMAKE_RANLIB", cmProperty::VARIABLE,
  259. "Name of randomizing tool for static libraries.",
  260. "This specifies name of the program that randomizes "
  261. "libraries on UNIX, not used on Windows, but may be present.",false,
  262. "Variables that Provide Information");
  263. cm->DefineProperty
  264. ("CMAKE_ROOT", cmProperty::VARIABLE,
  265. "Install directory for running cmake.",
  266. "This is the install root for the running CMake and"
  267. " the Modules directory can be found here. This is"
  268. " commonly used in this format: ${CMAKE_ROOT}/Modules",false,
  269. "Variables that Provide Information");
  270. cm->DefineProperty
  271. ("CMAKE_SIZEOF_VOID_P", cmProperty::VARIABLE,
  272. "Size of a void pointer.",
  273. "This is set to the size of a pointer on the machine, "
  274. "and is determined by a try compile. If a 64 bit size "
  275. "is found, then the library search path is modified to "
  276. "look for 64 bit libraries first.",false,
  277. "Variables that Provide Information");
  278. cm->DefineProperty
  279. ("CMAKE_SKIP_RPATH", cmProperty::VARIABLE,
  280. "If true, do not add run time path information.",
  281. "If this is set to TRUE, then the rpath information "
  282. "is not added to compiled executables. The default "
  283. "is to add rpath information if the platform supports it."
  284. "This allows for easy running from the build tree.",false,
  285. "Variables that Provide Information");
  286. cm->DefineProperty
  287. ("CMAKE_SOURCE_DIR", cmProperty::VARIABLE,
  288. "Source directory for project.",
  289. "This is the top level source directory for the project. "
  290. "It corresponds to the source directory given to "
  291. "cmake-gui or ccmake.",false,
  292. "Variables that Provide Information");
  293. cm->DefineProperty
  294. ("CMAKE_STANDARD_LIBRARIES", cmProperty::VARIABLE,
  295. "Libraries linked into every executable and shared library.",
  296. "This is the list of libraries that are linked "
  297. "into all executables and libraries.",false,
  298. "Variables that Provide Information");
  299. cm->DefineProperty
  300. ("CMAKE_USING_VC_FREE_TOOLS", cmProperty::VARIABLE,
  301. "True if free visual studio tools being used.",
  302. "This is set to true if the compiler is Visual "
  303. "Studio free tools.",false,
  304. "Variables that Provide Information");
  305. cm->DefineProperty
  306. ("CMAKE_VERBOSE_MAKEFILE", cmProperty::VARIABLE,
  307. "Create verbose makefiles if on.",
  308. "This variable defaults to false. You can set "
  309. "this variable to true to make CMake produce verbose "
  310. "makefiles that show each command line as it is used.",false,
  311. "Variables that Provide Information");
  312. cm->DefineProperty
  313. ("PROJECT_BINARY_DIR", cmProperty::VARIABLE,
  314. "Full path to build directory for project.",
  315. "This is the binary directory of the most recent "
  316. "PROJECT command.",false,"Variables that Provide Information");
  317. cm->DefineProperty
  318. ("PROJECT_NAME", cmProperty::VARIABLE,
  319. "Name of the project given to the project command.",
  320. "This is the name given to the most "
  321. "recent PROJECT command. ",false,
  322. "Variables that Provide Information");
  323. cm->DefineProperty
  324. ("PROJECT_SOURCE_DIR", cmProperty::VARIABLE,
  325. "Top level source directory for the current project.",
  326. "This is the source directory of the most recent "
  327. "PROJECT command.",false,
  328. "Variables that Provide Information");
  329. cm->DefineProperty
  330. ("[Project name]_BINARY_DIR", cmProperty::VARIABLE,
  331. "Top level binary directory for the named project.",
  332. "A variable is created with the name used in the PROJECT "
  333. "command, and is the binary directory for the project. "
  334. " This can be useful when SUBDIR is used to connect "
  335. "several projects.",false,
  336. "Variables that Provide Information");
  337. cm->DefineProperty
  338. ("[Project name]_SOURCE_DIR", cmProperty::VARIABLE,
  339. "Top level source directory for the named project.",
  340. "A variable is created with the name used in the PROJECT "
  341. "command, and is the source directory for the project."
  342. " This can be useful when add_subdirectory "
  343. "is used to connect several projects.",false,
  344. "Variables that Provide Information");
  345. cm->DefineProperty
  346. ("CMAKE_IMPORT_LIBRARY_PREFIX", cmProperty::VARIABLE,
  347. "The prefix for import libraries that you link to.",
  348. "The prefix to use for the name of an import library if used "
  349. "on this platform."
  350. "\n"
  351. "CMAKE_IMPORT_LIBRARY_PREFIX_<LANG> overrides this for language <LANG>."
  352. ,false, "Variables that Provide Information");
  353. cm->DefineProperty
  354. ("CMAKE_IMPORT_LIBRARY_SUFFIX", cmProperty::VARIABLE,
  355. "The suffix for import libraries that you link to.",
  356. "The suffix to use for the end of an import library if used "
  357. "on this platform."
  358. "\n"
  359. "CMAKE_IMPORT_LIBRARY_SUFFIX_<LANG> overrides this for language <LANG>."
  360. ,false, "Variables that Provide Information");
  361. cm->DefineProperty
  362. ("CMAKE_SHARED_LIBRARY_PREFIX", cmProperty::VARIABLE,
  363. "The prefix for shared libraries that you link to.",
  364. "The prefix to use for the name of a shared library, lib on UNIX."
  365. "\n"
  366. "CMAKE_SHARED_LIBRARY_PREFIX_<LANG> overrides this for language <LANG>."
  367. ,false, "Variables that Provide Information");
  368. cm->DefineProperty
  369. ("CMAKE_SHARED_LIBRARY_SUFFIX", cmProperty::VARIABLE,
  370. "The suffix for shared libraries that you link to.",
  371. "The suffix to use for the end of a shared library, .dll on Windows."
  372. "\n"
  373. "CMAKE_SHARED_LIBRARY_SUFFIX_<LANG> overrides this for language <LANG>."
  374. ,false, "Variables that Provide Information");
  375. cm->DefineProperty
  376. ("CMAKE_SHARED_MODULE_PREFIX", cmProperty::VARIABLE,
  377. "The prefix for loadable modules that you link to.",
  378. "The prefix to use for the name of a loadable module on this platform."
  379. "\n"
  380. "CMAKE_SHARED_MODULE_PREFIX_<LANG> overrides this for language <LANG>."
  381. ,false, "Variables that Provide Information");
  382. cm->DefineProperty
  383. ("CMAKE_SHARED_MODULE_SUFFIX", cmProperty::VARIABLE,
  384. "The suffix for shared libraries that you link to.",
  385. "The suffix to use for the end of a loadable module on this platform"
  386. "\n"
  387. "CMAKE_SHARED_MODULE_SUFFIX_<LANG> overrides this for language <LANG>."
  388. ,false, "Variables that Provide Information");
  389. cm->DefineProperty
  390. ("CMAKE_STATIC_LIBRARY_PREFIX", cmProperty::VARIABLE,
  391. "The prefix for static libraries that you link to.",
  392. "The prefix to use for the name of a static library, lib on UNIX."
  393. "\n"
  394. "CMAKE_STATIC_LIBRARY_PREFIX_<LANG> overrides this for language <LANG>."
  395. ,false, "Variables that Provide Information");
  396. cm->DefineProperty
  397. ("CMAKE_STATIC_LIBRARY_SUFFIX", cmProperty::VARIABLE,
  398. "The suffix for static libraries that you link to.",
  399. "The suffix to use for the end of a static library, .lib on Windows."
  400. "\n"
  401. "CMAKE_STATIC_LIBRARY_SUFFIX_<LANG> overrides this for language <LANG>."
  402. ,false, "Variables that Provide Information");
  403. cm->DefineProperty
  404. ("CMAKE_EXTRA_SHARED_LIBRARY_SUFFIXES", cmProperty::VARIABLE,
  405. "Additional suffixes for shared libraries.",
  406. "Extensions for shared libraries other than that specified by "
  407. "CMAKE_SHARED_LIBRARY_SUFFIX, if any. "
  408. "CMake uses this to recognize external shared library files during "
  409. "analysis of libraries linked by a target.",
  410. false,
  411. "Variables that Provide Information");
  412. // Variables defined by cmake, that change the behavior
  413. // of cmake
  414. cm->DefineProperty
  415. ("CMAKE_FIND_LIBRARY_PREFIXES", cmProperty::VARIABLE,
  416. "Prefixes to prepend when looking for libraries.",
  417. "This specifies what prefixes to add to library names when "
  418. "the find_library command looks for libraries. On UNIX "
  419. "systems this is typically lib, meaning that when trying "
  420. "to find the foo library it will look for libfoo.",
  421. false,
  422. "Variables That Change Behavior");
  423. cm->DefineProperty
  424. ("CMAKE_FIND_LIBRARY_SUFFIXES", cmProperty::VARIABLE,
  425. "Suffixes to append when looking for libraries.",
  426. "This specifies what suffixes to add to library names when "
  427. "the find_library command looks for libraries. On Windows "
  428. "systems this is typically .lib and .dll, meaning that when trying "
  429. "to find the foo library it will look for foo.dll etc.",
  430. false,
  431. "Variables That Change Behavior");
  432. cm->DefineProperty
  433. ("CMAKE_CONFIGURATION_TYPES", cmProperty::VARIABLE,
  434. "Specifies the available build types.",
  435. "This specifies what build types will be available such as "
  436. "Debug, Release, RelWithDebInfo etc. This has reasonable defaults "
  437. "on most platforms. But can be extended to provide other "
  438. "build types. See also CMAKE_BUILD_TYPE.",
  439. false,
  440. "Variables That Change Behavior");
  441. cm->DefineProperty
  442. ("CMAKE_BUILD_TYPE", cmProperty::VARIABLE,
  443. "Specifies the build type for make based generators.",
  444. "This specifies what build type will be built in this tree. "
  445. " Possible values are empty, Debug, Release, RelWithDebInfo"
  446. " and MinSizeRel. This variable is only supported for "
  447. "make based generators. If this variable is supported, "
  448. "then CMake will also provide initial values for the "
  449. "variables with the name "
  450. " CMAKE_C_FLAGS_[Debug|Release|RelWithDebInfo|MinSizeRel]."
  451. " For example, if CMAKE_BUILD_TYPE is Debug, then "
  452. "CMAKE_C_FLAGS_DEBUG will be added to the CMAKE_C_FLAGS.",false,
  453. "Variables That Change Behavior");
  454. cm->DefineProperty
  455. ("CMAKE_BACKWARDS_COMPATIBILITY", cmProperty::VARIABLE,
  456. "Version of cmake required to build project",
  457. "From the point of view of backwards compatibility, this "
  458. "specifies what version of CMake should be supported. By "
  459. "default this value is the version number of CMake that "
  460. "you are running. You can set this to an older version of"
  461. " CMake to support deprecated commands of CMake in projects"
  462. " that were written to use older versions of CMake. This "
  463. "can be set by the user or set at the beginning of a "
  464. "CMakeLists file.",false,
  465. "Variables That Change Behavior");
  466. cm->DefineProperty
  467. ("CMAKE_INSTALL_PREFIX", cmProperty::VARIABLE,
  468. "Install directory used by install.",
  469. "If \"make install\" is invoked or INSTALL is built"
  470. ", this directory is pre-pended onto all install "
  471. "directories. This variable defaults to /usr/local"
  472. " on UNIX and c:/Program Files on Windows.",false,
  473. "Variables That Change Behavior");
  474. cm->DefineProperty
  475. ("CMAKE_SKIP_INSTALL_ALL_DEPENDENCY", cmProperty::VARIABLE,
  476. "Don't make the install target depend on the all target.",
  477. "By default, the \"install\" target depends on the \"all\" target. "
  478. "This has the effect, that when \"make install\" is invoked or INSTALL "
  479. "is built, first the \"all\" target is built, then the installation "
  480. "starts. "
  481. "If CMAKE_SKIP_INSTALL_ALL_DEPENDENCY is set to TRUE, this dependency "
  482. "is not created, so the installation process will start immediately, "
  483. "independent from whether the project has been completely built or not."
  484. ,false,
  485. "Variables That Change Behavior");
  486. cm->DefineProperty
  487. ("CMAKE_MODULE_PATH", cmProperty::VARIABLE,
  488. "Path to look for cmake modules to load.",
  489. "Specifies a path to override the default search path for "
  490. "CMake modules. For example include commands will look "
  491. "in this path first for modules to include.",
  492. false,
  493. "Variables That Change Behavior");
  494. cm->DefineProperty
  495. ("CMAKE_PREFIX_PATH", cmProperty::VARIABLE,
  496. "Path used for searching by FIND_XXX(), with appropriate suffixes added.",
  497. "Specifies a path which will be used by the FIND_XXX() commands. It "
  498. "contains the \"base\" directories, the FIND_XXX() commands append "
  499. "appropriate subdirectories to the base directories. So FIND_PROGRAM() "
  500. "adds /bin to each of the directories in the path, FIND_LIBRARY() "
  501. "appends /lib to each of the directories, and FIND_PATH() and "
  502. "FIND_FILE() append /include . By default it is empty, it is intended "
  503. "to be set by the project. See also CMAKE_SYSTEM_PREFIX_PATH, "
  504. "CMAKE_INCLUDE_PATH, CMAKE_LIBRARY_PATH, CMAKE_PROGRAM_PATH.", false,
  505. "Variables That Change Behavior");
  506. cm->DefineProperty
  507. ("CMAKE_INCLUDE_PATH", cmProperty::VARIABLE,
  508. "Path used for searching by FIND_FILE() and FIND_PATH().",
  509. "Specifies a path which will be used both by FIND_FILE() and "
  510. "FIND_PATH(). Both commands will check each of the contained directories "
  511. "for the existence of the file which is currently searched. By default "
  512. "it is empty, it is intended to be set by the project. See also "
  513. "CMAKE_SYSTEM_INCLUDE_PATH, CMAKE_PREFIX_PATH.", false,
  514. "Variables That Change Behavior");
  515. cm->DefineProperty
  516. ("CMAKE_LIBRARY_PATH", cmProperty::VARIABLE,
  517. "Path used for searching by FIND_LIBRARY().",
  518. "Specifies a path which will be used by FIND_LIBRARY(). FIND_LIBRARY() "
  519. "will check each of the contained directories for the existence of the "
  520. "library which is currently searched. By default it is empty, it is "
  521. "intended to be set by the project. See also CMAKE_SYSTEM_LIBRARY_PATH, "
  522. "CMAKE_PREFIX_PATH.", false,
  523. "Variables That Change Behavior");
  524. cm->DefineProperty
  525. ("CMAKE_PROGRAM_PATH", cmProperty::VARIABLE,
  526. "Path used for searching by FIND_PROGRAM().",
  527. "Specifies a path which will be used by FIND_PROGRAM(). FIND_PROGRAM() "
  528. "will check each of the contained directories for the existence of the "
  529. "program which is currently searched. By default it is empty, it is "
  530. "intended to be set by the project. See also CMAKE_SYSTEM_PROGRAM_PATH, "
  531. " CMAKE_PREFIX_PATH.", false,
  532. "Variables That Change Behavior");
  533. cm->DefineProperty
  534. ("CMAKE_SYSTEM_PREFIX_PATH", cmProperty::VARIABLE,
  535. "Path used for searching by FIND_XXX(), with appropriate suffixes added.",
  536. "Specifies a path which will be used by the FIND_XXX() commands. It "
  537. "contains the \"base\" directories, the FIND_XXX() commands append "
  538. "appropriate subdirectories to the base directories. So FIND_PROGRAM() "
  539. "adds /bin to each of the directories in the path, FIND_LIBRARY() "
  540. "appends /lib to each of the directories, and FIND_PATH() and "
  541. "FIND_FILE() append /include . By default this contains the standard "
  542. "directories for the current system. It is NOT intended "
  543. "to be modified by the project, use CMAKE_PREFIX_PATH for this. See also "
  544. "CMAKE_SYSTEM_INCLUDE_PATH, CMAKE_SYSTEM_LIBRARY_PATH, "
  545. "CMAKE_SYSTEM_PROGRAM_PATH.", false,
  546. "Variables That Change Behavior");
  547. cm->DefineProperty
  548. ("CMAKE_SYSTEM_INCLUDE_PATH", cmProperty::VARIABLE,
  549. "Path used for searching by FIND_FILE() and FIND_PATH().",
  550. "Specifies a path which will be used both by FIND_FILE() and "
  551. "FIND_PATH(). Both commands will check each of the contained directories "
  552. "for the existence of the file which is currently searched. By default "
  553. "it contains the standard directories for the current system. It is "
  554. "NOT intended to be modified by the project, use CMAKE_INCLUDE_PATH "
  555. "for this. See also CMAKE_SYSTEM_PREFIX_PATH.", false,
  556. "Variables That Change Behavior");
  557. cm->DefineProperty
  558. ("CMAKE_SYSTEM_LIBRARY_PATH", cmProperty::VARIABLE,
  559. "Path used for searching by FIND_LIBRARY().",
  560. "Specifies a path which will be used by FIND_LIBRARY(). FIND_LIBRARY() "
  561. "will check each of the contained directories for the existence of the "
  562. "library which is currently searched. By default it contains the "
  563. "standard directories for the current system. It is NOT intended to be "
  564. "modified by the project, use CMAKE_SYSTEM_LIBRARY_PATH for this. See "
  565. "also CMAKE_SYSTEM_PREFIX_PATH.", false,
  566. "Variables That Change Behavior");
  567. cm->DefineProperty
  568. ("CMAKE_SYSTEM_PROGRAM_PATH", cmProperty::VARIABLE,
  569. "Path used for searching by FIND_PROGRAM().",
  570. "Specifies a path which will be used by FIND_PROGRAM(). FIND_PROGRAM() "
  571. "will check each of the contained directories for the existence of the "
  572. "program which is currently searched. By default it contains the "
  573. "standard directories for the current system. It is NOT intended to be "
  574. "modified by the project, use CMAKE_PROGRAM_PATH for this. See also "
  575. "CMAKE_SYSTEM_PREFIX_PATH.", false,
  576. "Variables That Change Behavior");
  577. cm->DefineProperty
  578. ("CMAKE_USER_MAKE_RULES_OVERRIDE", cmProperty::VARIABLE,
  579. "Specify a file that can change the build rule variables.",
  580. "If this variable is set, it should to point to a "
  581. "CMakeLists.txt file that will be read in by CMake "
  582. "after all the system settings have been set, but "
  583. "before they have been used. This would allow you "
  584. "to override any variables that need to be changed "
  585. "for some special project. ",false,
  586. "Variables That Change Behavior");
  587. cm->DefineProperty
  588. ("BUILD_SHARED_LIBS", cmProperty::VARIABLE,
  589. "Global flag to cause add_library to create shared libraries if on.",
  590. "If present and true, this will cause all libraries to be "
  591. "built shared unless the library was explicitly added as a "
  592. "static library. This variable is often added to projects "
  593. "as an OPTION so that each user of a project can decide if "
  594. "they want to build the project using shared or static "
  595. "libraries.",false,
  596. "Variables That Change Behavior");
  597. cm->DefineProperty
  598. ("CMAKE_NOT_USING_CONFIG_FLAGS", cmProperty::VARIABLE,
  599. "Skip _BUILD_TYPE flags if true.",
  600. "This is an internal flag used by the generators in "
  601. "CMake to tell CMake to skip the _BUILD_TYPE flags.",false,
  602. "Variables That Change Behavior");
  603. cm->DefineProperty
  604. ("CMAKE_MFC_FLAG", cmProperty::VARIABLE,
  605. "Tell cmake to use MFC for an executable or dll.",
  606. "This can be set in a CMakeLists.txt file and will "
  607. "enable MFC in the application. It should be set "
  608. "to 1 for static the static MFC library, and 2 for "
  609. "the shared MFC library. This is used in visual "
  610. "studio 6 and 7 project files. The CMakeSetup "
  611. "dialog used MFC and the CMakeLists.txt looks like this:\n"
  612. "add_definitions(-D_AFXDLL)\n"
  613. "set(CMAKE_MFC_FLAG 2)\n"
  614. "add_executable(CMakeSetup WIN32 ${SRCS})\n",false,
  615. "Variables That Change Behavior");
  616. cm->DefineProperty
  617. ("CMAKE_COLOR_MAKEFILE", cmProperty::VARIABLE,
  618. "Enables color output when using the Makefile generator.",
  619. "When enabled, the generated Makefiles will produce colored output. "
  620. "Default is ON.",false,
  621. "Variables That Change Behavior");
  622. // Variables defined by CMake that describe the system
  623. cm->DefineProperty
  624. ("CMAKE_SYSTEM", cmProperty::VARIABLE,
  625. "Name of system cmake is compiling for.",
  626. "This variable is the composite of CMAKE_SYSTEM_NAME "
  627. "and CMAKE_SYSTEM_VERSION, like this "
  628. "${CMAKE_SYSTEM_NAME}-${CMAKE_SYSTEM_VERSION}. "
  629. "If CMAKE_SYSTEM_VERSION is not set, then "
  630. "CMAKE_SYSTEM is the same as CMAKE_SYSTEM_NAME.",false,
  631. "Variables That Describe the System");
  632. cm->DefineProperty
  633. ("CMAKE_SYSTEM_NAME", cmProperty::VARIABLE,
  634. "Name of the OS CMake is building for.",
  635. "This is the name of the operating system on "
  636. "which CMake is targeting. On systems that "
  637. "have the uname command, this variable is set "
  638. "to the output of uname -s. Linux, Windows, "
  639. " and Darwin for Mac OSX are the values found "
  640. " on the big three operating systems." ,false,
  641. "Variables That Describe the System");
  642. cm->DefineProperty
  643. ("CMAKE_SYSTEM_PROCESSOR", cmProperty::VARIABLE,
  644. "The name of the CPU CMake is building for.",
  645. "On systems that support uname, this variable is "
  646. "set to the output of uname -p, on windows it is "
  647. "set to the value of the environment variable "
  648. "PROCESSOR_ARCHITECTURE",false,
  649. "Variables That Describe the System");
  650. cm->DefineProperty
  651. ("CMAKE_SYSTEM_VERSION", cmProperty::VARIABLE,
  652. "OS version CMake is building for.",
  653. "A numeric version string for the system, on "
  654. "systems that support uname, this variable is "
  655. "set to the output of uname -r. On other "
  656. "systems this is set to major-minor version numbers.",false,
  657. "Variables That Describe the System");
  658. cm->DefineProperty
  659. ("CMAKE_HOST_SYSTEM", cmProperty::VARIABLE,
  660. "Name of system cmake is being run on.",
  661. "The same as CMAKE_SYSTEM but for the host system instead "
  662. "of the target system when cross compiling.",false,
  663. "Variables That Describe the System");
  664. cm->DefineProperty
  665. ("CMAKE_HOST_SYSTEM_NAME", cmProperty::VARIABLE,
  666. "Name of the OS CMake is running on.",
  667. "The same as CMAKE_SYSTEM_NAME but for the host system instead "
  668. "of the target system when cross compiling.",false,
  669. "Variables That Describe the System");
  670. cm->DefineProperty
  671. ("CMAKE_HOST_SYSTEM_PROCESSOR", cmProperty::VARIABLE,
  672. "The name of the CPU CMake is running on.",
  673. "The same as CMAKE_SYSTEM_PROCESSOR but for the host system instead "
  674. "of the target system when cross compiling.",false,
  675. "Variables That Describe the System");
  676. cm->DefineProperty
  677. ("CMAKE_HOST_SYSTEM_VERSION", cmProperty::VARIABLE,
  678. "OS version CMake is running on.",
  679. "The same as CMAKE_SYSTEM_VERSION but for the host system instead "
  680. "of the target system when cross compiling.",false,
  681. "Variables That Describe the System");
  682. cm->DefineProperty
  683. ("APPLE", cmProperty::VARIABLE,
  684. "True if running on Mac OSX.",
  685. "Set to true on Mac OSX.",false,
  686. "Variables That Describe the System");
  687. cm->DefineProperty
  688. ("BORLAND", cmProperty::VARIABLE,
  689. "True of the borland compiler is being used.",
  690. "This is set to true if the Borland compiler is being used.",false,
  691. "Variables That Describe the System");
  692. cm->DefineProperty
  693. ("CYGWIN", cmProperty::VARIABLE,
  694. "True for cygwin.",
  695. "Set to true when using CYGWIN.",false,
  696. "Variables That Describe the System");
  697. cm->DefineProperty
  698. ("MSVC", cmProperty::VARIABLE,
  699. "True when using Microsoft Visual C",
  700. "Set to true when the compiler is some version of Microsoft Visual C.",
  701. false,
  702. "Variables That Describe the System");
  703. cm->DefineProperty
  704. ("MSVC80", cmProperty::VARIABLE,
  705. "True when using Microsoft Visual C 8.0",
  706. "Set to true when the compiler is version 8.0 of Microsoft Visual C.",
  707. false,
  708. "Variables That Describe the System");
  709. cm->DefineProperty
  710. ("MSVC_IDE", cmProperty::VARIABLE,
  711. "True when using the Microsoft Visual C IDE",
  712. "Set to true when the target platform is the Microsoft Visual C IDE, "
  713. "as opposed to the command line compiler.",
  714. false,
  715. "Variables That Describe the System");
  716. cm->DefineProperty
  717. ("MSVC_VERSION", cmProperty::VARIABLE,
  718. "The version of Microsoft Visual C/C++ being used if any.",
  719. "The version of Microsoft Visual C/C++ being used if any. "
  720. "For example 1300 is MSVC 6.0.",
  721. false,
  722. "Variables That Describe the System");
  723. cm->DefineProperty
  724. ("CMAKE_CL_64", cmProperty::VARIABLE,
  725. "Using the 64 bit compiler from Microsoft",
  726. "Set to true when using the 64 bit cl compiler from Microsoft.",
  727. false,
  728. "Variables That Describe the System");
  729. cm->DefineProperty
  730. ("CMAKE_COMPILER_2005", cmProperty::VARIABLE,
  731. "Using the Visual Studio 2005 compiler from Microsoft",
  732. "Set to true when using the Visual Studio 2005 compiler "
  733. "from Microsoft.",
  734. false,
  735. "Variables That Describe the System");
  736. cm->DefineProperty
  737. ("UNIX", cmProperty::VARIABLE,
  738. "True for UNIX and UNIX like operating systems.",
  739. "Set to true when the target system is UNIX or UNIX like "
  740. "(i.e. APPLE and CYGWIN).",false,
  741. "Variables That Describe the System");
  742. cm->DefineProperty
  743. ("WIN32", cmProperty::VARIABLE,
  744. "True on windows systems, including win64.",
  745. "Set to true when the target system is Windows and on cygwin.",false,
  746. "Variables That Describe the System");
  747. cm->DefineProperty
  748. ("XCODE_VERSION", cmProperty::VARIABLE,
  749. "Version of Xcode (Xcode generator only).",
  750. "Under the Xcode generator, this is the version of Xcode as specified in "
  751. "\"Xcode.app/Contents/version.plist\" (such as \"3.1.2\").",false,
  752. "Variables That Describe the System");
  753. cm->DefineProperty
  754. ("CMAKE_HOST_APPLE", cmProperty::VARIABLE,
  755. "True for Apple OSXoperating systems.",
  756. "Set to true when the host system is Apple OSX.",
  757. false,
  758. "Variables That Describe the System");
  759. cm->DefineProperty
  760. ("CMAKE_HOST_UNIX", cmProperty::VARIABLE,
  761. "True for UNIX and UNIX like operating systems.",
  762. "Set to true when the host system is UNIX or UNIX like "
  763. "(i.e. APPLE and CYGWIN).",false,
  764. "Variables That Describe the System");
  765. cm->DefineProperty
  766. ("CMAKE_HOST_WIN32", cmProperty::VARIABLE,
  767. "True on windows systems, including win64.",
  768. "Set to true when the host system is Windows and on cygwin.",false,
  769. "Variables That Describe the System");
  770. cm->DefineProperty
  771. ("CMAKE_OBJECT_PATH_MAX", cmProperty::VARIABLE,
  772. "Maximum object file full-path length allowed by native build tools.",
  773. "CMake computes for every source file an object file name that is "
  774. "unique to the source file and deterministic with respect to the "
  775. "full path to the source file. "
  776. "This allows multiple source files in a target to share the same name "
  777. "if they lie in different directories without rebuilding when one is "
  778. "added or removed. "
  779. "However, it can produce long full paths in a few cases, so CMake "
  780. "shortens the path using a hashing scheme when the full path to an "
  781. "object file exceeds a limit. "
  782. "CMake has a built-in limit for each platform that is sufficient for "
  783. "common tools, but some native tools may have a lower limit. "
  784. "This variable may be set to specify the limit explicitly. "
  785. "The value must be an integer no less than 128.",false,
  786. "Variables That Describe the System");
  787. // Variables that affect the building of object files and
  788. // targets.
  789. //
  790. cm->DefineProperty
  791. ("CMAKE_INCLUDE_CURRENT_DIR", cmProperty::VARIABLE,
  792. "Automatically add the current source- and build directories "
  793. "to the include path.",
  794. "If this variable is enabled, CMake automatically adds in each "
  795. "directory ${CMAKE_CURRENT_SOURCE_DIR} and ${CMAKE_CURRENT_BINARY_DIR} "
  796. "to the include path for this directory. These additional include "
  797. "directories do not propagate down to subdirectories. This is useful "
  798. "mainly for out-of-source builds, where files generated into the "
  799. "build tree are included by files located in the source tree.\n"
  800. "By default CMAKE_INCLUDE_CURRENT_DIR is OFF.",
  801. false,
  802. "Variables that Control the Build");
  803. cm->DefineProperty
  804. ("CMAKE_INSTALL_RPATH", cmProperty::VARIABLE,
  805. "The rpath to use for installed targets.",
  806. "A semicolon-separated list specifying the rpath "
  807. "to use in installed targets (for platforms that support it). "
  808. "This is used to initialize the target property "
  809. "INSTALL_RPATH for all targets.",
  810. false,
  811. "Variables that Control the Build");
  812. cm->DefineProperty
  813. ("CMAKE_INSTALL_RPATH_USE_LINK_PATH", cmProperty::VARIABLE,
  814. "Add paths to linker search and installed rpath.",
  815. "CMAKE_INSTALL_RPATH_USE_LINK_PATH is a boolean that if set to true "
  816. "will append directories in the linker search path and outside the "
  817. "project to the INSTALL_RPATH. "
  818. "This is used to initialize the target property "
  819. "INSTALL_RPATH_USE_LINK_PATH for all targets.",
  820. false,
  821. "Variables that Control the Build");
  822. cm->DefineProperty
  823. ("CMAKE_INSTALL_NAME_DIR", cmProperty::VARIABLE,
  824. "Mac OSX directory name for installed targets.",
  825. "CMAKE_INSTALL_NAME_DIR is used to initialize the "
  826. "INSTALL_NAME_DIR property on all targets. See that target "
  827. "property for more information.",
  828. false,
  829. "Variables that Control the Build");
  830. cm->DefineProperty
  831. ("CMAKE_Fortran_MODULE_DIRECTORY", cmProperty::VARIABLE,
  832. "Fortran module output directory.",
  833. "This variable is used to initialize the "
  834. "Fortran_MODULE_DIRECTORY property on all the targets. "
  835. "See that target property for additional information.",
  836. false,
  837. "Variables that Control the Build");
  838. cm->DefineProperty
  839. ("CMAKE_LIBRARY_OUTPUT_DIRECTORY", cmProperty::VARIABLE,
  840. "Where to put all the LIBRARY targets when built.",
  841. "This variable is used to initialize the "
  842. "LIBRARY_OUTPUT_DIRECTORY property on all the targets. "
  843. "See that target property for additional information.",
  844. false,
  845. "Variables that Control the Build");
  846. cm->DefineProperty
  847. ("CMAKE_ARCHIVE_OUTPUT_DIRECTORY", cmProperty::VARIABLE,
  848. "Where to put all the ARCHIVE targets when built.",
  849. "This variable is used to initialize the "
  850. "ARCHIVE_OUTPUT_DIRECTORY property on all the targets. "
  851. "See that target property for additional information.",
  852. false,
  853. "Variables that Control the Build");
  854. cm->DefineProperty
  855. ("CMAKE_RUNTIME_OUTPUT_DIRECTORY", cmProperty::VARIABLE,
  856. "Where to put all the RUNTIME targets when built.",
  857. "This variable is used to initialize the "
  858. "RUNTIME_OUTPUT_DIRECTORY property on all the targets. "
  859. "See that target property for additional information.",
  860. false,
  861. "Variables that Control the Build");
  862. cm->DefineProperty
  863. ("CMAKE_DEBUG_POSTFIX", cmProperty::VARIABLE,
  864. "See variable CMAKE_<CONFIG>_POSTFIX.",
  865. "This variable is a special case of the more-general "
  866. "CMAKE_<CONFIG>_POSTFIX variable for the DEBUG configuration.",
  867. false,
  868. "Variables that Control the Build");
  869. cm->DefineProperty
  870. ("CMAKE_<CONFIG>_POSTFIX", cmProperty::VARIABLE,
  871. "Default filename postfix for libraries under configuration <CONFIG>.",
  872. "When a non-executable target is created its <CONFIG>_POSTFIX "
  873. "target property is initialized with the value of this variable "
  874. "if it is set.",
  875. false,
  876. "Variables that Control the Build");
  877. cm->DefineProperty
  878. ("CMAKE_BUILD_WITH_INSTALL_RPATH", cmProperty::VARIABLE,
  879. "Use the install path for the RPATH",
  880. "Normally CMake uses the build tree for the RPATH when building "
  881. "executables etc on systems that use RPATH. When the software "
  882. "is installed the executables etc are relinked by CMake to have "
  883. "the install RPATH. If this variable is set to true then the software "
  884. "is always built with the install path for the RPATH and does not "
  885. "need to be relinked when installed.",false,
  886. "Variables that Control the Build");
  887. cm->DefineProperty
  888. ("CMAKE_NO_BUILTIN_CHRPATH", cmProperty::VARIABLE,
  889. "Do not use the builtin ELF editor to fix RPATHs on installation.",
  890. "When an ELF binary needs to have a different RPATH after installation "
  891. "than it does in the build tree, CMake uses a builtin editor to change "
  892. "the RPATH in the installed copy. "
  893. "If this variable is set to true then CMake will relink the binary "
  894. "before installation instead of using its builtin editor.",false,
  895. "Variables that Control the Build");
  896. cm->DefineProperty
  897. ("CMAKE_SKIP_BUILD_RPATH", cmProperty::VARIABLE,
  898. "Do not include RPATHs in the build tree.",
  899. "Normally CMake uses the build tree for the RPATH when building "
  900. "executables etc on systems that use RPATH. When the software "
  901. "is installed the executables etc are relinked by CMake to have "
  902. "the install RPATH. If this variable is set to true then the software "
  903. "is always built with no RPATH.",false,
  904. "Variables that Control the Build");
  905. cm->DefineProperty
  906. ("CMAKE_EXE_LINKER_FLAGS", cmProperty::VARIABLE,
  907. "Linker flags used to create executables.",
  908. "Flags used by the linker when creating an executable.",false,
  909. "Variables that Control the Build");
  910. cm->DefineProperty
  911. ("CMAKE_EXE_LINKER_FLAGS_[CMAKE_BUILD_TYPE]", cmProperty::VARIABLE,
  912. "Flag used when linking an executable.",
  913. "Same as CMAKE_C_FLAGS_* but used by the linker "
  914. "when creating executables.",false,
  915. "Variables that Control the Build");
  916. cm->DefineProperty
  917. ("CMAKE_LIBRARY_PATH_FLAG", cmProperty::VARIABLE,
  918. "The flag used to add a library search path to a compiler.",
  919. "The flag used to specify a library directory to the compiler. "
  920. "On most compilers this is \"-L\".",false,
  921. "Variables that Control the Build");
  922. cm->DefineProperty
  923. ("CMAKE_LINK_DEF_FILE_FLAG ", cmProperty::VARIABLE,
  924. "Linker flag used to specify a .def file for dll creation.",
  925. "The flag used to add a .def file when creating "
  926. "a dll on Windows, this is only defined on Windows.",false,
  927. "Variables that Control the Build");
  928. cm->DefineProperty
  929. ("CMAKE_LINK_LIBRARY_FLAG", cmProperty::VARIABLE,
  930. "Flag used to link a library into an executable.",
  931. "The flag used to specify a library to link to an executable. "
  932. "On most compilers this is \"-l\".",false,
  933. "Variables that Control the Build");
  934. cm->DefineProperty
  935. ("CMAKE_LINK_LIBRARY_FILE_FLAG", cmProperty::VARIABLE,
  936. "Flag used to link a library specified by a path to its file.",
  937. "The flag used before a library file path is given to the linker. "
  938. "This is needed only on very few platforms.", false,
  939. "Variables that Control the Build");
  940. cm->DefineProperty
  941. ("CMAKE_USE_RELATIVE_PATHS", cmProperty::VARIABLE,
  942. "Use relative paths (May not work!).",
  943. "If this is set to TRUE, then the CMake will use "
  944. "relative paths between the source and binary tree. "
  945. "This option does not work for more complicated "
  946. "projects, and relative paths are used when possible. "
  947. "In general, it is not possible to move CMake generated"
  948. " makefiles to a different location regardless "
  949. "of the value of this variable.",false,
  950. "Variables that Control the Build");
  951. cm->DefineProperty
  952. ("EXECUTABLE_OUTPUT_PATH", cmProperty::VARIABLE,
  953. "Old executable location variable.",
  954. "The target property RUNTIME_OUTPUT_DIRECTORY supercedes "
  955. "this variable for a target if it is set. "
  956. "Executable targets are otherwise placed in this directory.",false,
  957. "Variables that Control the Build");
  958. cm->DefineProperty
  959. ("LIBRARY_OUTPUT_PATH", cmProperty::VARIABLE,
  960. "Old library location variable.",
  961. "The target properties ARCHIVE_OUTPUT_DIRECTORY, "
  962. "LIBRARY_OUTPUT_DIRECTORY, and RUNTIME_OUTPUT_DIRECTORY supercede "
  963. "this variable for a target if they are set. "
  964. "Library targets are otherwise placed in this directory.",false,
  965. "Variables that Control the Build");
  966. // Variables defined when the a language is enabled These variables will
  967. // also be defined whenever CMake has loaded its support for compiling (LANG)
  968. // programs. This support will be loaded whenever CMake is used to compile
  969. // (LANG) files. C and CXX are examples of the most common values for (LANG).
  970. cm->DefineProperty
  971. ("CMAKE_USER_MAKE_RULES_OVERRIDE_<LANG>", cmProperty::VARIABLE,
  972. "Specify a file that can change the build rule variables.",
  973. "If this variable is set, it should to point to a "
  974. "CMakeLists.txt file that will be read in by CMake "
  975. "after all the system settings have been set, but "
  976. "before they have been used. This would allow you "
  977. "to override any variables that need to be changed "
  978. "for some language. ",false,
  979. "Variables for Languages");
  980. cm->DefineProperty
  981. ("CMAKE_<LANG>_COMPILER", cmProperty::VARIABLE,
  982. "The full path to the compiler for LANG.",
  983. "This is the command that will be used as the <LANG> compiler. "
  984. "Once set, you can not change this variable.",false,
  985. "Variables for Languages");
  986. cm->DefineProperty
  987. ("CMAKE_<LANG>_COMPILER_ID", cmProperty::VARIABLE,
  988. "An internal variable subject to change.",
  989. "This is used in determining the compiler and is subject to change.",
  990. false,
  991. "Variables for Languages");
  992. cm->DefineProperty
  993. ("CMAKE_<LANG>_PLATFORM_ID", cmProperty::VARIABLE,
  994. "An internal variable subject to change.",
  995. "This is used in determining the platform and is subject to change.",
  996. false,
  997. "Variables for Languages");
  998. cm->DefineProperty
  999. ("CMAKE_<LANG>_COMPILER_ABI", cmProperty::VARIABLE,
  1000. "An internal variable subject to change.",
  1001. "This is used in determining the compiler ABI and is subject to change.",
  1002. false,
  1003. "Variables for Languages");
  1004. cm->DefineProperty
  1005. ("CMAKE_INTERNAL_PLATFORM_ABI", cmProperty::VARIABLE,
  1006. "An internal variable subject to change.",
  1007. "This is used in determining the compiler ABI and is subject to change.",
  1008. false,
  1009. "Variables for Languages");
  1010. cm->DefineProperty
  1011. ("CMAKE_<LANG>_SIZEOF_DATA_PTR", cmProperty::VARIABLE,
  1012. "Size of pointer-to-data types for language <LANG>.",
  1013. "This holds the size (in bytes) of pointer-to-data types in the target "
  1014. "platform ABI. "
  1015. "It is defined for languages C and CXX (C++).",
  1016. false,
  1017. "Variables for Languages");
  1018. cm->DefineProperty
  1019. ("CMAKE_COMPILER_IS_GNU<LANG>", cmProperty::VARIABLE,
  1020. "True if the compiler is GNU.",
  1021. "If the selected <LANG> compiler is the GNU "
  1022. "compiler then this is TRUE, if not it is FALSE.",false,
  1023. "Variables for Languages");
  1024. cm->DefineProperty
  1025. ("CMAKE_<LANG>_FLAGS_DEBUG", cmProperty::VARIABLE,
  1026. "Flags for Debug build type or configuration.",
  1027. "<LANG> flags used when CMAKE_BUILD_TYPE is Debug.",false,
  1028. "Variables for Languages");
  1029. cm->DefineProperty
  1030. ("CMAKE_<LANG>_FLAGS_MINSIZEREL", cmProperty::VARIABLE,
  1031. "Flags for MinSizeRel build type or configuration.",
  1032. "<LANG> flags used when CMAKE_BUILD_TYPE is MinSizeRel."
  1033. "Short for minimum size release.",false,
  1034. "Variables for Languages");
  1035. cm->DefineProperty
  1036. ("CMAKE_<LANG>_FLAGS_RELEASE", cmProperty::VARIABLE,
  1037. "Flags for Release build type or configuration.",
  1038. "<LANG> flags used when CMAKE_BUILD_TYPE is Release",false,
  1039. "Variables for Languages");
  1040. cm->DefineProperty
  1041. ("CMAKE_<LANG>_FLAGS_RELWITHDEBINFO", cmProperty::VARIABLE,
  1042. "Flags for RelWithDebInfo type or configuration.",
  1043. "<LANG> flags used when CMAKE_BUILD_TYPE is RelWithDebInfo. "
  1044. "Short for Release With Debug Information.",false,
  1045. "Variables for Languages");
  1046. cm->DefineProperty
  1047. ("CMAKE_<LANG>_COMPILE_OBJECT", cmProperty::VARIABLE,
  1048. "Rule variable to compile a single object file.",
  1049. "This is a rule variable that tells CMake how to "
  1050. "compile a single object file for for the language <LANG>.",false,
  1051. "Variables for Languages");
  1052. cm->DefineProperty
  1053. ("CMAKE_<LANG>_CREATE_SHARED_LIBRARY", cmProperty::VARIABLE,
  1054. "Rule variable to create a shared library.",
  1055. "This is a rule variable that tells CMake how to "
  1056. "create a shared library for the language <LANG>.",false,
  1057. "Variables for Languages");
  1058. cm->DefineProperty
  1059. ("CMAKE_<LANG>_CREATE_SHARED_MODULE", cmProperty::VARIABLE,
  1060. "Rule variable to create a shared module.",
  1061. "This is a rule variable that tells CMake how to "
  1062. "create a shared library for the language <LANG>.",false,
  1063. "Variables for Languages");
  1064. cm->DefineProperty
  1065. ("CMAKE_<LANG>_CREATE_STATIC_LIBRARY", cmProperty::VARIABLE,
  1066. "Rule variable to create a static library.",
  1067. "This is a rule variable that tells CMake how "
  1068. "to create a static library for the language <LANG>.",false,
  1069. "Variables for Languages");
  1070. cm->DefineProperty
  1071. ("CMAKE_<LANG>_ARCHIVE_CREATE", cmProperty::VARIABLE,
  1072. "Rule variable to create a new static archive.",
  1073. "This is a rule variable that tells CMake how to create a static "
  1074. "archive. It is used in place of CMAKE_<LANG>_CREATE_STATIC_LIBRARY "
  1075. "on some platforms in order to support large object counts. "
  1076. "See also CMAKE_<LANG>_ARCHIVE_APPEND and CMAKE_<LANG>_ARCHIVE_FINISH.",
  1077. false, "Variables for Languages");
  1078. cm->DefineProperty
  1079. ("CMAKE_<LANG>_ARCHIVE_APPEND", cmProperty::VARIABLE,
  1080. "Rule variable to append to a static archive.",
  1081. "This is a rule variable that tells CMake how to append to a static "
  1082. "archive. It is used in place of CMAKE_<LANG>_CREATE_STATIC_LIBRARY "
  1083. "on some platforms in order to support large object counts. "
  1084. "See also CMAKE_<LANG>_ARCHIVE_CREATE and CMAKE_<LANG>_ARCHIVE_FINISH.",
  1085. false, "Variables for Languages");
  1086. cm->DefineProperty
  1087. ("CMAKE_<LANG>_ARCHIVE_FINISH", cmProperty::VARIABLE,
  1088. "Rule variable to finish an existing static archive.",
  1089. "This is a rule variable that tells CMake how to finish a static "
  1090. "archive. It is used in place of CMAKE_<LANG>_CREATE_STATIC_LIBRARY "
  1091. "on some platforms in order to support large object counts. "
  1092. "See also CMAKE_<LANG>_ARCHIVE_CREATE and CMAKE_<LANG>_ARCHIVE_APPEND.",
  1093. false, "Variables for Languages");
  1094. cm->DefineProperty
  1095. ("CMAKE_<LANG>_IGNORE_EXTENSIONS", cmProperty::VARIABLE,
  1096. "File extensions that should be ignored by the build.",
  1097. "This is a list of file extensions that may be "
  1098. "part of a project for a given language but are not compiled. ",false,
  1099. "Variables for Languages");
  1100. cm->DefineProperty
  1101. ("CMAKE_<LANG>_IMPLICIT_INCLUDE_DIRECTORIES", cmProperty::VARIABLE,
  1102. "Directories implicitly searched by the compiler for header files.",
  1103. "CMake does not explicitly specify these directories on compiler "
  1104. "command lines for language <LANG>. "
  1105. "This prevents system include directories from being treated as user "
  1106. "include directories on some compilers.", false,
  1107. "Variables for Languages");
  1108. cm->DefineProperty
  1109. ("CMAKE_<LANG>_IMPLICIT_LINK_DIRECTORIES", cmProperty::VARIABLE,
  1110. "Implicit linker search path detected for language <LANG>.",
  1111. "Compilers typically pass directories containing language runtime "
  1112. "libraries and default library search paths when they invoke a linker. "
  1113. "These paths are implicit linker search directories for the compiler's "
  1114. "language. "
  1115. "CMake automatically detects these directories for each language and "
  1116. "reports the results in this variable.", false,
  1117. "Variables for Languages");
  1118. cm->DefineProperty
  1119. ("CMAKE_<LANG>_IMPLICIT_LINK_LIBRARIES", cmProperty::VARIABLE,
  1120. "Implicit link libraries and flags detected for language <LANG>.",
  1121. "Compilers typically pass language runtime library names and "
  1122. "other flags when they invoke a linker. "
  1123. "These flags are implicit link options for the compiler's language. "
  1124. "CMake automatically detects these libraries and flags for each "
  1125. "language and reports the results in this variable.", false,
  1126. "Variables for Languages");
  1127. cm->DefineProperty
  1128. ("CMAKE_<LANG>_LINKER_PREFERENCE_PROPAGATES", cmProperty::VARIABLE,
  1129. "True if CMAKE_<LANG>_LINKER_PREFERENCE propagates across targets.",
  1130. "This is used when CMake selects a linker language for a target. "
  1131. "Languages compiled directly into the target are always considered. "
  1132. "A language compiled into static libraries linked by the target is "
  1133. "considered if this variable is true.", false,
  1134. "Variables for Languages");
  1135. cm->DefineProperty
  1136. ("CMAKE_<LANG>_LINKER_PREFERENCE", cmProperty::VARIABLE,
  1137. "Preference value for linker language selection.",
  1138. "The \"linker language\" for executable, shared library, and module "
  1139. "targets is the language whose compiler will invoke the linker. "
  1140. "The LINKER_LANGUAGE target property sets the language explicitly. "
  1141. "Otherwise, the linker language is that whose linker preference value "
  1142. "is highest among languages compiled and linked into the target. "
  1143. "See also the CMAKE_<LANG>_LINKER_PREFERENCE_PROPAGATES variable.",
  1144. false,
  1145. "Variables for Languages");
  1146. cm->DefineProperty
  1147. ("CMAKE_<LANG>_LINK_EXECUTABLE ", cmProperty::VARIABLE,
  1148. "Rule variable to link and executable.",
  1149. "Rule variable to link and executable for the given language.",false,
  1150. "Variables for Languages");
  1151. cm->DefineProperty
  1152. ("CMAKE_<LANG>_OUTPUT_EXTENSION", cmProperty::VARIABLE,
  1153. "Extension for the output of a compile for a single file.",
  1154. "This is the extension for an object file for "
  1155. "the given <LANG>. For example .obj for C on Windows.",false,
  1156. "Variables for Languages");
  1157. cm->DefineProperty
  1158. ("CMAKE_<LANG>_SOURCE_FILE_EXTENSIONS", cmProperty::VARIABLE,
  1159. "Extensions of source files for the given language.",
  1160. "This is the list of extensions for a "
  1161. "given languages source files.",false,"Variables for Languages");
  1162. cm->DefineProperty(
  1163. "CMAKE_<LANG>_COMPILER_LOADED", cmProperty::VARIABLE,
  1164. "Defined to true if the language is enabled.",
  1165. "When language <LANG> is enabled by project() or enable_language() "
  1166. "this variable is defined to 1.",
  1167. false,"Variables for Languages");
  1168. // variables that are used by cmake but not to be documented
  1169. cm->DefineProperty("CMAKE_MATCH_0", cmProperty::VARIABLE,0,0);
  1170. cm->DefineProperty("CMAKE_MATCH_1", cmProperty::VARIABLE,0,0);
  1171. cm->DefineProperty("CMAKE_MATCH_2", cmProperty::VARIABLE,0,0);
  1172. cm->DefineProperty("CMAKE_MATCH_3", cmProperty::VARIABLE,0,0);
  1173. cm->DefineProperty("CMAKE_MATCH_4", cmProperty::VARIABLE,0,0);
  1174. cm->DefineProperty("CMAKE_MATCH_5", cmProperty::VARIABLE,0,0);
  1175. cm->DefineProperty("CMAKE_MATCH_6", cmProperty::VARIABLE,0,0);
  1176. cm->DefineProperty("CMAKE_MATCH_7", cmProperty::VARIABLE,0,0);
  1177. cm->DefineProperty("CMAKE_MATCH_8", cmProperty::VARIABLE,0,0);
  1178. cm->DefineProperty("CMAKE_MATCH_9", cmProperty::VARIABLE,0,0);
  1179. cm->DefineProperty("CMAKE_<LANG>_COMPILER_ARG1",
  1180. cmProperty::VARIABLE,0,0);
  1181. cm->DefineProperty("CMAKE_<LANG>_COMPILER_ENV_VAR",
  1182. cmProperty::VARIABLE,0,0);
  1183. cm->DefineProperty("CMAKE_<LANG>_COMPILER_ID_RUN",
  1184. cmProperty::VARIABLE,0,0);
  1185. cm->DefineProperty("CMAKE_<LANG>_CREATE_ASSEMBLY_SOURCE",
  1186. cmProperty::VARIABLE,0,0);
  1187. cm->DefineProperty("CMAKE_<LANG>_CREATE_PREPROCESSED_SOURCE",
  1188. cmProperty::VARIABLE,0,0);
  1189. cm->DefineProperty("CMAKE_<LANG>_FLAGS",
  1190. cmProperty::VARIABLE,0,0);
  1191. cm->DefineProperty("CMAKE_<LANG>_FLAGS_DEBUG_INIT",
  1192. cmProperty::VARIABLE,0,0);
  1193. cm->DefineProperty("CMAKE_<LANG>_FLAGS_INIT",
  1194. cmProperty::VARIABLE,0,0);
  1195. cm->DefineProperty("CMAKE_<LANG>_FLAGS_MINSIZEREL_INIT",
  1196. cmProperty::VARIABLE,0,0);
  1197. cm->DefineProperty("CMAKE_<LANG>_FLAGS_RELEASE_INIT",
  1198. cmProperty::VARIABLE,0,0);
  1199. cm->DefineProperty("CMAKE_<LANG>_FLAGS_RELWITHDEBINFO_INIT",
  1200. cmProperty::VARIABLE,0,0);
  1201. cm->DefineProperty("CMAKE_<LANG>_INFORMATION_LOADED",
  1202. cmProperty::VARIABLE,0,0);
  1203. cm->DefineProperty("CMAKE_<LANG>_LINK_EXECUTABLE",
  1204. cmProperty::VARIABLE,0,0);
  1205. cm->DefineProperty("CMAKE_<LANG>_LINK_FLAGS",
  1206. cmProperty::VARIABLE,0,0);
  1207. cm->DefineProperty("CMAKE_<LANG>_STANDARD_LIBRARIES",
  1208. cmProperty::VARIABLE,0,0);
  1209. cm->DefineProperty("CMAKE_<LANG>_STANDARD_LIBRARIES_INIT",
  1210. cmProperty::VARIABLE,0,0);
  1211. cm->DefineProperty("CMAKE_<LANG>_USE_RESPONSE_FILE_FOR_OBJECTS",
  1212. cmProperty::VARIABLE,0,0);
  1213. cm->DefineProperty("CMAKE_EXECUTABLE_SUFFIX_<LANG>",
  1214. cmProperty::VARIABLE,0,0);
  1215. cm->DefineProperty("CMAKE_EXE_LINK_DYNAMIC_<LANG>_FLAGS",
  1216. cmProperty::VARIABLE,0,0);
  1217. cm->DefineProperty("CMAKE_EXE_LINK_STATIC_<LANG>_FLAGS",
  1218. cmProperty::VARIABLE,0,0);
  1219. cm->DefineProperty("CMAKE_GENERATOR_<LANG>",
  1220. cmProperty::VARIABLE,0,0);
  1221. cm->DefineProperty("CMAKE_IMPORT_LIBRARY_PREFIX_<LANG>",
  1222. cmProperty::VARIABLE,0,0);
  1223. cm->DefineProperty("CMAKE_IMPORT_LIBRARY_SUFFIX_<LANG>",
  1224. cmProperty::VARIABLE,0,0);
  1225. cm->DefineProperty("CMAKE_INCLUDE_FLAG_<LANG>",
  1226. cmProperty::VARIABLE,0,0);
  1227. cm->DefineProperty("CMAKE_INCLUDE_FLAG_SEP_<LANG>",
  1228. cmProperty::VARIABLE,0,0);
  1229. cm->DefineProperty("CMAKE_INCLUDE_SYSTEM_FLAG_<LANG>",
  1230. cmProperty::VARIABLE,0,0);
  1231. cm->DefineProperty("CMAKE_NEEDS_REQUIRES_STEP_<LANG>_FLAG",
  1232. cmProperty::VARIABLE,0,0);
  1233. cm->DefineProperty("CMAKE_SHARED_LIBRARY_CREATE_<LANG>_FLAGS",
  1234. cmProperty::VARIABLE,0,0);
  1235. cm->DefineProperty("CMAKE_SHARED_LIBRARY_<LANG>_FLAGS",
  1236. cmProperty::VARIABLE,0,0);
  1237. cm->DefineProperty("CMAKE_SHARED_LIBRARY_LINK_<LANG>_FLAGS",
  1238. cmProperty::VARIABLE,0,0);
  1239. cm->DefineProperty("CMAKE_SHARED_LIBRARY_LINK_DYNAMIC_<LANG>_FLAGS",
  1240. cmProperty::VARIABLE,0,0);
  1241. cm->DefineProperty("CMAKE_SHARED_LIBRARY_LINK_STATIC_<LANG>_FLAGS",
  1242. cmProperty::VARIABLE,0,0);
  1243. cm->DefineProperty("CMAKE_SHARED_LIBRARY_PREFIX_<LANG>",
  1244. cmProperty::VARIABLE,0,0);
  1245. cm->DefineProperty("CMAKE_SHARED_LIBRARY_SUFFIX_<LANG>",
  1246. cmProperty::VARIABLE,0,0);
  1247. cm->DefineProperty("CMAKE_SHARED_LIBRARY_RUNTIME_<LANG>_FLAG",
  1248. cmProperty::VARIABLE,0,0);
  1249. cm->DefineProperty("CMAKE_SHARED_LIBRARY_RUNTIME_<LANG>_FLAG_SEP",
  1250. cmProperty::VARIABLE,0,0);
  1251. cm->DefineProperty("CMAKE_SHARED_LIBRARY_RPATH_LINK_<LANG>_FLAG",
  1252. cmProperty::VARIABLE,0,0);
  1253. cm->DefineProperty("CMAKE_EXECUTABLE_RUNTIME_<LANG>_FLAG",
  1254. cmProperty::VARIABLE,0,0);
  1255. cm->DefineProperty("CMAKE_EXECUTABLE_RUNTIME_<LANG>_FLAG_SEP",
  1256. cmProperty::VARIABLE,0,0);
  1257. cm->DefineProperty("CMAKE_EXECUTABLE_RPATH_LINK_<LANG>_FLAG",
  1258. cmProperty::VARIABLE,0,0);
  1259. cm->DefineProperty("CMAKE_PLATFORM_REQUIRED_RUNTIME_PATH",
  1260. cmProperty::VARIABLE,0,0);
  1261. cm->DefineProperty("CMAKE_SHARED_MODULE_CREATE_<LANG>_FLAGS",
  1262. cmProperty::VARIABLE,0,0);
  1263. cm->DefineProperty("CMAKE_SHARED_MODULE_<LANG>_FLAGS",
  1264. cmProperty::VARIABLE,0,0);
  1265. cm->DefineProperty("CMAKE_SHARED_MODULE_LINK_DYNAMIC_<LANG>_FLAGS",
  1266. cmProperty::VARIABLE,0,0);
  1267. cm->DefineProperty("CMAKE_SHARED_MODULE_LINK_STATIC_<LANG>_FLAGS",
  1268. cmProperty::VARIABLE,0,0);
  1269. cm->DefineProperty("CMAKE_SHARED_MODULE_PREFIX_<LANG>",
  1270. cmProperty::VARIABLE,0,0);
  1271. cm->DefineProperty("CMAKE_SHARED_MODULE_SUFFIX_<LANG>",
  1272. cmProperty::VARIABLE,0,0);
  1273. cm->DefineProperty("CMAKE_SHARED_MODULE_RUNTIME_<LANG>_FLAG",
  1274. cmProperty::VARIABLE,0,0);
  1275. cm->DefineProperty("CMAKE_SHARED_MODULE_RUNTIME_<LANG>_FLAG_SEP",
  1276. cmProperty::VARIABLE,0,0);
  1277. cm->DefineProperty("CMAKE_STATIC_LIBRARY_PREFIX_<LANG>",
  1278. cmProperty::VARIABLE,0,0);
  1279. cm->DefineProperty("CMAKE_STATIC_LIBRARY_SUFFIX_<LANG>",
  1280. cmProperty::VARIABLE,0,0);
  1281. cm->DefineProperty("CMAKE_LINK_DEPENDENT_LIBRARY_FILES",
  1282. cmProperty::VARIABLE,0,0);
  1283. cm->DefineProperty("CMAKE_LINK_DEPENDENT_LIBRARY_DIRS",
  1284. cmProperty::VARIABLE,0,0);
  1285. }