summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Help: Insert section headers in CPack moduleJoachim Wuttke (h)2018-11-121-2/+8
| | | | | The one extant section header was confusing at least: Not all the doc page is on Variables.
* CMake Nightly Date StampKitware Robot2018-11-111-1/+1
|
* CMake Nightly Date StampKitware Robot2018-11-101-1/+1
|
* Merge branch 'release-3.13'Brad King2018-11-090-0/+0
|\
| * Merge branch 'FindBoost-link-threads' into release-3.13Brad King2018-11-091-0/+3
| |\ | | | | | | | | | Merge-request: !2570
* | \ Merge topic 'FindBoost-link-threads'Brad King2018-11-091-0/+3
|\ \ \ | | |/ | |/| | | | | | | | | | | | | bd831ed094 FindBoost: Add system thread library to Boost_LIBRARIES Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !2570
| * | FindBoost: Add system thread library to Boost_LIBRARIESFelix Geyer2018-11-091-0/+3
| |/ | | | | | | | | | | | | | | | | Add the system thread library to Boost_LIBRARIES when the boost thread component has been found. The Boost::thread imported target already pulls in Threads::Threads. This changes does the same for projects using the Boost_LIBRARIES variable instead.
* | Merge topic 'cpack-improve-unknown-generator-error'Brad King2018-11-092-3/+17
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | f29e2292c9 cpack: When given an unknown generator print out all valid generators eba7273c20 cpack: Better error message when generator doesn't exist. Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: David Cole <dlrdave@aol.com> Merge-request: !2580
| * | cpack: When given an unknown generator print out all valid generatorsRobert Maynard2018-11-091-1/+14
| | | | | | | | | | | | This makes cpack behavior match cmake when passed an invalid generator
| * | cpack: Better error message when generator doesn't exist.Robert Maynard2018-11-082-3/+4
| | | | | | | | | | | | | | | | | | Currently the CPack error message when passed an invalid generator name reads like the generator failed to work, rather than the name was invalid.
* | | Merge topic 'env'Brad King2018-11-098-23/+104
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 860338491e Help: Describe $CACHE and $ENV as operators e855bd5248 Help: Document if(DEFINED ENV{name}) 8ba2a8d4a4 Help: short/long variable reference in if command 85498fccd8 Help: Provide backreferences. e24ef96942 Help: New section on Environment Variables in cmake-language.7 e4554149c4 Help: Remove over-precise clause. 3de551cc22 Help: Clarify effect of set(ENV{..} ..) and unset(ENV{..}) Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !2538
| * | | Help: Describe $CACHE and $ENV as operatorsJoachim Wuttke (l)2018-11-083-6/+18
| | | | | | | | | | | | | | | | | | | | | | | | This resolves issue #18514 Also add a cross-reference to if(DEFINED ENV{var}).
| * | | Help: Document if(DEFINED ENV{name})Joachim Wuttke (h)2018-11-081-7/+9
| | | |
| * | | Help: short/long variable reference in if commandJoachim Wuttke (l)2018-11-082-4/+14
| | | | | | | | | | | | | | | | | | | | Explain that the short form of variable references in the if command does not apply to ENV and CACHE vars.
| * | | Help: Provide backreferences.Joachim Wuttke (h)2018-11-083-2/+19
| | | | | | | | | | | | | | | | | | | | Short intro to pages cmake-variables.7 and cmake-env-variables.7, with backlinks to cmake-language.7.
| * | | Help: New section on Environment Variables in cmake-language.7Joachim Wuttke (h)2018-11-081-1/+28
| | | |
| * | | Help: Remove over-precise clause.Joachim Wuttke (h)2018-11-081-4/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Section "Variables References" said that environment and cache variables are "evaluated in the same contexts as a normal variable reference". The reader has to guess what "contexts" means in this context. Probably "inside a Quoted Argument or an Unquoted Argument", exactly as for ordinary variable references. But this is exactly what the reader would tacitly assume anyway. Therefore I think the removed clause was unnecessary, and possibly more confusing than helpful.
| * | | Help: Clarify effect of set(ENV{..} ..) and unset(ENV{..})Joachim Wuttke (h)2018-11-082-5/+20
| |/ / | | | | | | | | | | | | | | | | | | Explain that the commands affect only the current CMake process, not the process from which CMake was called, nor the system environment at large, nor the environment of subsequent build or test processes.
* | | CMake Nightly Date StampKitware Robot2018-11-091-1/+1
|/ /
* | Merge topic 'install-defaults'Brad King2018-11-0838-83/+953
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | fdcd559a8e Help: Add documentation and release notes for install 9fc20a4f3e install: Add sane set of defaults for DESTINATION and file type parameters Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: Alex Turbov <i.zaufi@gmail.com> Acked-by: Ruslan Baratov <ruslan_baratov@yahoo.com> Merge-request: !2558
| * | Help: Add documentation and release notes for installKyle Edwards2018-11-072-4/+121
| | | | | | | | | | | | | | | This change adds documentation for the new DESTINATION behavior of the install() command.
| * | install: Add sane set of defaults for DESTINATION and file type parametersKyle Edwards2018-11-0736-79/+832
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If the user does not specify a DESTINATION for a target type, the install() command checks to see if the appropriate variable from GNUInstallDirs is set. If it is not, then it uses an appropriate hard-coded guess. In addition, for FILES and DIRECTORY, the user can specify a file type instead of a DESTINATION, and the command will use the appropriate variable from GNUInstallDirs, or a hard-coded guess if it is not set.
* | | Merge topic 'pkgconfig-mark-advanced'Brad King2018-11-081-0/+1
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | f5c46dd84e PkgConfig: Be less verbose by mark(ing)_as_advanced the find_library result Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: Rolf Eike Beer <eike@sf-mail.de> Merge-request: !2576
| * | | PkgConfig: Be less verbose by mark(ing)_as_advanced the find_library resultSylvain Joubert2018-11-071-0/+1
| | | |
* | | | Merge topic 'find-jpeg-turbo-multiarch-version'Brad King2018-11-083-17/+29
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1c4c4be509 FindJPEG: handle multiarch installs of libjpeg-turbo Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !2572
| * | | | FindJPEG: handle multiarch installs of libjpeg-turboBen Boeckel2018-11-063-17/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fedora installs a `jconfig-32.h` and `jconfig-64.h` which were not searched. Instead, glob up all `jconfig` headers and bail once we've found a version number.
* | | | | CMake Nightly Date StampKitware Robot2018-11-081-1/+1
| |_|/ / |/| | |
* | | | Merge branch 'release-3.13'Brad King2018-11-070-0/+0
|\ \ \ \ | |_|/ / |/| | / | | |/ | |/|
| * | CMake 3.13.0-rc3v3.13.0-rc3Brad King2018-11-071-1/+1
| | |
* | | Merge branch 'release-3.13'Brad King2018-11-070-0/+0
|\ \ \ | |/ /
| * | Merge branch 'FindOpenMP-log-errors' into release-3.13Brad King2018-11-071-3/+10
| |\ \ | | | | | | | | | | | | Merge-request: !2574
* | \ \ Merge topic 'FindOpenMP-log-errors'Brad King2018-11-071-3/+10
|\ \ \ \ | | |/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | 272c4c3dee FindOpenMP: Log error output db0445f0c8 FindOpenMP: Fix warnings with -Wstrict-prototypes Acked-by: Kitware Robot <kwrobot@kitware.com> Reviewed-by: Christian Pfeiffer <cpfeiffer@live.de> Merge-request: !2574
| * | | FindOpenMP: Log error outputIvan Pozdeev2018-11-071-1/+8
| | | |
| * | | FindOpenMP: Fix warnings with -Wstrict-prototypesIvan Pozdeev2018-11-071-2/+2
| | | | | | | | | | | | | | | | With -Wstrict-prototype -Werror, the check would fail
* | | | Merge topic 'string_func_usage'Brad King2018-11-0733-88/+82
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | c67ab22cdc Using front() and back() instead of calculations Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !2571
| * | | | Using front() and back() instead of calculationsCengizhan Pasaoglu2018-11-0633-88/+82
| | |_|/ | |/| |
* | | | Merge topic 'fix-double-warn-uninitialized-in-script-mode'Brad King2018-11-075-6/+16
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 53a5aec899 CMP0053: Fix double warning on uninitialized variables in -P mode f92f93467e cmMakefile: Rename SuppressWatches to SuppressSideEffects Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !2565
| * | | | CMP0053: Fix double warning on uninitialized variables in -P modeR2RT2018-11-054-1/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When `CMP0053` is not set to OLD or NEW then we compute both variants in case we need to warn about a behavior change. Do not allow both code paths to produce an uninitialized variable warning. Fixes: #18552
| * | | | cmMakefile: Rename SuppressWatches to SuppressSideEffectsR2RT2018-11-052-5/+5
| | | | |
* | | | | Merge topic 'genex'Brad King2018-11-071-153/+253
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 86c07b9165 Help: Say early on that generator expressions can be nested. ab1d7df757 Help: add section on debugging generator expressions. e0f0f80f02 Help: Explain conversion rules of $<BOOL:string>. 2b2b41f038 Help: Code example for case-insensitive comparison e045fb202d Help: Terminate explanations with a dot. 3fa0a03b7e Help: Expand placeholders in string comparisons. fb423b3c49 Help: sort conditional expressions below string-valued ones. 867c9c9c0d Help: Add deprecation date of $<CONFIGURATION> ... Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: Alex Turbov <i.zaufi@gmail.com> Merge-request: !2564
| * | | | | Help: Say early on that generator expressions can be nested.Joachim Wuttke (o)2018-11-061-2/+4
| | | | | |
| * | | | | Help: add section on debugging generator expressions.Joachim Wuttke (h)2018-11-061-0/+22
| | | | | | | | | | | | | | | | | | | | | | | | This resolves #18550.
| * | | | | Help: Explain conversion rules of $<BOOL:string>.Joachim Wuttke (h)2018-11-061-2/+10
| | | | | | | | | | | | | | | | | | | | | | | | This resolves #18549.
| * | | | | Help: Code example for case-insensitive comparisonJoachim Wuttke (h)2018-11-061-3/+12
| | | | | |
| * | | | | Help: Terminate explanations with a dot.Joachim Wuttke (h)2018-11-061-4/+4
| | | | | |
| * | | | | Help: Expand placeholders in string comparisons.Joachim Wuttke (h)2018-11-061-6/+8
| | | | | | | | | | | | | | | | | | | | | | | | And point out that STREQUAL is case sensitive.
| * | | | | Help: sort conditional expressions below string-valued ones.Joachim Wuttke (h)2018-11-061-30/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Makes things yet clearer and simpler. Also correct remnant of "informational expression".
| * | | | | Help: Add deprecation date of $<CONFIGURATION>Joachim Wuttke (h)2018-11-061-1/+1
| | | | | |
| * | | | | Help: Add note on omitted <..> notation in cmake-generator-expressions(7)Joachim Wuttke (h)2018-11-061-0/+5
| | | | | |
| * | | | | Help: Revise documentation of string-valued generator expressionsJoachim Wuttke (h)2018-11-061-92/+111
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Consolidate examples * Sort, and insert subsection headers