summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 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
| | | | | | | | |
* | | | | | | | | Merge topic 'improve-missing-source-file-error'Brad King2010-09-145-7/+27
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | a6b5ead Report missing source files with context of target
| * | | | | | | | | Report missing source files with context of targetBrad King2010-09-135-7/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously we reported only the CMakeLists.txt file in the directory that adds the target.
* | | | | | | | | | Merge topic 'issue_10199'Brad King2010-09-141-4/+10
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 80bad29 Issue 10199: Fixed code documentation and now set <prefix>_WC_ROOT
| * | | | | | | | | | Issue 10199: Fixed code documentation and now set <prefix>_WC_ROOTMarcel Loose2010-09-131-4/+10
| |/ / / / / / / / /
* | | | | | | | | | Merge topic 'style-line-length'Brad King2010-09-145-63/+53
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9d21281 Fix line-too-long style errors 86025d3 file(DOWNLOAD): Fix error message formatting
| * | | | | | | | | | Fix line-too-long style errorsBrad King2010-09-104-5/+8
| | | | | | | | | | |
| * | | | | | | | | | file(DOWNLOAD): Fix error message formattingBrad King2010-09-101-58/+45
| | |_|_|/ / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The SetError method automatically starts the message with the name of the command. Fix up calls to it so that we get "file DOWNLOAD..." instead of "file FILE(DOWNLOAD ...". Also reduce length of long lines containing these calls.
* | | | | | | | | | Merge topic 'CUDAv3.2PathChanges'Brad King2010-09-141-3/+22
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4f0636e Added CUDA 3.2 directory changes. Disable emulation mode for CUDA 3.1+.
| * | | | | | | | | | Added CUDA 3.2 directory changes. Disable emulation mode for CUDA 3.1+.James Bigler2010-09-101-3/+22
| |/ / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | CUDA 3.2 on Windows systems changed the layout of the library paths. This adds the extra directories needed to locate the new files. I also explicitly disable emulation mode for CUDA 3.1+. This feature was deprecated in 3.0 and ultimately removed in 3.1. The script errors out if CUDA_BUILD_EMULATION is turned on. I didn't want to ignore emulation mode (even with a warning - which most people may not even see) and have users confused as to why it wasn't working.
* | | | | | | | | | Merge topic 'bootstrap-cflags'Brad King2010-09-141-1/+1
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | c7aa38f bootstrap: Honor CFLAGS during "make" test (#10545)
| * | | | | | | | | | bootstrap: Honor CFLAGS during "make" test (#10545)Brad King2010-09-101-1/+1
| |/ / / / / / / / /