summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Remove some needless GetMakefile() calls.Stephen Kelly2015-10-103-3/+3
|
* cmLocalGenerator: Add current source directory accessor.Stephen Kelly2015-10-1010-14/+20
|
* cmLocalGenerator: Add current binary directory accessor.Stephen Kelly2015-10-1018-77/+80
|
* cmLocalGenerator: Add Home directory accessors.Stephen Kelly2015-10-0823-82/+94
| | | | Reduce reasons for cmLocalGenerator to have a cmMakefile.
* Eclipse: Port API to cmLocalGenerator.Stephen Kelly2015-10-082-7/+10
|
* Kate: Remove unused variables.Stephen Kelly2015-10-081-3/+0
|
* Kate: Port API to cmLocalGenerator.Stephen Kelly2015-10-082-10/+17
|
* export: Port internal method to cmGeneratorTarget.Stephen Kelly2015-10-081-12/+14
|
* cmMakefile: Remove unused GetProjectName calls.Stephen Kelly2015-10-082-10/+0
|
* cmLocalGenerator: Add GetProjectName method.Stephen Kelly2015-10-0813-30/+36
|
* cmCPluginAPI: Inline code to get project name.Stephen Kelly2015-10-081-1/+1
|
* cmMakefile: Inline initialization of project name.Stephen Kelly2015-10-081-1/+1
|
* cmLocalGenerator: Add cmake instance accessor.Stephen Kelly2015-10-082-0/+7
|
* Merge topic 'FindOpenSSL-mingw'Brad King2015-10-081-7/+3
|\ | | | | | | | | | | 1bf66fed FindOpenSSL: Search for unix-named libraries first on MinGW (#15765) 6b575dec FindOpenSSL: Tolerate tabs in header while parsing version (#15765)
| * FindOpenSSL: Search for unix-named libraries first on MinGW (#15765)Wayne Stambaugh2015-10-061-6/+2
| | | | | | | | | | | | | | | | Generalize the change made by commit v2.8.10~228^2~4 (FindOpenSSL: find cross-compiled OpenSSL from MinGW, 2012-07-23) to be used on builds hosted on Windows too. When building for MinGW, consider library names that come with MinGW before looking for the main Windows distribution of OpenSSL.
| * FindOpenSSL: Tolerate tabs in header while parsing version (#15765)Wayne Stambaugh2015-10-061-1/+1
| | | | | | | | Tolerate tabs instead of spaces in the "# define" line.
* | Merge topic 'cmGeneratorTarget-sources'Brad King2015-10-0822-459/+401
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | af71c7b4 cmTarget: Remove Compute method. dce6581b cmGeneratorTarget: Move computed sources from cmTarget. 7b6dc0fe cmGeneratorTarget: Inline GetSourceFiles from cmTarget. 33f87bb1 cmGeneratorTarget: Move AddInterfaceEntries method. da1b0449 cmTarget: Remove a conditional for generate-time source addition. fe113f0f cmTarget: Split storage of sources from genexes. 776ff8eb cmTarget: Add Compute API for sources. 64f73150 cmTarget: Add API for generate-time source addition. c38e30f6 cmGeneratorTarget: Add methods for generate-time source addition. 5d3776a7 Access sources through cmGeneratorTarget. 7ce0991a GHS: Port API to cmGeneratorTarget. 156bd2c9 Xcode: Port away from unnecessary CMP0049 compatibility. 01e666c7 cmTarget: Join strings conditionally. bf28b787 cmGeneratorTarget: Rename internal member. 9d653f9c cmFLTKWrapUI: Remove CMake 2.2 compat code.
| * | cmTarget: Remove Compute method.Stephen Kelly2015-10-077-13/+0
| | |
| * | cmGeneratorTarget: Move computed sources from cmTarget.Stephen Kelly2015-10-074-313/+249
| | |
| * | cmGeneratorTarget: Inline GetSourceFiles from cmTarget.Stephen Kelly2015-10-073-49/+49
| | |
| * | cmGeneratorTarget: Move AddInterfaceEntries method.Stephen Kelly2015-10-071-28/+27
| | | | | | | | | | | | It will be needed here in a follow-up commit.
| * | cmTarget: Remove a conditional for generate-time source addition.Stephen Kelly2015-10-071-13/+6
| | | | | | | | | | | | It is not really necessary.
| * | cmTarget: Split storage of sources from genexes.Stephen Kelly2015-10-071-39/+50
| | |
| * | cmTarget: Add Compute API for sources.Stephen Kelly2015-10-077-0/+13
| | | | | | | | | | | | | | | This method is a refactoring artifact. It will be removed in a follow-up.
| * | cmTarget: Add API for generate-time source addition.Stephen Kelly2015-10-073-1/+7
| | | | | | | | | | | | | | | This method is a refactoring artifact. It will be removed in a follow-up.
| * | cmGeneratorTarget: Add methods for generate-time source addition.Stephen Kelly2015-10-077-13/+35
| | |
| * | Access sources through cmGeneratorTarget.Stephen Kelly2015-10-0712-16/+27
| | |
| * | GHS: Port API to cmGeneratorTarget.Stephen Kelly2015-10-073-9/+12
| | |
| * | Xcode: Port away from unnecessary CMP0049 compatibility.Stephen Kelly2015-10-061-2/+2
| | | | | | | | | | | | The input does not need the conversion.
| * | cmTarget: Join strings conditionally.Stephen Kelly2015-10-061-2/+2
| | |
| * | cmGeneratorTarget: Rename internal member.Stephen Kelly2015-10-062-4/+4
| | | | | | | | | | | | Leave the old name available for another use.
| * | cmFLTKWrapUI: Remove CMake 2.2 compat code.Stephen Kelly2015-10-061-39/+0
| |/ | | | | | | CMake 3.0 dropped CMake <= 2.4 compatibility.
* | Merge topic 'refactor-current-dir-initialization'Brad King2015-10-0810-62/+59
|\ \ | | | | | | | | | | | | | | | | | | | | | 28749903 cmState: Internalize the initialization of a snapshot from its parent. 6c02f62f Remove now-unused directory setters. 360e4e1d Set the current dirs on the snapshot before creating the cmMakefile. f716460e cmMakefile: Move invokation to initialize snapshot.
| * | cmState: Internalize the initialization of a snapshot from its parent.Stephen Kelly2015-10-073-4/+5
| | |
| * | Remove now-unused directory setters.Stephen Kelly2015-10-072-17/+0
| | |
| * | Set the current dirs on the snapshot before creating the cmMakefile.Stephen Kelly2015-10-077-44/+56
| | | | | | | | | | | | | | | | | | The cmMakefile should get a fully prepared snapshot and not clobber its definitions. It should eventually be able to process list files from any starting-point snapshot, though that is some refactoring away still.
| * | cmMakefile: Move invokation to initialize snapshot.Stephen Kelly2015-10-061-2/+3
| |/
* | Merge topic 'cmake-script-mode-directory-vars'Brad King2015-10-086-0/+35
|\ \ | | | | | | | | | | | | 8bb908b1 Document and test CMAKE_[CURRENT_](BINARY|SOURCE)_DIR in script mode
| * | Document and test CMAKE_[CURRENT_](BINARY|SOURCE)_DIR in script modeTamas Kenez2015-10-066-0/+35
| | |
* | | Merge topic 'cpack-nsis-bitmap'Brad King2015-10-084-0/+38
|\ \ \ | | | | | | | | | | | | | | | | 3758af12 CPackNSIS: Add options to set the bitmap for NSIS installer left side
| * | | CPackNSIS: Add options to set the bitmap for NSIS installer left sideColin Tracey2015-10-064-0/+38
| |/ / | | | | | | | | | | | | set MUI_WELCOMEFINISHPAGE_BITMAP set MUI_UNWELCOMEFINISHPAGE_BITMAP
* | | Merge topic 'update-kwsys'Brad King2015-10-082-2/+3
|\ \ \ | | | | | | | | | | | | | | | | | | | | d0c3bf65 Merge branch 'upstream-kwsys' into update-kwsys bca73252 KWSys 2015-10-06 (d79801bb)
| * \ \ Merge branch 'upstream-kwsys' into update-kwsysBrad King2015-10-062-2/+3
| |\ \ \
| | * | | KWSys 2015-10-06 (d79801bb)KWSys Robot2015-10-062-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Extract upstream KWSys using the following shell commands. $ git archive --prefix=upstream-kwsys/ d79801bb | tar x $ git shortlog --no-merges --abbrev=8 --format='%h %s' 2089567a..d79801bb Brad King (1): e56e3292 Encoding: Support building on Windows with WIN32_LEAN_AND_MEAN Terrell Russell (1): d79801bb SystemTools: Fix spelling of "succeeded" in comments
* | | | | Merge topic 'fix-spelling-typos'Brad King2015-10-086-6/+6
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 06247384 bootstrap: Fix spelling of "succeeded" b6702d40 Modules: Fix spelling of "succeeded" in check messages
| * | | | | bootstrap: Fix spelling of "succeeded"Terrell Russell2015-10-061-1/+1
| | | | | |
| * | | | | Modules: Fix spelling of "succeeded" in check messagesTerrell Russell2015-10-065-5/+5
| |/ / / / | | | | | | | | | | | | | | | Change "succeded" to "succeeded" everywhere.
* | | | | Merge topic 'release-nightly-linux64'Brad King2015-10-081-1/+3
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | b520b1ca Tests: Add a nightly Linux 64-bit binary 26a0b52d Tests: Rename Linux nightly release binary test to Linux32
| * | | | | Tests: Add a nightly Linux 64-bit binaryBrad King2015-10-061-0/+2
| | | | | |
| * | | | | Tests: Rename Linux nightly release binary test to Linux32Brad King2015-10-061-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Distinguish the name from a future 64-bit nightly binary.