summaryrefslogtreecommitdiffstats
path: root/Source
Commit message (Collapse)AuthorAgeFilesLines
* VS10: Use expected values for UseOfMfc (#11213)David Cole2011-11-041-4/+12
| | | | | | | | | | | | | | Use expected values for the UseOfMfc xml element in VS 10 .vcxproj files. CMAKE_MFC_FLAG=1 maps to "Static" CMAKE_MFC_FLAG=2 maps to "Dynamic" all other values map to "false" Thanks to Randy Schott and McBen for their patches which served as inspiration and motivation for getting this done. See also http://public.kitware.com/Bug/view.php?id=11224
* KWSys: Fix Doxygen warningsBrad King2011-10-241-2/+2
| | | | Author: Nicolas Despres <nicolas.despres@gmail.com>
* KWSys Nightly Date StampKWSys Robot2011-10-241-1/+1
|
* KWSys Nightly Date StampKWSys Robot2011-10-231-1/+1
|
* KWSys Nightly Date StampKWSys Robot2011-10-221-1/+1
|
* KWSys Nightly Date StampKWSys Robot2011-10-211-1/+1
|
* KWSys Nightly Date StampKWSys Robot2011-10-201-1/+1
|
* KWSys Nightly Date StampKWSys Robot2011-10-191-1/+1
|
* Merge topic 'DetectEclipseVersion'David Cole2011-10-182-21/+45
|\ | | | | | | | | | | | | | | dcd2459 Eclipse: better message when Eclipse version could not be determined b4b2fc3 Eclipse: don't create VirtualFolders if not supported 5b200e3 Detect whether the current Eclipse version supports VirtualFolders 4974ec9 Eclipse generator: detect Eclipse version
| * Eclipse: don't create VirtualFolders if not supportedAlex Neundorf2011-10-151-21/+24
| | | | | | | | | | | | | | | | Eclipse versions before 3.6 (Helios) did not support VirtualFolders yet (#12479), so only create them if Eclipse is new enough. Alex
| * Detect whether the current Eclipse version supports VirtualFoldersAlex Neundorf2011-10-152-0/+21
| | | | | | | | | | | | | | | | VirtualFolders are supported since 3.6 (Helios). Next patch will be to actually make use of the new flag SupportsVirtualFolders. Alex
* | Merge topic 'fix-12517-ctest-crash'David Cole2011-10-181-2/+2
|\ \ | | | | | | | | | | | | 7041cd6 CTest: Fix crash when variables are not defined
| * | CTest: Fix crash when variables are not definedDavid Cole2011-10-141-2/+2
| | | | | | | | | | | | Avoiding dereference of NULL pointers is always good.
* | | Merge topic 'vs10-nologo-issue-12504'David Cole2011-10-181-3/+3
|\ \ \ | | | | | | | | | | | | | | | | 25116a3 Fix CMAKE_VERBOSE_MAKEFILE for VS10 vcxproj files (#12504)
| * | | Fix CMAKE_VERBOSE_MAKEFILE for VS10 vcxproj files (#12504)Niels Dekker2011-10-111-3/+3
| | | |
* | | | KWSys Nightly Date StampKWSys Robot2011-10-181-1/+1
| | | |
* | | | KWSys Nightly Date StampKWSys Robot2011-10-171-1/+1
| | | |
* | | | KWSys Nightly Date StampKWSys Robot2011-10-161-1/+1
| |_|/ |/| |
* | | KWSys Nightly Date StampKWSys Robot2011-10-151-1/+1
| | |
* | | KWSys Nightly Date StampKWSys Robot2011-10-141-1/+1
| |/ |/|
* | KWSys Nightly Date StampKWSys Robot2011-10-131-1/+1
| |
* | KWSys Nightly Date StampKWSys Robot2011-10-121-1/+1
|/
* Merge topic 'ninja-generator-prep'David Cole2011-10-1111-152/+184
|\ | | | | | | | | | | | | | | | | | | | | | | | | 32f8437 Fix line-too-long style violations 029ab31 Constify XCode generator getters to match cmGlobalGenerator fec4b63 Fix configuration-dependent flag lookup in cmLocalGenerator::GetTargetFlags 557956f Introduce a cmGlobalGenerator::ResolveLanguageCompiler function 5b114c9 Introduce a cmLocalGenerator::ConvertToIncludeReference function 903d914 Make cmLocalGenerator::ConvertToLinkReference virtual 8a0eb78 Constify many getters of cmGlobalGenerator. 4532d36 Add const versions of some getters. 3db2973 Refactor TargetTypeNames.
| * Fix line-too-long style violationsBrad King2011-10-102-15/+16
| | | | | | | | | | | | Commit 8a0eb78f (Constify many getters of cmGlobalGenerator, 2011-03-26) added const qualifiers to many cmGlobalGenerator methods but left the resulting lines beyond our style's limit of 79 characters.
| * Constify XCode generator getters to match cmGlobalGeneratorBrad King2011-10-071-2/+2
| | | | | | | | | | | | | | Commit 8a0eb78f (Constify many getters of cmGlobalGenerator, 2011-03-26) added const qualifiers to many cmGlobalGenerator methods. Fix the signature of the virtual function overrides in cmGlobalXCodeGenerator to match.
| * Fix configuration-dependent flag lookup in cmLocalGenerator::GetTargetFlagsPeter Collingbourne2011-10-021-5/+22
| | | | | | | | | | | | | | Specifically, perform configuration-dependent lookup of STATIC_LIBRARY_FLAGS for static libraries, and use the correct prefix for configuration-dependent lookup of LINK_FLAGS (i.e. "LINK_FLAGS_", as opposed to the value of the LINK_FLAGS property).
| * Introduce a cmGlobalGenerator::ResolveLanguageCompiler functionPeter Collingbourne2011-10-023-69/+81
| | | | | | | | | | | | It is factored out of cmGlobalUnixMakefileGenerator3::EnableLanguage, and may be used by other generators to resolve CMAKE_*_COMPILER settings.
| * Introduce a cmLocalGenerator::ConvertToIncludeReference functionPeter Collingbourne2011-10-022-2/+11
| | | | | | | | | | This provides a mechanism for the local generator to override how header search paths are generated.
| * Make cmLocalGenerator::ConvertToLinkReference virtualPeter Collingbourne2011-10-021-1/+1
| | | | | | | | | | This provides a mechanism for the local generator to override how library search paths are generated.
| * Constify many getters of cmGlobalGenerator.Nicolas Despres2011-10-022-27/+27
| |
| * Add const versions of some getters.Nicolas Despres2011-10-022-0/+3
| |
| * Refactor TargetTypeNames.Nicolas Despres2011-10-025-45/+35
| | | | | | | | | | | | Make it a static method instead of an array. It is safer for the type checking and if we add a new target type we will be warned to add a case to the switch.
* | Merge topic 'DependencyScanningForASM'David Cole2011-10-111-1/+1
|\ \ | | | | | | | | | | | | e36a1be fix #12262: use the C dependency scanner also for ASM files
| * | fix #12262: use the C dependency scanner also for ASM filesAlex Neundorf2011-10-051-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Files for the ASM language are those assembler files which are processed by the C/CXX compiler, and they may contain preprocessor directives, so run the C dependency scanner also on them. Alex
* | | Merge topic 'CodeBlocks-quoting'David Cole2011-10-111-1/+3
|\ \ \ | | | | | | | | | | | | | | | | 240d39a Fix XML safety issue with adding preprocessor defines in CodeBlocks project.
| * | | Fix XML safety issue with adding preprocessor defines in CodeBlocks project.Clinton Stimpson2011-10-051-1/+3
| | | |
* | | | Merge topic 'HandleCMAKE_CXX_COMPILER_ARG1InEclipse'David Cole2011-10-111-2/+11
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | 3df49dc fix #12392: handle CMAKE_CXX_COMPILER_ARG1 for Eclipse projects
| * | | | fix #12392: handle CMAKE_CXX_COMPILER_ARG1 for Eclipse projectsAlex Neundorf2011-10-011-2/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | CMAKE_CXX/C_COMPILER_ARG1 have to be used for finding the include dirs and builtin macros, so Eclipse can do code completion Alex
* | | | | Merge topic 'refactor-find-search-paths'David Cole2011-10-115-22/+10
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | b0cd630 Refactor find_* command final path list computation
| * | | | | Refactor find_* command final path list computationBrad King2011-09-235-22/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | All find_* commands re-root the list of paths and then add trailing slashes. Factor this pair of calls out into a dedicated method. The new method would be the only caller to AddTrailingSlashes, so subsume that method into it.
* | | | | | KWSys Nightly Date StampKWSys Robot2011-10-111-1/+1
| | | | | |
* | | | | | KWSys Nightly Date StampKWSys Robot2011-10-101-1/+1
| | | | | |
* | | | | | KWSys Nightly Date StampKWSys Robot2011-10-091-1/+1
| | | | | |
* | | | | | KWSys Nightly Date StampKWSys Robot2011-10-081-1/+1
| | | | | |
* | | | | | KWSys Nightly Date StampKWSys Robot2011-10-071-1/+1
| | | | | |
* | | | | | KWSys Nightly Date StampKWSys Robot2011-10-061-1/+1
| | | | | |
* | | | | | KWSys Nightly Date StampKWSys Robot2011-10-051-1/+1
| |_|_|/ / |/| | | |
* | | | | KWSys Nightly Date StampKWSys Robot2011-10-041-1/+1
| | | | |
* | | | | Merge topic 'fix_intel_vs_version'David Cole2011-10-031-4/+4
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 8f1ee51 Also, check for 11.x as an intel fortran version. 0cd3606 Use version 11.0 for 12.x and 9.10 for 10.x intel versions to fix 12.1 vsIDE.
| * | | | | Also, check for 11.x as an intel fortran version.Bill Hoffman2011-09-301-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As Dave Cole pointed out the previous commit only checked for 10.x and 12.x. 11.0 was accounted for, but 11.1, 11.2 and 11.3 were not. This patch should make it work for those versions as well. I did a web check and there are 11.0, 11.1, 11.2 and 11.3 versions from Intel. I assume if 12.x uses 11.0 as the version in the .vfproj file, then all of the 11.x versions would as well.