Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix installation when built by CMake 2.4 | Brad King | 2009-07-31 | 1 | -0/+6 |
| | | | | | | | | | CMake 2.4 generates old-style cmake_install.cmake code including calls to the file(INSTALL) command with the COMPONENTS argument. We need to set CMAKE_INSTALL_SELF_2_4 for the whole install tree to prevent the command from complaining in this special case. Previously this was needed only in the QtDialog directory, but now it is needed in the entire tree. | ||||
* | ENH: Allow empty endif() and such with CMake 2.4 | Brad King | 2009-07-24 | 1 | -0/+2 |
| | | | | | This allows us to use empty endif() and similar block terminators when building with CMake 2.4. It is allowed by default with 2.6 already. | ||||
* | ENH: Install all Modules and Templates | Brad King | 2009-07-24 | 1 | -2/+15 |
| | | | | | | | This removes the file-wise installation rules for Modules and Templates and instead installs the whole directories. This approach is much less error-prone. The old approach was left from before CMake had the install(DIRECTORY) command. | ||||
* | COMP: We now require CMake 2.4.5 or higher to build | Brad King | 2009-06-11 | 1 | -1/+1 |
| | | | | | We use the CMakeDependentOption module unconditionally, so we must require a version of CMake new enough to provide it. | ||||
* | ENH: Disable the xmlrpc drop method by default | Brad King | 2009-06-11 | 1 | -18/+13 |
| | | | | | | | We've chosen to drop our default dependence on xmlrpc. Thus we disable the corresponding CTest submission method and remove the sources for building xmlrpc locally. Users can re-enable the method by setting the CTEST_USE_XMLRPC option to use a system-installed xmlrpc library. | ||||
* | ENH: Remove option to build cmcurl-7.19.0 | Brad King | 2009-06-11 | 1 | -7/+1 |
| | | | | | | This version of curl was added experimentally but does not address the problem we were hoping it fixed (an occasional upload hang). Importing a new curl can wait until the problem is fully diagnosed and addressed. | ||||
* | ENH: Simplify decision to use system libraries | Brad King | 2009-06-11 | 1 | -53/+38 |
| | | | | | | Previously we disallowed use of system libraries if FindXMLRPC.cmake was not available. Now that CMake 2.4 is required to build, the module is always available. This change simplifies the logic accordingly. | ||||
* | ENH: allow for shared build of libcurl and fix build with openssl option ↵ | Bill Hoffman | 2009-04-10 | 1 | -1/+4 |
| | | | | (ssl tested on linux and windows | ||||
* | ENH: Overhaul CMake version numbering | Brad King | 2009-03-05 | 1 | -7/+3 |
| | | | | | | | | | | | | | This moves the version numbers into an isolated configured header so that not all of CMake needs to rebuild when the version changes. Previously we had spaces, dashes and/or the word 'patch' randomly chosen before the patch number. Now we always report version numbers in the traditional format "<major>.<minor>.<patch>[-rc<rc>]". We still use odd minor numbers for development versions. Now we also use the CCYYMMDD date as the patch number of development versions, thus allowing tests for exact CMake versions. | ||||
* | ENH: check in ability to build with new curl -f -DCMAKE_USE_NEW_CURL is set | Bill Hoffman | 2008-09-29 | 1 | -2/+8 |
| | |||||
* | ENH: install the mac application bundle into /Applications directly with no ↵ | Bill Hoffman | 2008-04-04 | 1 | -4/+5 |
| | | | | enclosing folder | ||||
* | ENH: forgot to check this in, need to change the version in CVS | Bill Hoffman | 2008-03-19 | 1 | -1/+1 |
| | |||||
* | ENH: Set CMake Policy CMP0003 to NEW behavior to build without warnings with ↵ | Brad King | 2008-03-17 | 1 | -0/+4 |
| | | | | the upcoming CMake 2.6 release. | ||||
* | BUG: undo accidental commit | Ken Martin | 2008-03-04 | 1 | -2/+9 |
| | |||||
* | ENH: Simplify tests for building CMake itself with rpath support now that ↵ | Brad King | 2008-03-02 | 1 | -3/+2 |
| | | | | 2.4 is required to build. | ||||
* | ENH: add first cut and policies still need to add the doc support | Ken Martin | 2008-03-01 | 1 | -9/+2 |
| | |||||
* | ENH: install seems to be working for cmake-gui | Bill Hoffman | 2008-02-18 | 1 | -2/+9 |
| | |||||
* | ENH: require 2.4 to build cmake | Bill Hoffman | 2008-02-18 | 1 | -1/+1 |
| | |||||
* | ENH: support for cpack and install of cmake-gui as mac app bundle | Bill Hoffman | 2008-02-16 | 1 | -0/+11 |
| | |||||
* | ENH: add support for the Syllable OS (http://www.syllable.org) | Alexander Neundorf | 2007-11-24 | 1 | -7/+12 |
| | | | | | | | | | | | major issues: -access() doesn't return false for an empty string (#ifdefed in cmake) -dlopen() doesn't return 0 on failure (#ifdefed in cmake and fixed now in Syllable) -the kwsys and Bootstrap tests fail with timeout due to the fact that I'm doing all that in qemu, which is quite slow -RPATH is now supported, so without modifying the test adapting DLL_PATH in Syllable is required for the tests to succeed -the Plugin test fails with an undefined reference to example_exe_function() in example_mod_1, it seems this isn't supported under Syllable Alex | ||||
* | BUG: Fixed construction of CMake_VERSION_DATE to use KWSys DateStamp feature ↵ | Brad King | 2007-11-21 | 1 | -9/+4 |
| | | | | now that cmVersion.cxx is not updated nightly anymore. | ||||
* | ENH: move CMAKE_STRICT option to the top | Ken Martin | 2007-11-06 | 1 | -0/+5 |
| | |||||
* | COMP: use RPATH is building QtDialog and the Qt libs are not in /lib or | Alexander Neundorf | 2007-11-05 | 1 | -2/+10 |
| | | | | | | /usr/lib (same logic as for ccmake) Alex | ||||
* | ENH: add support for the Portland Compiler to CMake, can build cmake and the ↵ | Alexander Neundorf | 2007-09-17 | 1 | -2/+2 |
| | | | | | | tests pass (except the wrapping tests, which fail to link to the g++-compiled Qt) Alex | ||||
* | ENH: remove debug print | Bill Hoffman | 2007-09-09 | 1 | -1/+0 |
| | |||||
* | ENH: MATH is not in bootstrap cmake | Bill Hoffman | 2007-09-07 | 1 | -3/+3 |
| | |||||
* | ENH: for CVS CMake have cpack use the version date in the name of the package | Bill Hoffman | 2007-09-07 | 1 | -0/+16 |
| | |||||
* | ENH: Create CTestCustom.cmake instead of CTestCustom.ctest. Create the old ↵ | Brad King | 2007-08-31 | 1 | -0/+2 |
| | | | | file to include the new one for compatibility. This should prevent the long delays of CTest traversing the whole tree looking for CTestCustom.ctest files. | ||||
* | COMP: enable RPATH if any of the CMAKE_USE_SYSTEM_XXX variables is enabled | Alexander Neundorf | 2007-08-28 | 1 | -1/+32 |
| | | | | | | | or if the curses library is neither in /lib nor in /usr/lib . This makes it build on NetBSD. For more comments see CMakeLists.txt Alex | ||||
* | COMP: ccmake requires ncurses, according to Berk and since it doesn't build | Alexander Neundorf | 2007-08-15 | 1 | -0/+1 |
| | | | | | | | | | | on NetBSD where there are separate curses and ncurses libraries, and where the curses library is found, which doesn't work for ccmake while the existing ncurses library would work. With this change it should be possible to test whether the found curses lib provides ncurses functionality. Alex | ||||
* | ENH: make DartLocal.conf part of project | Bill Hoffman | 2007-06-29 | 1 | -0/+4 |
| | |||||
* | ENH: remove old style release stuff | Bill Hoffman | 2007-06-22 | 1 | -2/+0 |
| | |||||
* | ENH: revert to SUBDIRS to make sure cmake can be built with 2.2 | Bill Hoffman | 2007-05-13 | 1 | -14/+14 |
| | |||||
* | COMP: Need CMake 2.4 or a bootstrap cmake that has ADD_SUBDIRECTORY to build. | Brad King | 2007-05-13 | 1 | -1/+1 |
| | |||||
* | ENH: minor fixes | Ken Martin | 2007-05-11 | 1 | -0/+1 |
| | |||||
* | ENH: some more CMakeList cleanups | Ken Martin | 2007-05-11 | 1 | -1/+0 |
| | |||||
* | ENH: more cleanup of some CMakeLists files | Ken Martin | 2007-05-11 | 1 | -307/+368 |
| | |||||
* | ENH: start trying to cleanup CMakeLists files | Ken Martin | 2007-05-10 | 1 | -143/+14 |
| | |||||
* | ENH: Enable use of kwsys MD5 implementation. | Brad King | 2007-03-14 | 1 | -0/+1 |
| | |||||
* | ENH: Prepare for the new curl. Curl is build static, so set define to on | Andy Cedilnik | 2007-03-09 | 1 | -0/+1 |
| | |||||
* | BUG: bad command line | Ken Martin | 2007-03-01 | 1 | -1/+1 |
| | |||||
* | BUG: bad command line | Ken Martin | 2007-03-01 | 1 | -1/+1 |
| | |||||
* | BUG: allow system information to accept the -G option | Ken Martin | 2007-02-28 | 1 | -1/+45 |
| | |||||
* | BUG: possible fix for new SystemInfo test | Ken Martin | 2007-02-27 | 1 | -0/+4 |
| | |||||
* | ENH: add support for cygwin source and binary packaging | Bill Hoffman | 2007-02-02 | 1 | -0/+35 |
| | |||||
* | ENH: add RC stuff to main tree | Bill Hoffman | 2007-01-04 | 1 | -0/+4 |
| | |||||
* | ENH: Add options to build with system utility libraries. Organize inclusion ↵ | Brad King | 2006-10-19 | 1 | -26/+129 |
| | | | | of third party libraries into a single header per library. This addresses bug#3653. | ||||
* | ENH: Changing default data and doc directories to share/cmake-V.v and ↵ | Brad King | 2006-08-26 | 1 | -2/+2 |
| | | | | doc/cmake-V.v instead of share/CMake and doc/CMake for consistency with many linux distribution conventions. | ||||
* | ENH: Start building compress library | Andy Cedilnik | 2006-08-14 | 1 | -1/+7 |
| | |||||
* | ENH: centralized locaiton of CMakeFiles setting | Ken Martin | 2006-06-14 | 1 | -4/+4 |
| |