summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Suppress -Wcast-align in curl and bzip2Brad King2010-09-102-0/+7
| | | | Trust upstream developers of third-party code.
* KWSys: Suppress -Wcast-align warning in MD5.cBrad King2010-09-101-0/+9
| | | | | The code does contain a cast that increases alignment but only in a conditional that verifies the input is sufficiently aligned.
* KWSys Nightly Date StampKWSys Robot2010-09-101-1/+1
|
* Revert commit: CMake: quote ':' in Windows NMake Makefiles (#9963) -- it was ↵David Cole2010-09-091-2/+1
| | | | not the right fix and caused mucho other problemo
* KWSys Nightly Date StampKWSys Robot2010-09-091-1/+1
|
* CMake: quote ':' in Windows NMake Makefiles (#9963)David Cole2010-09-081-1/+2
|
* Merge topic 'allow_upper_case_cpp_and_others'Brad King2010-09-084-3/+13
|\ | | | | | | | | | | | | | | 7944e4e Allow testing of .CPP on WIN32 as it is a case insensitive OS and should work. ba0a890 Only test for .CPP on Microsoft compilers which will handle .CPP as c++. d26cd46 Only use .CPP .CXX and .C++ do not work by default with g+++. ced61f5 Let CMake recognize .CPP .CXX and .C++ as c++ files.
| * Allow testing of .CPP on WIN32 as it is a case insensitive OS and should work.Bill Hoffman2010-09-071-1/+1
| |
| * Only test for .CPP on Microsoft compilers which will handle .CPP as c++.Bill Hoffman2010-09-062-1/+8
| |
| * Only use .CPP .CXX and .C++ do not work by default with g+++.Bill Hoffman2010-09-025-7/+3
| |
| * Let CMake recognize .CPP .CXX and .C++ as c++ files.Bill Hoffman2010-09-026-3/+10
| |
* | Merge topic 'FindwxWidgets-fixes'Brad King2010-09-082-30/+39
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | ede24f8 ENH #8993: FindwxWidgets add support for wx-config custom options. 3dbeeb7 BUG #8184: Fixed FindwxWidgets wrong order of default libs for MinGW. f46712e BUG #11123: Generic include dir should come after config specific one. 6cb14eb STYLE: Clarified/Fixed documentation of UsewxWidgets. 36c15a2 BUG #10658: FindwxWidgets USE_FILE should not include .cmake extension.
| * | ENH #8993: FindwxWidgets add support for wx-config custom options.Miguel A. Figueroa-Villanueva2010-09-051-5/+15
| | | | | | | | | | | | | | | Added suport for setting a custom toolkit, refix, etc. when using wx-config.
| * | BUG #8184: Fixed FindwxWidgets wrong order of default libs for MinGW.Miguel A. Figueroa-Villanueva2010-09-012-5/+7
| | | | | | | | | | | | | | | Also fixed usage sample in comments, which can be misleading for MinGW users as demonstrated by mantis issue #10089.
| * | BUG #11123: Generic include dir should come after config specific one.Miguel A. Figueroa-Villanueva2010-09-011-10/+10
| | |
| * | STYLE: Clarified/Fixed documentation of UsewxWidgets.Miguel A. Figueroa-Villanueva2010-09-011-10/+7
| | |
| * | BUG #10658: FindwxWidgets USE_FILE should not include .cmake extension.Miguel A. Figueroa-Villanueva2010-09-011-1/+1
| | | | | | | | | | | | | | | The wxWidgets_USE_FILE variable to be used with the include command should be set to UsewxWidgets; not UsewxWidgets.cmake.
* | | Merge topic 'fix-10417'Brad King2010-09-082-3/+24
|\ \ \ | | | | | | | | | | | | | | | | e93a4b4 Avoid adding self as prerequisite. (#10417)
| * | | Avoid adding self as prerequisite. (#10417)David Cole2010-09-082-3/+24
| | | | | | | | | | | | | | | | Thanks to Clinton Stimpson for the patch.
* | | | Merge topic 'fix-9284'Brad King2010-09-081-0/+7
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | 88fed66 Make bundle items writable before fixup (#9284)
| * | | | Make bundle items writable before fixup (#9284)Mike McQuaid2010-09-081-0/+7
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | This ensures that any bundle items are made user writable before any attempt is made to alter them using install_name_tool. This is because MacPorts/Fink/Homebrew don't install libraries as writable. This fix is needed to allow fixup_bundle_item to work correctly when ingesting libraries installed by these package managers.
* | | | Merge topic 'hpux-required-runtime-path-10571'Brad King2010-09-081-0/+2
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | 11a917d HP-UX: Always add /usr/lib to rpath (#10571)
| * | | | HP-UX: Always add /usr/lib to rpath (#10571)Brad King2010-09-071-0/+2
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | Set CMAKE_PLATFORM_REQUIRED_RUNTIME_PATH in the HP-UX platform file to tell CMake to pass -Wl,+b,/usr/lib no matter whether RPATH is enabled or not. This corrects the behavior of -Wl,+nodefaultrpath to look in this default library path as documented.
* | | | Merge topic '11186'Brad King2010-09-081-3/+8
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | c167595 Merge patch for detecting gdk-pixbuf library
| * | | | Merge patch for detecting gdk-pixbuf libraryPhilip Lowman2010-09-041-3/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The gdk-pixbuf library was split off from core GTK in 2.21 so it could be used separately by people outside GTK. Now FindGTK searches and adds it to the library/include list. Thanks to Vincent Untz for the patch and Ricardo Cruz for the heads up.
* | | | | Merge topic 'vs-project-groups'Brad King2010-09-0812-2/+292
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | e6ac0aa Add FOLDER target property, for IDEs (#3796)
| * | | | | Add FOLDER target property, for IDEs (#3796)David Cole2010-09-0312-2/+292
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This work was started from a patch by Thomas Schiffer. Thanks, Thomas! See the newly added documentation of the FOLDER target property for details. Also added global properties, USE_FOLDERS and PREDEFINED_TARGETS_FOLDER. See new docs here, too. By default, the FOLDER target property is used to organize targets into folders in IDEs that have support for such organization. This commit adds "solution folder" support to the Visual Studio generators. Currently works with versions 7 through 10. Also, use the new FOLDER property in the ExternalProject test and in the CMake project itself.
* | | | | | Merge topic 'watcom_fixes'Brad King2010-09-081-3/+16
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3b7da53 Fix for bug 10388, fix various default flags.
| * | | | | | Fix for bug 10388, fix various default flags.Bill Hoffman2010-09-021-3/+16
| | |_|_|_|/ | |/| | | |
* | | | | | Merge topic 'find-macports'Brad King2010-09-082-3/+6
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | eae45a6 Search MacPorts /opt/local prefix on Mac
| * | | | | | Search MacPorts /opt/local prefix on MacBrad King2010-09-012-3/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Include this prefix in CMAKE_SYSTEM_PREFIX_PATH so that it will be used for all find* commands. Previously only find_library and find_path would look under /opt/local/lib and /opt/local/include, respectively.
* | | | | | | Merge topic 'ImproveFindPackageConfigMode'Brad King2010-09-083-96/+225
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 5cdfc9c Improve wording of the error message of find_package() in config-mode 4969c3b Improve version notice in the generated message e8ae504 Add option CONFIG_MODE to FPHSA() b4b8f96 Don't create an empty element at the end of Foo_CONSIDERED_CONFIGS/VERSIONS cc955a0 Small cleanup of FindPackageHandleStandardArgs.cmake 0367245 Replace the two vector<string,string> with one vector<struct{string,string}> 130b0e2 Improve error message in Config-mode when no appropriate version was found dfe9c95 Record all considered Config files and their versions.
| * | | | | | | Improve wording of the error message of find_package() in config-modeAlex Neundorf2010-08-311-9/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As suggested by Brad, this improves the wording of the error message in config-mode when config-files were found, but no suitable version. The patch also contains the small loop-optimization suggested by Brad. Alex
| * | | | | | | Improve version notice in the generated messageAlex Neundorf2010-08-301-53/+61
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Now the version number is also printed if no required version was specified, but a version number was detected (showing more information shouldn't hurt). The code for generating the failure message in config-mode is moved into a separate helper macro, it was becoming too much. Alex
| * | | | | | | Add option CONFIG_MODE to FPHSA()Alex Neundorf2010-08-291-9/+55
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When this option is used for FPHSA(), it automatically handles the information created by a preceding find_package(NO_MODULE) all and creates a proper success/error message. Alex
| * | | | | | | Don't create an empty element at the end of Foo_CONSIDERED_CONFIGS/VERSIONSAlex Neundorf2010-08-291-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Alex
| * | | | | | | Small cleanup of FindPackageHandleStandardArgs.cmakeAlex Neundorf2010-08-291-21/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | -remove unnecessary arguments _VAR1 -move code for deciding the type of the message into helper macro _FPHSA_FAILURE_MESSAGE() Alex
| * | | | | | | Replace the two vector<string,string> with one vector<struct{string,string}>Alex Neundorf2010-08-292-15/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before this patch there were two separate vectors, and the code made sure they always had the same size. With this patch the code doesn't have to ensure this anymore, there is only one vector now. Alex
| * | | | | | | Improve error message in Config-mode when no appropriate version was foundAlex Neundorf2010-08-291-36/+50
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If in config-mode config files have been found by find_package(), but their version didn't match the requested version, now all considered files and their versions are printed (instead of saying "didn't find config file) Alex
| * | | | | | | Record all considered Config files and their versions.Alex Neundorf2010-08-292-11/+70
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As suggested on cmake-devel, find_package in Config-mode now records all considered config-files and their versions in <package>_CONSIDERED_CONFIGS and <package>_CONSIDERED_VERSIONS respectively. Alex
* | | | | | | | Merge topic 'ctest-show-labels'Brad King2010-09-087-3/+68
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 32242af Added CTest command --print-labels
| * | | | | | | | Added CTest command --print-labelsZach Mullen2010-08-317-3/+68
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This command allows a user to quickly see the list of all available test labels. The labels are also printed in verbose show only mode, alongside their corresponding tests.
* | | | | | | | | Merge topic 'CPack-PreserveSymlinksInInstalledDirs-v2'Brad King2010-09-081-1/+43
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 013e003 CPack handle symlinks in CPACK_INSTALLED_DIRECTORIES fix for bug5430
| * | | | | | | | | CPack handle symlinks in CPACK_INSTALLED_DIRECTORIES fix for bug5430Eric NOULARD2010-08-281-1/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The proposed solution is to avoid to CopyIfDifferent any links found in CPACK_INSTALLED_DIRECTORIES but memorize them instead then at the end of the processing for each dir do re-create the link in the installed tree. Current patch should work if the link are "local" to the directory.
* | | | | | | | | | KWSys Nightly Date StampKWSys Robot2010-09-081-1/+1
| |_|_|_|_|_|_|/ / |/| | | | | | | |
* | | | | | | | | KWSys Nightly Date StampKWSys Robot2010-09-071-1/+1
| | | | | | | | |
* | | | | | | | | KWSys Nightly Date StampKWSys Robot2010-09-061-1/+1
| | | | | | | | |
* | | | | | | | | KWSys Nightly Date StampKWSys Robot2010-09-051-1/+1
| | | | | | | | |
* | | | | | | | | KWSys Nightly Date StampKWSys Robot2010-09-041-1/+1
| |_|_|_|_|_|/ / |/| | | | | | |
* | | | | | | | KWSys Nightly Date StampKWSys Robot2010-09-031-1/+1
| |_|_|_|/ / / |/| | | | | |