summaryrefslogtreecommitdiffstats
path: root/Source
Commit message (Collapse)AuthorAgeFilesLines
* 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 'doc-set_target_properties-typo'Brad King2011-09-261-1/+1
|\ | | | | | | | | f8c77fa Fix typo in set_target_properties' documentation.
| * Fix typo in set_target_properties' documentation.Raphael Kubo da Costa2011-09-231-1/+1
| | | | | | | | our -> or
* | KWSys Nightly Date StampKWSys Robot2011-09-261-1/+1
| |
* | KWSys Nightly Date StampKWSys Robot2011-09-251-1/+1
| |
* | KWSys Nightly Date StampKWSys Robot2011-09-241-1/+1
| |
* | KWSys Nightly Date StampKWSys Robot2011-09-231-1/+1
| |
* | KWSys Nightly Date StampKWSys Robot2011-09-221-1/+1
| |
* | Merge topic 'CPackDeb-fakeroot'David Cole2011-09-211-1/+4
|\ \ | | | | | | | | | | | | 49da3bd CPackDeb fix #10325 automagically use fakeroot for DEB if fakeroot is found
| * | CPackDeb fix #10325 automagically use fakeroot for DEB if fakeroot is foundEric NOULARD2011-09-051-1/+4
| | |
* | | KWSys Nightly Date StampKWSys Robot2011-09-211-1/+1
| | |
* | | Merge topic 'file-download-http-error'David Cole2011-09-201-0/+4
|\ \ \ | | | | | | | | | | | | | | | | 09817e9 Make file(DOWNLOAD) fail on http error
| * | | Make file(DOWNLOAD) fail on http errorBrad King2011-09-191-0/+4
| | |/ | |/| | | | | | | | | | | | | | | | | | | If a http server responds with a result code greater than 400 then the data returned from the download probably do not match that expected. Teach file(DOWNLOAD) to fail with an error in this case instead of silently pretending that the download worked. The file(UPLOAD) command already does this.
* | | KWSys Nightly Date StampKWSys Robot2011-09-201-1/+1
|/ /
* | KWSys Nightly Date StampKWSys Robot2011-09-191-1/+1
| |
* | KWSys Nightly Date StampKWSys Robot2011-09-181-1/+1
| |
* | KWSys Nightly Date StampKWSys Robot2011-09-171-1/+1
| |
* | KWSys Nightly Date StampKWSys Robot2011-09-161-1/+1
| |
* | KWSys Nightly Date StampKWSys Robot2011-09-151-1/+1
| |
* | KWSys Nightly Date StampKWSys Robot2011-09-141-1/+1
| |
* | Merge topic 'effective-platform-name'David Cole2011-09-131-1/+5
|\ \ | | | | | | | | | | | | | | | 64c9b31 Xcode: Add test to demonstrate iOS project in Xcode 59a2265 Xcode: Use EFFECTIVE_PLATFORM_NAME reference in ComputeOutputDir
| * | Xcode: Use EFFECTIVE_PLATFORM_NAME reference in ComputeOutputDirDavid Cole2011-09-121-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Caveats apply: only valid when not overriding default value for output dir *and* there is a CMAKE_XCODE_EFFECTIVE_PLATFORMS value. For now, CMAKE_XCODE_EFFECTIVE_PLATFORMS must be defined in each project, or in the cache for a build. Code relying on value of LOCATION and similar properties may not work if it depends on file existence on disk since CMake will not evaluate $(EFFECTIVE_PLATFORM_NAME). This feature is only enabled for making it easier to build Xcode iOS projects where the developer wants to be able to switch easily between simulator and device builds.
* | | KWSys Nightly Date StampKWSys Robot2011-09-131-1/+1
| | |
* | | KWSys Nightly Date StampKWSys Robot2011-09-121-1/+1
| | |
* | | KWSys Nightly Date StampKWSys Robot2011-09-111-1/+1
| | |
* | | KWSys Nightly Date StampKWSys Robot2011-09-101-1/+1
| | |
* | | KWSys Nightly Date StampKWSys Robot2011-09-091-1/+1
| | |
* | | KWSys Nightly Date StampKWSys Robot2011-09-081-1/+1
| | |
* | | Merge topic 'fix-12446-no-cmake-E-build'David Cole2011-09-072-2/+1
|\ \ \ | | | | | | | | | | | | | | | | 96d106a CMake: Remove documentation for -E build (#12446)
| * | | CMake: Remove documentation for -E build (#12446)Matt McCormick2011-09-062-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | The '-E build build_dir' command was created and documented, but then morphed into '--build build_dir' instead, ... and then the -E documentation was never removed. This commit fixes that oversight.
* | | | Merge topic 'fix-12377-xcode-honor-g0'David Cole2011-09-071-7/+28
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | cb22afc Xcode: Honor -g0 to disable debugging (#12377)
| * | | | Xcode: Honor -g0 to disable debugging (#12377)Johan Bjork2011-09-061-7/+28
| | |_|/ | |/| | | | | | | | | | | | | | | | | | This commit changes ExtractFlag to remove all occurences of a flag, and only save the last one. (i.e., the dominant one according to GCC rules)
* | | | Merge topic 'fix-12284-cpack-symlinks'David Cole2011-09-072-1/+3
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | 7b8dcdd CPack: Do not recurse through directory symlinks (#12284) d78bdb2 CMake: Write symlinks to directories as files in archives (#12284)
| * | | | CPack: Do not recurse through directory symlinks (#12284)Johan Björk2011-09-061-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ...when building CPack archive-based packages (.tar.gz and similar) Rather, put the symlinks-to-directories into the archive as files, and expect/trust that the things the symlinks point to are also in the archive.
| * | | | CMake: Write symlinks to directories as files in archives (#12284)Johan Björk2011-09-061-1/+2
| | |/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Do not recurse through directory symlinks when adding files. Recursing through directory symlinks will generate broken archives, i.e., they will look something like this: foo -> bar/bar foo/Info <- Shouldn't be in archive. bar/bar bar/bar/Info
* | | | Merge topic 'fix-12260-fix-valgrind-output-parsing'David Cole2011-09-071-12/+12
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | eb4af16 CTest: Fixed valgrind output parsing (#12260)
| * | | | CTest: Fixed valgrind output parsing (#12260)Johannes Stallkamp2011-09-051-12/+12
| | |/ / | |/| | | | | | | | | | | | | | | | | | Previous code was missing some matches in the output. This commit fixes the regular expressions used for output matching to detect numbers reported with commas in them, too.
* | | | Merge topic 'fix-12370-no-space-in-target-name'David Cole2011-09-071-1/+3
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | e05e0f1 Xcode: No spaces in makefile target names (#12370)
| * | | | Xcode: No spaces in makefile target names (#12370)Johan Björk2011-09-051-1/+3
| |/ / / | | | | | | | | | | | | Don't use spaces for target names in the makefiles.
* | | | Merge topic 'fix-errors-from-cppcheck-issue-12440'David Cole2011-09-075-1/+8
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | d1751fb ccmake: Fix off-by-one memory access error 4868921 Fix file() command descriptor leak on error f47393c CTest: Fix memory leaks on error
| * | | | ccmake: Fix off-by-one memory access errorThomas Jarosch2011-09-021-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Credit goes to "cppcheck". Signed-off-by: Thomas Jarosch <thomas.jarosch@intra2net.com>
| * | | | Fix file() command descriptor leak on errorThomas Jarosch2011-09-021-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Credit goes to "cppcheck". Signed-off-by: Thomas Jarosch <thomas.jarosch@intra2net.com>
| * | | | CTest: Fix memory leaks on errorThomas Jarosch2011-09-023-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Credit goes to "cppcheck". Signed-off-by: Thomas Jarosch <thomas.jarosch@intra2net.com>
* | | | | Merge topic 'fortran-format'David Cole2011-09-079-2/+158
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 90efed6 Xcode: Honor Fortran_FORMAT target and source file property 5c0c635 Fortran: Add support for free- and fixed-form flags 47a0c75 VS: Map Fortran free- and fixed-format flags to IDE options d6e2a06 VS: Map per-source Fortran flags to IDE options
| * | | | | Xcode: Honor Fortran_FORMAT target and source file propertyBrad King2011-09-011-0/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Convert the target property to the IFORT_LANG_SRCFMT build setting. Convert the source property to the per-source COMPILER_FLAGS setting.
| * | | | | Fortran: Add support for free- and fixed-form flagsBrad King2011-08-318-0/+125
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Define a "Fortran_FORMAT" target and source file property. Initialize the target property from a "CMAKE_Fortran_FORMAT" variable. Interpret values "FIXED" and "FREE" to indicate the source file format. Append corresponding flags to the compiler command line.
| * | | | | VS: Map Fortran free- and fixed-format flags to IDE optionsBrad King2011-08-311-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add Intel Fortran flags "-free" and "-fixed" to the table so they appear in the IDE correctly.
| * | | | | VS: Map per-source Fortran flags to IDE optionsBrad King2011-08-311-2/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix the VS generator per-source flag parsing to use the Fortran flag map for Fortran sources.
* | | | | | Merge topic 'fix-zero-check-mistake'David Cole2011-09-071-1/+2
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 57bc42a Xcode: Do not emit the ZERO_CHECK target more than once
| * | | | | | Xcode: Do not emit the ZERO_CHECK target more than onceJohan Bjork2011-09-011-1/+2
| | | | | | |