summaryrefslogtreecommitdiffstats
path: root/Source
Commit message (Collapse)AuthorAgeFilesLines
* Ninja: Add the Ninja generatorPeter Collingbourne2012-02-0213-0/+2861
|
* Add executable with exports flag support to cmLocalGenerator::GetTargetFlagsPeter Collingbourne2012-02-021-0/+10
|
* Add cmSystemTools::TrimWhitespace functionPeter Collingbourne2012-02-022-0/+19
|
* KWSys Nightly Date StampKWSys Robot2012-02-021-1/+1
|
* Merge topic 'rpath-docs-whitespace'David Cole2012-02-011-1/+1
|\ | | | | | | | | 33eee2c Add whitespace after '.' in CMAKE_SKIP_RPATH docs.
| * Add whitespace after '.' in CMAKE_SKIP_RPATH docs.Stephen Kelly2012-01-311-1/+1
| |
* | Merge topic 'imported-target-visibility'David Cole2012-02-018-13/+45
|\ \ | | | | | | | | | | | | | | | f9c1c62 Add test covering imported target scope rules ca39c5c Optionally allow IMPORTED targets to be globally visible
| * | Optionally allow IMPORTED targets to be globally visibleBrad King2012-01-258-13/+45
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Consider the case motivating commit e01cce28 (Allow add_dependencies() on imported targets, 2010-11-19). An imported target references a file generated at build time by a custom target on which it depends. Had the file been built directly using add_library or add_executable its target name would have been visible globally. Therefore the imported target representing the file should be globally visible also. Teach the IMPORTED signature of add_(executable|library) to accept a new "GLOBAL" option to make the imported target visible globally.
* | | Merge topic 'doc-IMPORTED-properties'David Cole2012-02-011-37/+29
|\ \ \ | | | | | | | | | | | | | | | | 7d20619 Clarify IMPORTED_ target property documentation
| * | | Clarify IMPORTED_ target property documentationBrad King2012-01-251-37/+29
| |/ / | | | | | | | | | | | | These properties are meant to be set to tell CMake something, not read to get information from CMake.
* | | KWSys Nightly Date StampKWSys Robot2012-02-011-2/+2
| | |
* | | KWSys Nightly Date StampKWSys Robot2012-01-311-1/+1
| |/ |/|
* | KWSys Nightly Date StampKWSys Robot2012-01-301-1/+1
| |
* | KWSys Nightly Date StampKWSys Robot2012-01-291-1/+1
| |
* | KWSys Nightly Date StampKWSys Robot2012-01-281-1/+1
| |
* | KWSys Nightly Date StampKWSys Robot2012-01-271-1/+1
| |
* | KWSys Nightly Date StampKWSys Robot2012-01-261-1/+1
|/
* Merge topic 'uninitialized-var-in-if'David Cole2012-01-251-0/+1
|\ | | | | | | | | 54fd9e3 fix uninitialized var in if(NOT foo bar STREQUAL "foo bar")
| * fix uninitialized var in if(NOT foo bar STREQUAL "foo bar")Rolf Eike Beer2012-01-221-0/+1
| | | | | | | | Also adds test to verify this.
* | Merge topic 'install-command-cleanup'David Cole2012-01-252-101/+99
|\ \ | | | | | | | | | | | | | | | | | | 982b5d9 cmInstallCommand: Fix line length for style a64b618 cmInstallCommand: Remove duplicated sentence from docs 01ddef8 cmInstallCommand: Fix indentation error
| * | cmInstallCommand: Fix line length for styleBrad King2012-01-171-9/+9
| | | | | | | | | | | | | | | After indentation was fixed by a previous commit some lines became too long. Re-wrap to shorten them.
| * | cmInstallCommand: Remove duplicated sentence from docsYury G. Kudryashov2012-01-171-3/+1
| | | | | | | | | | | | | | | install(TARGETS ...) documentation described twice what happens on non-DLL systems.
| * | cmInstallCommand: Fix indentation errorYury G. Kudryashov2012-01-171-98/+98
| | | | | | | | | | | | A large block of code was indented 2 spaces less than it should.
* | | KWSys Nightly Date StampKWSys Robot2012-01-251-1/+1
| | |
* | | KWSys Nightly Date StampKWSys Robot2012-01-241-1/+1
| | |
* | | KWSys Nightly Date StampKWSys Robot2012-01-231-1/+1
| | |
* | | KWSys Nightly Date StampKWSys Robot2012-01-221-1/+1
| | |
* | | KWSys Nightly Date StampKWSys Robot2012-01-211-1/+1
| |/ |/|
* | KWSys Nightly Date StampKWSys Robot2012-01-201-1/+1
| |
* | KWSys Nightly Date StampKWSys Robot2012-01-191-1/+1
| |
* | KWSys Nightly Date StampKWSys Robot2012-01-181-1/+1
| |
* | Merge topic 'link-shared-depend-cycle-issue-12647'David Cole2012-01-172-3/+23
|\ \ | | | | | | | | | | | | 8e756d2 Tolerate cycles in shared library link interfaces (#12647)
| * | Tolerate cycles in shared library link interfaces (#12647)Brad King2012-01-132-3/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since commit 183b9509 (Follow all dependencies of shared library private dependencies, 2011-12-14) we honor LINK_INTERFACE_LIBRARIES when following dependent shared libraries. The link interface properties may form a cycle if set incorrectly by a project. Furthermore, the property LINK_DEPENDENT_LIBRARIES may form a cycle if set incorrectly by hand (though CMake should never generate one). In either case, do not follow the cycle forever when following the dependent shared library closure. We only need to add dependency edges to the constraint graph once. Add "LinkInterfaceLoop" test to cover this case.
* | | Merge topic 'fixSymlinkInZIP'David Cole2012-01-171-3/+7
|\ \ \ | | | | | | | | | | | | | | | | 768cf91 Do not add the content of a file if it's a symlink.
| * | | Do not add the content of a file if it's a symlink.Eric NOULARD2012-01-131-3/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This wasn't necessary for TAR-like (TGZ, TBZ2, etc...) archive because for those the size was 0. Either there is an error in upstream libarchive concerning the size or we should not rely on size of the entry for adding content.
* | | | Merge topic 'compiler-version'David Cole2012-01-171-0/+9
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 0df1942 Detect SGI MIPSpro compiler version with its id a5e892c Document compiler version macro formats used for detection d7c6f41 Detect HP compiler version with its id 3dd9fa9 Detect SunPro compiler version with its id c198730 Detect Watcom compiler version with its id 5899b98 Detect Clang compiler version with its id b8cfa65 Detect PGI compiler version with its id 6dae666 Detect IBM XL compiler version with its id 4080d55 Detect Borland compiler version with its id 2cc205a Detect Intel compiler version with its id (#11937) a6d83cc Detect MSVC compiler version with its id a662855 Detect GNU compiler version with its id (#6251) fa7141f Add framework to detect compiler version with its id (#12408)
| * | | | Add framework to detect compiler version with its id (#12408)Brad King2011-12-071-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Teach CMakePlatformId.h to construct an "INFO:compiler_version[]" string literal from macros COMPILER_VERSION_(MAJOR|MINOR|PATCH|TWEAK) to be defined in CMake(C|CXX)CompilerId.(c|cpp) for each compiler. Provide conversion macros DEC() and HEX() to decode decimal or hex digits from integer values. Parse the version out of the compiler id binary along with the other INFO values already present. Store the result in variable CMAKE_<LANG>_COMPILER_VERSION in the format "major[.minor[.patch[.tweak]]]". Save the value persistently in CMake(C|CXX)Compiler.cmake in the build tree. Document the variable for internal use since we do not set it everywhere yet. Report the compiler version on the compiler id result line e.g. The C compiler identification is GNU 4.5.2 Report CMAKE_(C|CXX)_COMPILER_(ID|VERSION) in SystemInformation test.
* | | | | Merge topic 'vs10-fix-pdbname-issue-12328'David Cole2012-01-171-1/+1
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | 655a7dd VS10: Fix /pdb option vcxproj element name (#12328)
| * | | | | VS10: Fix /pdb option vcxproj element name (#12328)Brad King2012-01-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The compiler tool uses "ProgramDataBaseFileName" but the linker tool uses just "ProgramDataBaseFile". Fix the generator accordingly.
* | | | | | KWSys Nightly Date StampKWSys Robot2012-01-171-1/+1
| | | | | |
* | | | | | KWSys Nightly Date StampKWSys Robot2012-01-161-1/+1
| | | | | |
* | | | | | KWSys Nightly Date StampKWSys Robot2012-01-151-1/+1
| | | | | |
* | | | | | KWSys Nightly Date StampKWSys Robot2012-01-141-1/+1
| |_|_|_|/ |/| | | |
* | | | | KWSys Nightly Date StampKWSys Robot2012-01-131-1/+1
| | | | |
* | | | | KWSys Nightly Date StampKWSys Robot2012-01-121-1/+1
| |_|_|/ |/| | |
* | | | KWSys Nightly Date StampKWSys Robot2012-01-111-1/+1
| |_|/ |/| |
* | | KWSys Nightly Date StampKWSys Robot2012-01-101-1/+1
|/ /
* | Merge topic 'early-exit-loop'David Cole2012-01-091-0/+1
|\ \ | | | | | | | | | | | | c959725 Exit the loop when we have determined the language.
| * | Exit the loop when we have determined the language.Stephen Kelly2012-01-081-0/+1
| | |
* | | Merge topic 'fix-docs-typo'David Cole2012-01-091-2/+2
|\ \ \ | | | | | | | | | | | | | | | | 9bffb3f Fix typos arguement -> argument.