summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* APPEND and not-APPEND mode of feature_summary() were swappedAlex Neundorf2010-09-211-2/+2
| | | | Alex
* Merge topic 'FindBoost_bugfixes'Brad King2010-09-211-81/+302
|\ | | | | | | | | | | | | | | | | | | | | | | | | b8b9a32 FindBoost.cmake: Fix library search path glitch introduced in earlier commit 90c16d8 FindBoost.cmake: Implements 11160 95ff120 FindBoost.cmake: Fixes 10436 5cce138 FindBoost.cmake: Fixes 11121 0239041 FindBoost.cmake: Fixes 11246 d4900c2 FindBoost.cmake: Fix compiling against a boost source tree 6ed7d99 FindBoost.cmake: Add Boost_NO_SYSTEM_PATHS option 16b0eb5 FindBoost.cmake: Miscellaneous changes and refactoring 5e6f0f0 FindBoost.cmake fixes for issues 11204 & 8529
| * FindBoost.cmake: Fix library search path glitch introduced in earlier commitPhilip Lowman2010-09-201-23/+24
| |
| * FindBoost.cmake: Implements 11160Philip Lowman2010-09-181-1/+32
| | | | | | | | | | | | | | | | | | | | | | | | Add Boost_REALPATH option for people packaging Boost with their app: Boost_REALPATH Resolves symbolic links for discovered boost libraries to assist with packaging. For example, instead of Boost_SYSTEM_LIBRARY_RELEASE being resolved to "/usr/lib/libboost_system.so" it would be "/usr/lib/libboost_system.so.1.42.0" instead. This does not affect linking and should not be enabled unless the user needs this information.
| * FindBoost.cmake: Fixes 10436Philip Lowman2010-09-181-0/+2
| | | | | | | | | | Add an additional library filename permutation which fixes library detection for some custom builds of Boost.
| * FindBoost.cmake: Fixes 11121Philip Lowman2010-09-181-0/+32
| | | | | | | | Add support for finding Boost.Thread with special THREADAPI in filename
| * FindBoost.cmake: Fixes 11246Philip Lowman2010-09-181-1/+1
| | | | | | | | | | FindBoost can find shared libraries (.so) in rare circumstances even when Boost_USE_STATIC_LIBS is set
| * FindBoost.cmake: Fix compiling against a boost source treePhilip Lowman2010-09-181-4/+1
| | | | | | | | This fixes issues 11192 & 11187.
| * FindBoost.cmake: Add Boost_NO_SYSTEM_PATHS optionPhilip Lowman2010-09-181-25/+54
| | | | | | | | This fixes several duplicate issues in the tracker (7725, 11019, 8412)
| * FindBoost.cmake: Miscellaneous changes and refactoringPhilip Lowman2010-09-181-15/+24
| | | | | | | | | | | | * Add a warning if the user sets Boost_ROOT which is not correct * Clarify directions to the user for viewing debugging messages * Move the CMAKE_FIND_LIBRARY_SUFFIXES tweak outside of a for loop
| * FindBoost.cmake fixes for issues 11204 & 8529Philip Lowman2010-09-181-39/+159
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixed issue 11204: FindBoost.cmake had trouble discovering libraries when both -sgd and -gd libraries were available by adding a new option Boost_USE_STATIC_RUNTIME. Backwards compatibility of searching for first -gd and then -sgd on WIN32 is maintained unless the user sets Boost_COMPAT_STATIC_RUNTIME to false (or they have set Boost_USE_STATIC_RUNTIME). * Fixed issue 8529: FindBoost was unable to detect boost libraries compiled against STLport, by reworking the way the Boost ABI tag is calculated. There are additional ABI tag options available now as well. * Boost_DEBUG now reports the full list of filenames being searched for when find_library is called.
* | Merge topic 'fix-9963'Brad King2010-09-212-8/+27
|\ \ | | | | | | | | | | | | | | | | | | | | | a798bb7 Avoid CustomCommand test failure on VS71 (#9963) 9b4ab06 Avoid CustomCommand test failure on VS71 (#9963) 9d2e648 No extra spaces in CustomCommand test (#9963) 269a4b8 Enable calling commands with : in argv[1] (#9963)
| * | Avoid CustomCommand test failure on VS71 (#9963)David Cole2010-09-201-1/+5
| | | | | | | | | | | | | | | | | | | | | Test still failing on dash1.kitware. Give up on testing the new arg on MSVC71. Test it with newer nmakes instead. All other dashboards are fine with -DPATH=c:/posix/path as the first arg, so keep it except when MSVC71 is true.
| * | Avoid CustomCommand test failure on VS71 (#9963)David Cole2010-09-141-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The new first arg in the test is the critical one to prove that the new NMake specific code works. The additional colons in the middle of the arg stream work fine everywhere else, but not on dash1.kitware with Visual Studio 7.1. Just avoid the failure for now by removing the unnecessary new args from the test.
| * | No extra spaces in CustomCommand test (#9963)David Cole2010-09-122-6/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The nightly dashboard showed that the following platforms had difficulties dealing with "bin dir" and/or "check command line" as directory and file names: AIX Borland 5.5, 5.6 and 5.8 IRIX NMake 6.0 OpenBSD VS 7.1 Watcom Re-visit later, after the release, to use spaces in the bin dir and in the target name where possible.
| * | Enable calling commands with : in argv[1] (#9963)David Cole2010-09-103-9/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The solution seems hackish, but it works: for NMake only, prepend a no-op command before each real command that begins with ". This is really a work-around for an NMake problem. When a command begins with ", nmake truncates the first argument to the command after the first : in that arg. It has a parsing problem. Workaround..., hackish..., but it should solve the issue for #9963 and its related friends. Also, modify the CustomCommand test to replicate the problem reported in issue #9963. Before the NMake specific code change, the test failed. Now, it passes. Ahhhhhh.
* | | Merge topic 'xcode-ARCHS-quoting'Brad King2010-09-212-2/+4
|\ \ \ | | | | | | | | | | | | | | | | | | | | a8ded53 Xcode: Quote string values containing '$' (#11244) 0790af3 Xcode: Avoid trailing space in ARCHS list (#11244)
| * | | Xcode: Quote string values containing '$' (#11244)Mikkel Krautz2010-09-201-1/+1
| | | | | | | | | | | | | | | | | | | | Allow use of $(STANDARD_32BIT_ARCHS) as CMAKE_OSX_ARCHITECTURES. The expanded value must remain a single string.
| * | | Xcode: Avoid trailing space in ARCHS list (#11244)Mikkel Krautz2010-09-201-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | With CMAKE_OSX_ARCHITECTURE settings such as $(ARCHS_STANDARD_32BIT), the space inserted by the for loop would confuse Xcode if quoted. In this particular example, what would be output would be: ARCHS = "$(ARCHS_STANDARD_32BIT) "; The Xcode UI does not recognize this as the built-in "Standards 32-bit" architecture setting unless the space is removed.
* | | | Merge topic 'compaq-fortran-moddir-flag'Brad King2010-09-211-0/+2
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | c04af06 Add module-dir flag for Compaq Visual Fortran (#11248)
| * | | | Add module-dir flag for Compaq Visual Fortran (#11248)Brad King2010-09-201-0/+2
| | | | | | | | | | | | | | | | | | | | This compiler uses "-module:" to specify where modules should be placed.
* | | | | Merge topic 'FindMPI-f-flags'Brad King2010-09-211-1/+1
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | a56969f FindMPI: Recoginze -f flags from mpicc (#10771)
| * | | | | FindMPI: Recoginze -f flags from mpicc (#10771)Brad King2010-09-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Parse compiler flags like "-fmessage-length=0 -fstack-protector -funwind-tables -fasynchronous-unwind-tables -fno-strict-aliasing" from the output of "mpicc -show". We already handle preprocessor definition arguments like -DUSE_STDARG. Honor '-f' flags too.
* | | | | | Merge topic '11249_FindFLEX'Brad King2010-09-211-1/+5
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 38691d9 FindFLEX.cmake: Fix issue 11249
| * | | | | | FindFLEX.cmake: Fix issue 11249Philip Lowman2010-09-201-1/+5
| | |_|_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | FindFLEX no longer sense a CMake fatal error if executing "flex --version" fails unless the REQUIRED argument was specified.
* | | | | | Merge topic '11136'Brad King2010-09-211-1/+1
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 7016fae Fix 11136: [patch] FindThreads.cmake documents the wrong variable
| * | | | | | Fix 11136: [patch] FindThreads.cmake documents the wrong variablePhilip Lowman2010-09-181-1/+1
| |/ / / / / | | | | | | | | | | | | | | | | | | Fixed documentation to be correct.
* | | | | | Merge topic 'document-IMPORTED_NO_SONAME'Brad King2010-09-211-0/+18
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 8f96818 Document IMPORTED_NO_SONAME target property
| * | | | | | Document IMPORTED_NO_SONAME target propertyBrad King2010-09-171-0/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Commit fd37a6ec (Better linker search path computation, 2008-02-21) added this property but did not document it. Add the documentation.
* | | | | | | Merge topic 'fix-ccmake-search'Brad King2010-09-212-12/+7
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 5d7c3c0 ccmake: Fix search with '/'
| * | | | | | | ccmake: Fix search with '/'Brad King2010-09-162-12/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Commit 7a18dd8e (Add searching of variables, 2003-03-07) added method cmCursesMainForm::JumpToCacheEntry to search for cache entries whose names match a given search string. The method also had a useless argument "int idx" probably left from earlier development iterations and hard-coded in all calls to the value '-1'. The method compared this argument to the "NumberOfVisibleEntries" member which at the time was of type "int" also. Commit ff1f8d0b (Fix or cast more integer conversions in cmake, 2010-06-29) changed the type of "NumberOfVisibleEntries" to size_t to fix other integer conversion warnings. An unsigned type makes sense given the purpose of the member. However, this caused the '-1' signed value to be converted to a large unsigned value in the above-mentioned comparison, leading to incorrect behavior. Fix the problem by removing the useless argument and the comparison.
* | | | | | | | Merge topic 'fix_release_tags'Brad King2010-09-2117-221/+21
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4a67481 Update release scripts. 7d148d8 Fix the name of the variable being tested. 297be5b add next as an orgin based branch, and not a tag. 187976b Fix release scripts to be able to build releases from tags.
| * | | | | | | | Update release scripts.David Cole2010-09-1514-218/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove scripts for machines that no longer build releases. Update comments in README.
| * | | | | | | | Fix the name of the variable being tested.Bill Hoffman2010-09-141-1/+1
| | | | | | | | |
| * | | | | | | | add next as an orgin based branch, and not a tag.Bill Hoffman2010-09-131-1/+1
| | | | | | | | |
| * | | | | | | | Fix release scripts to be able to build releases from tags.Bill Hoffman2010-09-103-3/+8
| | | | | | | | |
* | | | | | | | | Merge topic 'fix_line_length_issues'Brad King2010-09-215-26/+59
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3901174 Fix KWStyle line length issues.
| * | | | | | | | | Fix KWStyle line length issues.Bill Hoffman2010-09-155-26/+59
| | | | | | | | | |
* | | | | | | | | | KWSys Nightly Date StampKWSys Robot2010-09-211-1/+1
| | | | | | | | | |
* | | | | | | | | | KWSys Nightly Date StampKWSys Robot2010-09-201-1/+1
| | | | | | | | | |
* | | | | | | | | | KWSys Nightly Date StampKWSys Robot2010-09-191-1/+1
| |_|_|_|/ / / / / |/| | | | | | | |
* | | | | | | | | KWSys Nightly Date StampKWSys Robot2010-09-181-1/+1
| | | | | | | | |
* | | | | | | | | KWSys Nightly Date StampKWSys Robot2010-09-171-1/+1
| | | | | | | | |
* | | | | | | | | KWSys Nightly Date StampKWSys Robot2010-09-161-1/+1
|/ / / / / / / /
* | | | | | | | KWSys Nightly Date StampKWSys Robot2010-09-151-1/+1
| |_|_|_|_|/ / |/| | | | | |
* | | | | | | Merge topic ↵Brad King2010-09-143-31/+62
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 'resolve/fix_target_name_with_dot_vs10/allow_upper_case_cpp_and_others' eccc7d5 Merge branch 'allow_upper_case_cpp_and_others' into resolve/fix_target_name_with_dot_vs10/allow_upper_case_cpp_and_others ed37fc3 VS2010: Set IntDir for utility and global targets. e79e412 VS2010: Honor PROJECT_LABEL target property (#10611) 530ade6 Fix targets with . in the name for VS 10 IDE.
| * \ \ \ \ \ \ Merge branch 'allow_upper_case_cpp_and_others' into ↵Brad King2010-09-142-1/+8
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | resolve/fix_target_name_with_dot_vs10/allow_upper_case_cpp_and_others Conflicts: Tests/CxxOnly/CMakeLists.txt
| * | | | | | | | VS2010: Set IntDir for utility and global targets.David Cole2010-09-131-28/+45
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | VS2010 uses IntDir as the location for writing log files for what happens during custom build steps. With no IntDir settings, all ExternalProject usage within the same CMakeLists.txt file would result in multiple utility targets all trying to use the same custom build log files. With parallel builds, they would try to use them simultaneously and result in file access errors, preventing the builds from completing successfully. Now each utility target has its own IntDir setting, and so, its own custom build rule log files.
| * | | | | | | | VS2010: Honor PROJECT_LABEL target property (#10611)David Cole2010-09-092-0/+15
| | | | | | | | |
| * | | | | | | | Fix targets with . in the name for VS 10 IDE.Bill Hoffman2010-09-062-5/+4
| | | | | | | | |