summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.cxx
Commit message (Collapse)AuthorAgeFilesLines
* cmAlgorithms: add cmEraseIf functionDaniel Pfeifer2017-02-101-11/+2
|
* add_custom_{command,target}: Add COMMAND_EXPAND_LISTS optionEd Branch2017-01-141-8/+14
| | | | | | This option allows lists generated by generator expressions to be expanded. Closes: #15935
* Fix typo in error message on missing required variableBrad King2016-12-161-1/+1
| | | | Reported-by: Albrecht Schlosser <AlbrechtS.fltk@online.de>
* clang-tidy: apply readability-redundant-string-init fixesDaniel Pfeifer2016-12-121-2/+2
|
* Merge topic 'try_compile-lang-std'Brad King2016-12-071-6/+10
|\ | | | | | | | | | | | | f72ba42b try_compile: Add policy CMP0067 to honor language standards 45aa03b9 try_compile: Add options to specify language standards 3bb2051e try_compile: Stop processing when test build system fails to generate
| * try_compile: Stop processing when test build system fails to generateBrad King2016-12-061-6/+10
| | | | | | | | | | | | Failing to generate the build system of the test project is a failure to compute the result of the test compilation, and so must be treated as any other CMake Error and stop processing.
* | Features: Add infrastructure for C++ 17 language standardBrad King2016-12-021-7/+26
|/ | | | Issue: #16468
* CUDA: C++ compile features now enable cuda c++11 support.Robert Maynard2016-11-141-0/+3
|
* Fix several include-what-you-use findingsDaniel Pfeifer2016-11-081-14/+14
|
* Remove cmCommand::Enabled and all related accessorsDaniel Pfeifer2016-10-241-1/+1
| | | | | Enabled is never set to false. Remove the member variable and all related getters and setters.
* cmState: Split auxiliary classes into separate filesStephen Kelly2016-10-191-0/+2
| | | | | | | Port dependents to the new locations as needed. Leave behind a cmState.h include in cmListFileCache to reduce noise. It is removed in a following commit.
* cmState: Port dependents to new cmStateTypes headerStephen Kelly2016-10-191-1/+1
|
* cmState: Port dependent code to new cmStateSnapshot nameStephen Kelly2016-10-191-6/+6
|
* cmState: Move CacheEntryType enum to separate namespaceStephen Kelly2016-10-191-7/+8
| | | | Port dependent code to the change.
* cmState: Move TargetType enum to separate namespaceStephen Kelly2016-10-191-22/+25
|
* Merge topic 'clean-up-link-configuration'Brad King2016-10-101-92/+55
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | a1cfc4fe cmMakefile: Simplify programmer error to an assert 4079ba20 cmMakefile: Implement LinkLibraries as an internal property 17ab8e33 cmMakefile: Inline method into only remaining caller 7edfcd0e cmMakefile: Inline method into caller 6c8dc7f1 cmake: Simplify find-package mode library addition 1efca9f4 cmMakefile: Remove obsolete parameter d9b5f0a3 cmTarget: Remove target name from parameter list 1c70c6cc cmMakefile: Use public API to find a target 2b7baed7 cmMakefile: Inline method into only caller 7ba95492 cmMakefile: Use public API to find a target 6d98b15f cmMakefile: Invert if() condition to remove else 869037ee cmMakefile: Remove ALIAS check 2f6462a6 cmMakefile: Collapse two consecutive if()s into one 148b83a1 cmMakefile: DeMorgan-invert condition 4457a9f1 cmMakefile: Return after error and remove else condition 4d039c5b cmMakefile: Invert handling of error condition ...
| * cmMakefile: Simplify programmer error to an assertStephen Kelly2016-10-071-8/+3
| |
| * cmMakefile: Implement LinkLibraries as an internal propertyStephen Kelly2016-10-071-28/+47
| | | | | | | | | | | | | | | | | | cmMakefile should not have logic particular to individual cmake commands. The link_libraries() command is generally obsolete in favor of target_link_libraries(). An alternative language for CMake probably would not offer the former. The quirks and historical behaviors of the current language should be separate from the core classes of CMake to allow replacing the language.
| * cmMakefile: Inline method into only remaining callerStephen Kelly2016-10-071-29/+0
| |
| * cmMakefile: Remove obsolete parameterStephen Kelly2016-10-071-4/+3
| |
| * cmTarget: Remove target name from parameter listStephen Kelly2016-10-071-3/+3
| | | | | | | | Use the member state instead.
| * cmMakefile: Use public API to find a targetStephen Kelly2016-10-071-3/+3
| |
| * cmMakefile: Inline method into only callerStephen Kelly2016-10-071-14/+0
| | | | | | | | | | cmMakefile should not have API which is only useful for deprecated systems like cmPluginAPI.
| * cmMakefile: Use public API to find a targetStephen Kelly2016-10-071-3/+4
| |
| * cmMakefile: Invert if() condition to remove elseStephen Kelly2016-10-071-3/+3
| |
| * cmMakefile: Remove ALIAS checkStephen Kelly2016-10-071-7/+0
| | | | | | | | | | This method is only called from the cmPlugin API, which predates ALIAS targets and is obsolete.
| * cmMakefile: Collapse two consecutive if()s into oneStephen Kelly2016-10-071-14/+11
| |
| * cmMakefile: DeMorgan-invert conditionStephen Kelly2016-10-071-4/+4
| |
| * cmMakefile: Return after error and remove else conditionStephen Kelly2016-10-071-17/+18
| |
| * cmMakefile: Invert handling of error conditionStephen Kelly2016-10-071-6/+6
| |
| * cmMakefile: Remove superfluous overloadStephen Kelly2016-10-071-5/+0
| | | | | | | | Explicit is better than implicit.
| * cmMakefile: Remove useless link directory containerStephen Kelly2016-10-071-4/+1
| | | | | | | | It is never populated - a find will never find anything.
| * cmTarget: Inline MergeLinkLibraries into only callerStephen Kelly2016-10-071-1/+10
| |
* | cmMakefile: Remove pointless conditionStephen Kelly2016-10-091-4/+2
|/ | | | This method is never called with an empty string.
* project: Fix support for explicit RC languageBrad King2016-09-281-1/+20
| | | | | | | | | | | | | | | The check added in commit v3.6.0-rc1~293^2 (Diagnose recursive project/enable_language without crashing, 2016-03-07) broke support for enabling `RC` explicitly along with other languages like `C`. The reason is that we enable all listed languages at once so the internal `enable_language(RC)` that we do while enabling `C` or `CXX` on some platforms triggers the recursion check if `RC` is explicitly listed. Ideally we should refactor things to only enable one language at a time, but for now it is simplest to just exclude `RC` from the explicit list until other languages are enabled, and then enable it. Closes: #16330
* Simplify CMake per-source license noticesBrad King2016-09-271-11/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | Per-source copyright/license notice headers that spell out copyright holder names and years are hard to maintain and often out-of-date or plain wrong. Precise contributor information is already maintained automatically by the version control tool. Ultimately it is the receiver of a file who is responsible for determining its licensing status, and per-source notices are merely a convenience. Therefore it is simpler and more accurate for each source to have a generic notice of the license name and references to more detailed information on copyright holders and full license terms. Our `Copyright.txt` file now contains a list of Contributors whose names appeared source-level copyright notices. It also references version control history for more precise information. Therefore we no longer need to spell out the list of Contributors in each source file notice. Replace CMake per-source copyright/license notice headers with a short description of the license and links to `Copyright.txt` and online information available from "https://cmake.org/licensing". The online URL also handles cases of modules being copied out of our source into other projects, so we can drop our notices about replacing links with full license text. Run the `Utilities/Scripts/filter-notices.bash` script to perform the majority of the replacements mechanically. Manually fix up shebang lines and trailing newlines in a few files. Manually update the notices in a few files that the script does not handle.
* cmState: Record buildsystem target names in each directoryBrad King2016-09-191-0/+1
| | | | | | Maintain in the directory state the list of target names added to be built. These are normal, non-imported targets (but do include INTERFACE libraries).
* cmTarget: Construct with basic information up frontBrad King2016-09-141-8/+8
| | | | | Avoid having partially constructed cmTarget instances around, except for the special case of GLOBAL_TARGET construction.
* Avoid requiring default cmTarget constructor for map indexingBrad King2016-09-141-2/+3
| | | | | | The `std::map<>` index operator requires a default constructor on the value type. Avoid requiring a default constructor on `cmTarget` just for this purpose.
* cmMakefile: Restore nested error logic use of cmExecutionStatusBrad King2016-09-061-11/+8
| | | | | | | | | | | | | | Since commit 14a8d61f (cmMakefile: Port nested error logic away from cmExecutionStatus) we fail to continue processing function and macro bodies after non-fatal errors. A non-fatal error should not stop foreach loops, macro bodies, nested bodies, or the outer script. Add a test covering these cases, and revert the change to fix them. Also revert commit 2af853de (cmMakefile: Simplify IssueMessage implementation) because the assertion it added (which was removed by the above commit and is restored by reverting it) is incorrect. We do have code paths that call cmMakefile::IssueMessage with an empty execution stack, such as in CheckForUnusedVariables's LogUnused call.
* fix a load of include-what-you-use violationsDaniel Pfeifer2016-09-031-6/+7
|
* add_custom_command: Add DEPFILE option for NinjaKulla Christoph2016-08-301-4/+6
| | | | | | | | Provide a way for custom commands to inform the ninja build tool about their implicit dependencies. For now simply make use of the option an error on other generators. Closes: #15479
* Parser: Port away from cmMakefileStephen Kelly2016-08-251-3/+12
| | | | It is an unneeded dependency.
* cmMakefile: Port nested error logic away from cmExecutionStatusStephen Kelly2016-08-251-7/+11
| | | | It is no longer needed.
* cmMakefile: Simplify IssueMessage implementationStephen Kelly2016-08-251-5/+3
| | | | | It is only called during configure time when the execution stack is non-empty.
* fix a batch of include-what-you-use violationsDaniel Pfeifer2016-08-231-10/+16
|
* CMake: don't use else after returnDaniel Pfeifer2016-08-181-85/+82
|
* Use better KWSys SystemTools::GetEnv and HasEnv signaturesDāvis Mosāns2016-07-181-1/+4
|
* Avoid using KWSys auto_ptr by adopting it ourselvesBrad King2016-06-291-10/+9
| | | | | | | | | | | | Replace use of cmsys::auto_ptr with a CM_AUTO_PTR macro that maps to our own implementation adopted from the KWSys auto_ptr implementation. Later we may be able to map CM_AUTO_PTR to std::auto_ptr on compilers that do not warn about it. Automate the client site conversions: git grep -l auto_ptr -- Source/ | grep -v Source/kwsys/ | xargs sed -i \ 's|cmsys::auto_ptr|CM_AUTO_PTR|;s|cmsys/auto_ptr.hxx|cm_auto_ptr.hxx|'
* use CM_NULLPTRDaniel Pfeifer2016-06-281-29/+30
|