Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | BUG: Using the source-file permissions by default for installation is ↵ | Brad King | 2006-04-18 | 1 | -19/+6 |
| | | | | somewhat unpredictable because users can extract source code with almost any permissions (umask). Changing the default to use 644 for files and 755 for programs. No release has documented the old behavior so we do not need compatibility. | ||||
* | ENH: More cleanups and add stgz header script, so it does not have to be ↵ | Andy Cedilnik | 2006-04-18 | 1 | -1/+3 |
| | | | | hard-coded. Also, the user can overwrite it | ||||
* | BUG: Fixed install rules to use copy-if-different. | Brad King | 2006-04-14 | 1 | -7/+3 |
| | |||||
* | ENH: handle single path | Bill Hoffman | 2006-04-10 | 1 | -1/+4 |
| | |||||
* | ENH: add path conversion stuff and rm SYSTEM_PATH | Bill Hoffman | 2006-04-05 | 1 | -7/+34 |
| | |||||
* | ENH: fix warning, and remove debug code | Bill Hoffman | 2006-04-03 | 1 | -8/+0 |
| | |||||
* | ENH: Added named component installation implementation. Installation ↵ | Brad King | 2006-03-30 | 1 | -0/+32 |
| | | | | behavior should be unchanged unless -DCOMPONENT=<name> is specified when cmake_install.cmake is invoked. | ||||
* | ENH: make sure framework search order is correct | Bill Hoffman | 2006-03-30 | 1 | -0/+8 |
| | |||||
* | ENH: Add proper support for installing bundles | Andy Cedilnik | 2006-03-28 | 1 | -1/+21 |
| | |||||
* | ENH: Allow blocking of writing into the source tree | Andy Cedilnik | 2006-03-22 | 1 | -0/+15 |
| | |||||
* | ENH: Add relative tag and add test for relative tag | Andy Cedilnik | 2006-03-21 | 1 | -0/+11 |
| | |||||
* | ENH: Remove cmGlob and use glob from kwsys | Andy Cedilnik | 2006-03-21 | 1 | -13/+13 |
| | |||||
* | STYLE: some m_ to this-> cleanup | Ken Martin | 2006-03-15 | 1 | -13/+13 |
| | |||||
* | ENH: add a new FILE SYSTEM_PATH that allows you to read a environment ↵ | Bill Hoffman | 2006-03-10 | 1 | -0/+29 |
| | | | | variable with a path in it. | ||||
* | ENH: use a cmake script to do the clean step, this allows for large numbers ↵ | Bill Hoffman | 2006-03-09 | 1 | -0/+32 |
| | | | | of files to be removed without making the command line too long | ||||
* | BUG: Most platforms other than Linux seem to require executable permissions ↵ | Brad King | 2006-03-07 | 1 | -1/+1 |
| | | | | on their shared libraries. | ||||
* | ENH: Added PERMISSIONS and RENAME options to the INSTALL command's FILES and ↵ | Brad King | 2006-03-03 | 1 | -121/+273 |
| | | | | PROGRAMS mode, and corresponding support to FILE(INSTALL). Default permissions for shared libraries on non-Windows/non-OSX platforms no longer has the execute bit set. | ||||
* | BUG: Fixed optional file install support for multi-configuration generators. | Brad King | 2006-02-20 | 1 | -21/+8 |
| | |||||
* | BUG: Install location full-path test for windows needs to account for both ↵ | Brad King | 2006-02-19 | 1 | -1/+1 |
| | | | | lower case and upper case drive letters. | ||||
* | ENH: Clarified error message. | Brad King | 2006-02-18 | 1 | -2/+2 |
| | |||||
* | COMP: Removed unused variables. | Brad King | 2006-01-14 | 1 | -6/+0 |
| | |||||
* | BUG: Sweeping changes to cleanup computation of target names. This should | Brad King | 2006-01-13 | 1 | -11/+0 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | fix many bugs related to target names being computed inconsistently. - Centralized computation of a target's file name to a method in cmTarget. Now that global knowledge is always available the *_CMAKE_PATH cache variables are no longer needed. - Centralized computation of link library command lines and link directory search order. - Moved computation of link directories needed to link CMake targets to be after evaluation of linking dependencies. This also removed alot of duplicate code in which each version had its own bugs. This commit is surrounded by the tags CMake-TargetNameCentralization1-pre and CMake-TargetNameCentralization1-post so make the large set of changes easy to identify. | ||||
* | ENH: Add regular string replace (not regex), and relative path command. Also ↵ | Andy Cedilnik | 2005-10-17 | 1 | -0/+39 |
| | | | | add tests | ||||
* | BUG: try to fix qt problems | Bill Hoffman | 2005-09-10 | 1 | -6/+0 |
| | |||||
* | make sure correct path type is used | Bill Hoffman | 2005-08-23 | 1 | -1/+1 |
| | |||||
* | ENH: Added versioned executable support. This partially addresses bug#2143. ↵ | Brad King | 2005-08-17 | 1 | -5/+42 |
| | | | | Also made OUTPUT_NAME work when installing executables. | ||||
* | ENH: if Xcode21 is installed then create 21 compatible project files | Bill Hoffman | 2005-07-19 | 1 | -1/+2 |
| | |||||
* | STYLE: Fix typos | Andy Cedilnik | 2005-07-06 | 1 | -1/+1 |
| | |||||
* | BUG: Handle restrictive permissions | Andy Cedilnik | 2005-03-07 | 1 | -0/+26 |
| | |||||
* | ENH: all tests are passing for XCode | Bill Hoffman | 2005-02-18 | 1 | -17/+33 |
| | |||||
* | PERF: Remove several classes from the bootstrap and so making bootstrap ↵ | Andy Cedilnik | 2004-10-27 | 1 | -0/+6 |
| | | | | smaller and faster | ||||
* | BUG: Fix crash when CMAKE_DEBUG_POSTFIX is not set. | Brad King | 2004-08-31 | 1 | -0/+4 |
| | |||||
* | BUG: Fixed generation of installation manifest to account for library ↵ | Brad King | 2004-07-02 | 1 | -1/+8 |
| | | | | versioning symlinks. Also removed DESTDIR prefix from generated manifest. | ||||
* | BUG: If the destination is the same as source, do not copy file. Fixes Bug ↵ | Andy Cedilnik | 2004-07-02 | 1 | -35/+38 |
| | | | | #956 - make install broken | ||||
* | ERR: Fix typo | Andy Cedilnik | 2004-06-30 | 1 | -1/+1 |
| | |||||
* | ENH: Better handling of debug postfix and fix the test | Andy Cedilnik | 2004-06-29 | 1 | -4/+20 |
| | |||||
* | ERR: Fix visual studio install | Andy Cedilnik | 2004-06-28 | 1 | -3/+13 |
| | |||||
* | BUG: Implement installing of shared library versioning and add test for the ↵ | Andy Cedilnik | 2004-06-28 | 1 | -5/+78 |
| | | | | whole thing | ||||
* | BUG: Put all files to manifest | Andy Cedilnik | 2004-04-21 | 1 | -1/+1 |
| | |||||
* | ENH: Add check for infinite loops. Make sure that files written using ↵ | Andy Cedilnik | 2004-04-18 | 1 | -0/+1 |
| | | | | WRITE_FILE and FILE WRITE are not used as input files. Fixes Bug #678 - WRITE_FILE and FILE(WRITE...) lead to infinite loops | ||||
* | ENH: When installing project, write manifest | Andy Cedilnik | 2004-03-28 | 1 | -0/+11 |
| | |||||
* | ENH: Add DESTDIR support | Andy Cedilnik | 2004-02-13 | 1 | -12/+79 |
| | |||||
* | ENH: Handle script mode | Andy Cedilnik | 2004-02-06 | 1 | -2/+10 |
| | |||||
* | ENH: Fix support for debug postfix | Andy Cedilnik | 2004-02-03 | 1 | -3/+2 |
| | |||||
* | ENH: Add support for install postfix | Andy Cedilnik | 2004-02-03 | 1 | -1/+16 |
| | |||||
* | ERR: Remove warning about unused variable | Andy Cedilnik | 2004-01-28 | 1 | -1/+0 |
| | |||||
* | ENH: Make install on windows seems to work now | Andy Cedilnik | 2004-01-27 | 1 | -22/+63 |
| | |||||
* | ERR: Fix build on Mingw. Looks like Mingw is more like visual studio... ↵ | Andy Cedilnik | 2004-01-27 | 1 | -1/+1 |
| | | | | Thanks Fred Wheeler | ||||
* | ERR: And yet another set of constants for file permissions | Andy Cedilnik | 2004-01-27 | 1 | -1/+3 |
| | |||||
* | ENH: Several windows bugs and fixes | Andy Cedilnik | 2004-01-26 | 1 | -2/+7 |
| |