summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* ENH: use last mount point found for mingw location, not firstBill Hoffman2006-02-211-3/+4
|
* ENH: try to get the order a bit betterBill Hoffman2006-02-211-3/+1
|
* STYLE: Nightly Version updateAndy Cedilnik2006-02-211-1/+1
|
* ENH: better finding of mingw from msys, and delete CMakeFiles directory when ↵Bill Hoffman2006-02-214-2/+50
| | | | cache is deleted
* ENH: make sure CMAKE_STANDARD_LIBRARIES are usedBill Hoffman2006-02-201-1/+3
|
* ENH: make it compile on vs6Bill Hoffman2006-02-201-17/+16
|
* BUG: Add target-level COMPILE_FLAGS to the target not the individual source ↵Brad King2006-02-202-15/+20
| | | | files. This simplifies the generated files and puts flags in a more logical order (VS6 works, VS7 needs more translation to work).
* ENH: change expand stuff to pass a struct for all the argsBill Hoffman2006-02-205-129/+101
|
* ENH: Order compilation flags from most general to most specific: language, ↵Brad King2006-02-201-6/+9
| | | | then target, then source.
* BUG: Xcode generator should use local generator computation of include ↵Brad King2006-02-202-5/+5
| | | | directories.
* STYLE: Nightly Version updateAndy Cedilnik2006-02-201-1/+1
|
* BUG: Fixed optional file install support for multi-configuration generators.Brad King2006-02-203-43/+21
|
* ENH: Switched order of slash and configuration name in ↵Brad King2006-02-204-4/+4
| | | | cmGlobalGenerator::AppendDirectoryForConfig method to increase flexibility.
* ENH: Implemented FILES and PROGRAMS forms of the INSTALL command as ↵Brad King2006-02-1911-59/+243
| | | | replacements for the INSTALL_FILES and INSTALL_PROGRAMS commands. This addresses the request for absolute path install destinations in bug#2691.
* STYLE: Removed unused includes.Brad King2006-02-191-2/+0
|
* ENH: Using CMAKE_SKIP_BUILD_RPATH to test relink support.Brad King2006-02-192-0/+10
|
* BUG: Fixed relink with new install framework.Brad King2006-02-194-2/+12
|
* COMP: Removed unused variables.Brad King2006-02-191-3/+1
|
* BUG: Do not report files as installed if they are optional and do not exist.Brad King2006-02-192-12/+25
|
* BUG: Import libraries should be installed as STATIC_LIBRARY.Brad King2006-02-191-0/+8
|
* ENH: Created new install script generation framework. The INSTALL command ↵Brad King2006-02-1918-406/+973
| | | | creates the generators which are later used by cmLocalGenerator to create the cmake_install.cmake files. A new target installation interface is provided by the INSTALL command which fixes several problems with the INSTALL_TARGETS command. See bug#2691. Bugs 1481 and 1695 are addressed by these changes.
* BUG: Fixed module creation rules. Removed soname portion of all rules ↵Brad King2006-02-191-4/+4
| | | | because it is never used on this platform.
* BUG: Fixed cygwin module creation rules. Modules should not have the "cyg" ↵Brad King2006-02-191-4/+10
| | | | prefix by default. Removd soname flags from creation rules because they are never used on this platform.
* ENH: Automatic include directories should not be done by default as was just ↵Brad King2006-02-192-26/+28
| | | | implemented. Instead a project may now set CMAKE_INCLUDE_CURRENT_DIR to get this behavior. The current source and binary directories are added automatically to the beginning of the include path in every directory. This simulates in-source behavior for double-quote includes when there are generated sources and headers in the directory.
* BUG: Install location full-path test for windows needs to account for both ↵Brad King2006-02-191-1/+1
| | | | lower case and upper case drive letters.
* STYLE: Nightly Version updateAndy Cedilnik2006-02-191-1/+1
|
* BUG: Remove trailing slashes from install destinations.Brad King2006-02-181-0/+8
|
* ENH: Clarified error message.Brad King2006-02-181-2/+2
|
* COMP: Fixed shadowed variable warning.Brad King2006-02-181-4/+4
|
* ENH: Generate import libraries for DLLs on Cygwin and MinGW.Brad King2006-02-1810-60/+139
|
* ENH: If CMAKE_NO_AUTOMATIC_INCLUDE_DIRECTORIES is not set try to approximate ↵Brad King2006-02-183-31/+88
| | | | in-source build include file behavior in an out-of-source build by adding the build tree directory corresponding to a source tree directory at the beginning of the include path. Also fixed VS6 and VS7 generators to use cmLocalGenerator's computation of include paths. The VS6 generator will now short-path the include directories if the total length is too long in order to try to avoid its truncation limit.
* ENH: apply patch from Alex to support some more kdevelop stuffBill Hoffman2006-02-182-16/+60
|
* STYLE: Nightly Version updateAndy Cedilnik2006-02-181-1/+1
|
* ENH: put the system path ahead of the command pathBill Hoffman2006-02-171-5/+4
|
* STYLE: Nightly Version updateAndy Cedilnik2006-02-171-1/+1
|
* BUG: Do not install MSVC dlls for a non-MSVC build.Brad King2006-02-172-4/+4
|
* ENH: Made default install prefix consistent with building with another CMake.Brad King2006-02-171-2/+26
|
* BUG: Work-around borland make bug that drops a rule completely if it has no ↵Brad King2006-02-163-0/+14
| | | | dependencies or commands.
* ENH: Clarified documentation of DEFINE_SYMBOL.Brad King2006-02-161-2/+2
|
* BUG: Report error when a target does not exist.Brad King2006-02-161-0/+1
|
* BUG: Remove debug and fix space between label and exec nameAndy Cedilnik2006-02-161-2/+2
|
* ENH: Variable name changedAndy Cedilnik2006-02-161-2/+2
|
* BUG: Do not perform pre-build, pre-link, or post-install commands when ↵Brad King2006-02-161-8/+15
| | | | relinking.
* BUG: Need INSTALL_RPATH property on SimpleInstallS2 also.Brad King2006-02-162-0/+8
|
* ENH: Fix iconsAndy Cedilnik2006-02-161-1/+1
|
* ENH: Use target property for INSTALL_RPATH of SimpleInstall so that it is ↵Brad King2006-02-162-6/+8
| | | | the only one that needs to relink.
* ENH: More work on NSI to improve installing and uninstallingAndy Cedilnik2006-02-163-8/+64
|
* ENH: Implemented RPATH specification support. It is documented by the ↵Brad King2006-02-1613-40/+278
| | | | command SET_TARGET_PROPERTIES.
* ENH: warning fixKen Martin2006-02-161-1/+1
|
* ENH: warning fixKen Martin2006-02-161-1/+1
|