summaryrefslogtreecommitdiffstats
path: root/Source
Commit message (Collapse)AuthorAgeFilesLines
* ENH: CleanupsAndy Cedilnik2005-05-0314-108/+108
|
* ENH: Promote submit into a full handler, add test and submit command and do ↵Andy Cedilnik2005-05-0311-209/+486
| | | | some cleanups
* STYLE: Nightly Version updateAndy Cedilnik2005-05-031-1/+1
|
* ENH: Make ctest build command workAndy Cedilnik2005-05-022-0/+40
|
* ENH: Make AddCMakePath publicAndy Cedilnik2005-05-021-5/+5
|
* ENH: Make FindMakeProgram publicAndy Cedilnik2005-05-021-3/+8
|
* ENH: More commands. Start working on new style ctest configurationAndy Cedilnik2005-05-0210-19/+352
|
* STYLE: Nightly Version updateAndy Cedilnik2005-05-021-1/+1
|
* STYLE: Nightly Version updateAndy Cedilnik2005-05-011-1/+1
|
* COMP: Remove warningAndy Cedilnik2005-04-301-0/+1
|
* STYLE: Nightly Version updateAndy Cedilnik2005-04-301-1/+1
|
* ENH: Try to see if GenerateBuildCommand produces apropriate resultAndy Cedilnik2005-04-291-4/+10
|
* ENH: Add option to ignore errors. Only works on makeAndy Cedilnik2005-04-298-17/+29
|
* COMP: Converting INSTALL->ALL_BUILD dependency implementation to use the ↵Brad King2005-04-296-81/+35
| | | | AddUtility method on a target. This significantly simplifies the implementation and removes warnings about hiding virtual functions.
* COMP: Remove warningAndy Cedilnik2005-04-291-0/+3
|
* ENH: make install depend on allBill Hoffman2005-04-291-1/+9
|
* STYLE: Nightly Version updateAndy Cedilnik2005-04-291-1/+1
|
* ENH: Start working on command that will abstract generating of build commandAndy Cedilnik2005-04-282-37/+20
|
* ENH: Start working on a method that abstracts generating of build commandAndy Cedilnik2005-04-284-77/+27
|
* ENH: Start working on command that will abstract generating of build commandAndy Cedilnik2005-04-282-23/+33
|
* ENH: Added dependency from INSTALL target to ALL_BUILD target so that ↵Brad King2005-04-286-23/+94
| | | | targets build before being installed.
* BUG: Extending all timeouts to help out slower machines.Brad King2005-04-281-3/+3
|
* ENH: Add internal errorAndy Cedilnik2005-04-281-0/+1
|
* STYLE: Nightly Version updateAndy Cedilnik2005-04-281-1/+1
|
* ENH: Added dependency on all for install rule to make sure build is up to ↵Brad King2005-04-271-2/+9
| | | | date before installing. This behavior can be disabled by setting CMAKE_SKIP_INSTALL_ALL_DEPENDENCY to true.
* BUG: Do not leave ../ in the full path to a source file. Using ↵Brad King2005-04-271-27/+8
| | | | CollapseFullPath simplifies the code anyway.
* BUG: Extending timeout of test 6 from 0.1 seconds to 3 seconds. This should ↵Brad King2005-04-271-1/+1
| | | | avoid missed signals and intermittent failures.
* STYLE: Nightly Version updateAndy Cedilnik2005-04-271-1/+1
|
* ENH: Removing stdio_core hack. A better work-around has been put in ↵Brad King2005-04-262-11/+0
| | | | cmStandardIncludes.h.
* COMP: Adding inclusion of stdarg.h to work-around SGI header bug in 7.4.2m.Brad King2005-04-261-0/+2
|
* BUG: Looks like std::string changes the result of c_str() call. This fixes ↵Andy Cedilnik2005-04-261-0/+2
| | | | potential problems
* COMP: Remove warningAndy Cedilnik2005-04-261-1/+1
|
* COMP: Remove warningsAndy Cedilnik2005-04-262-1/+3
|
* BUG: Fixed ordering of multiple commands in a custom target when implemented ↵Brad King2005-04-262-25/+75
| | | | as custom commands. Also added support to execute pre-build rules first to be consistent with makefile generator.
* BUG: Added inclusion of pre-build rules for custom targets.Brad King2005-04-261-1/+3
|
* STYLE: Nightly Version updateAndy Cedilnik2005-04-261-1/+1
|
* COMP: Remove warningAndy Cedilnik2005-04-251-4/+4
|
* STYLE: Nightly Version updateAndy Cedilnik2005-04-251-1/+1
|
* COMP: Fix problem on compilers that cannot implicitly convert std::string to ↵Andy Cedilnik2005-04-241-1/+5
| | | | cmStdString
* ENH: Improve internal test handling by creating a test class. Command ↵Andy Cedilnik2005-04-2412-167/+277
| | | | cmEnableTesting now only sets CMAKE_TESTING_ENABLED and cmAddTest only adds a test to the list. The actual test files are written by local generator. This way we can at some point in the future replace DartTestfile with some XML file
* BUG: The argument is --ctest-configAndy Cedilnik2005-04-241-1/+1
|
* ENH: Support for modified and conflicts in subversionAndy Cedilnik2005-04-241-42/+67
|
* BUG: Older SGI compilers still have internal/stdio_core.h but do not support ↵Brad King2005-04-241-3/+4
| | | | #include_next. We'll have to try-compile to test whether this hack is needed.
* BUG: Remember if there was update errorAndy Cedilnik2005-04-241-3/+3
|
* STYLE: Nightly Version updateAndy Cedilnik2005-04-241-1/+1
|
* STYLE: Nightly Version updateAndy Cedilnik2005-04-231-1/+1
|
* ENH: Created cmTarget::GetLibraryNames to replace ↵Brad King2005-04-224-75/+168
| | | | cmLocalUnixMakefileGenerator2::GetLibraryNames. Added cmTarget::GetLibraryCleanNames to be used by cmLocalUnixMakefileGenerator2. Now when a library is linked both the shared and static versions are removed from the build tree. In this way we avoid having both kinds of libraries present when the user switches BUILD_SHARED_LIBS on/off. This prevents problems with turning off shared libraries and then expecting the linker to use the static libraries only to find it is using the out-of-date shared versions.
* ENH: Added cmTarget::GetBaseName and cmTarget::GetFullName methods and ↵Brad King2005-04-227-95/+125
| | | | removed cmLocalGenerator::GetFullTargetName and cmLocalUnixMakefileGenerator2::GetBaseTargetName. This functionality is more sensibly implemented in cmTarget. It is also needed for an upcoming feature in which both the shared and static versions of a library will be removed before one is linked.
* COMP: Commented out unused variable until the corresponding logic is finished.Brad King2005-04-221-2/+2
|
* COMP: Removed line continuation characters from #if lines to avoid linefeed ↵Brad King2005-04-222-11/+4
| | | | problems on cygwin.