Brad King
|
1d9f287af7
|
ENH: Added NOT_IN_ALL option for ADD_LIBRARY and ADD_EXECUTABLE to avoid building the targets by default.
|
2006-10-02 11:14:00 -04:00 |
Brad King
|
7d2de52c1a
|
ENH: Cleaned up signature of cmMakefile::AddUtilityCommand. It is not valid to have an output from a utility rule and no calls to the method asked for an output anyway. The argument has been removed.
|
2006-09-28 13:55:26 -04:00 |
Brad King
|
d01b6f1281
|
ENH: Added VERBATIM option to ADD_CUSTOM_COMMAND and ADD_CUSTOM_TARGET commands. This option enables full escaping of custom command arguments on all platforms. See bug#3786.
|
2006-09-28 11:30:49 -04:00 |
Andy Cedilnik
|
fbdac25f81
|
ENH: Add a copy constructor to copy the values
|
2006-07-09 13:19:36 -04:00 |
Andy Cedilnik
|
99f4edb4e4
|
ENH: DIsplay the list file stack when displaying errors
|
2006-06-22 15:31:19 -04:00 |
Ken Martin
|
47c7108111
|
STYLE: fix line length
|
2006-05-12 12:29:09 -04:00 |
Bill Hoffman
|
25d4127e2d
|
ENH: fix .. in the path of subdirs
|
2006-04-20 15:49:56 -04:00 |
Ken Martin
|
535acdc7a0
|
ENH: some performance optimizations
|
2006-04-11 12:51:20 -04:00 |
Brad King
|
d5719f22c1
|
ENH: Added support for multiple outputs generated by a single custom command. For Visual Studio generators the native tool provides support. For Xcode and Makefile generators a simple trick is used. The first output is considered primary and has the build rule attached. Other outputs simply depend on the first output with no build rule. During cmake_check_build_system CMake detects when a secondary output is missing and removes the primary output to make sure all outputs are regenerated. This approach always builds the custom command at the right time and only once even during parallel builds.
|
2006-04-11 11:06:19 -04:00 |
Brad King
|
b613cf0be8
|
BUG: Fixed typo in new cmake-rerun code.
|
2006-04-11 10:04:55 -04:00 |
Bill Hoffman
|
8c06f8e294
|
ENH: add support for re-running cmake if the cmakefiles change
|
2006-04-10 13:53:00 -04:00 |
Andy Cedilnik
|
ee1975570e
|
ENH: Allow blocking of writing into the source tree
|
2006-03-22 14:40:36 -05:00 |
Ken Martin
|
10efe3b079
|
ENH: added some new functionality
|
2006-03-22 14:06:52 -05:00 |
Andy Cedilnik
|
3806c1050d
|
ENH: Remove things from bootstrap
|
2006-03-22 09:58:11 -05:00 |
Ken Martin
|
4102949bf9
|
STYLE: minor comment cleanups
|
2006-03-16 10:53:14 -05:00 |
Ken Martin
|
3d96e52261
|
STYLE: some m_ to this-> cleanup
|
2006-03-15 11:02:08 -05:00 |
Bill Hoffman
|
6b47b28867
|
ENH: fix line length style stuff
|
2006-03-10 11:13:15 -05:00 |
Bill Hoffman
|
0db4cb0d96
|
ENH: removed unused methods after find changes
|
2006-03-02 15:03:36 -05:00 |
Brad King
|
96f0266228
|
ENH: Created new install script generation framework. The INSTALL command 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.
|
2006-02-19 15:25:27 -05:00 |
Brad King
|
b8a33fb424
|
ENH: Added INSTALL command as a placeholder for a future generic install specification interface. Currently it supports only a SCRIPT option specifying a script to run during the install stage.
|
2006-02-10 13:54:36 -05:00 |
Bill Hoffman
|
347c5f4b46
|
ENH: add working directory support
|
2006-02-08 10:58:36 -05:00 |
Brad King
|
938890757a
|
ENH: Improved support for user-configured search paths. Paths given in the CMAKE_LIBRARY_PATH cmake variable are searched first, then those in the CMAKE_LIBRARY_PATH environment variable, then those listed in the call to the FIND_LIBRARY command and finally those listed in the PATH environment variable. The support is similar for finding include files with FIND_PATH, but the variable is CMAKE_INCLUDE_PATH.
|
2006-01-27 18:20:55 -05:00 |
Bill Hoffman
|
2c73d2e0f3
|
ENH: add new cmakedefine01 feature from bug report 2603
|
2006-01-03 16:40:51 -05:00 |
Andy Cedilnik
|
bebc745824
|
ENH: Add set and get test propety command
|
2005-07-31 11:51:42 -04:00 |
Bill Hoffman
|
aa47caab2d
|
FIX: apply patch from bug# 1965
|
2005-07-13 11:21:30 -04:00 |
Ken Martin
|
c5bfdf6917
|
ENH: cleaned up some old methods and vars
|
2005-07-07 11:44:36 -04:00 |
Ken Martin
|
369308ca76
|
ENH: make LOCATION an computed property of the target and get rid of a bunch of const junk
|
2005-06-22 09:06:46 -04:00 |
Andy Cedilnik
|
1bbccc5bef
|
ENH: Improve handling of escaped characters
|
2005-06-17 15:50:08 -04:00 |
Brad King
|
65e2c18d73
|
ENH: Enabling ability for CMAKE_MINIMUM_REQUIRED version to include patch level. Submitted by Alexander Neundorf.
|
2005-06-17 09:49:06 -04:00 |
Andy Cedilnik
|
f7ddfbe1fd
|
ENH: Add extra argument
|
2005-06-16 16:33:24 -04:00 |
Andy Cedilnik
|
d395b563ed
|
ENH: Improve internal test handling by creating a test class. Command 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
|
2005-04-24 15:59:51 -04:00 |
Bill Hoffman
|
1004073942
|
ENH: performance improvements
|
2005-04-12 13:27:07 -04:00 |
Andy Cedilnik
|
86cebea79a
|
ENH: More ctest changes and move SetupTest to superclass
|
2005-04-01 15:48:46 -05:00 |
Ken Martin
|
62969492b0
|
ENH: removed GetParentProjects
|
2005-03-29 15:34:27 -05:00 |
Ken Martin
|
345cf04012
|
ENH: big change that includes immediate subdir support, removing the notion of inherited commands, makefiles no longer read in the parent makefiles but instead inherit thier parent makefiles current settings
|
2005-03-18 10:41:41 -05:00 |
Ken Martin
|
791aa6052b
|
ENH: add support for out of source source
|
2005-03-14 11:29:15 -05:00 |
Ken Martin
|
3ff6722934
|
ENH: cleanup by removing all the olf local generate junk that i not longer needed
|
2005-03-10 13:39:38 -05:00 |
Brad King
|
39af9ee1e4
|
ENH: Updated implementation of custom commands. Multiple command lines are now supported effectively allowing entire scripts to be written. Also removed extra variable expansions and cleaned up passing of commands through to the generators. The command and individual arguments are now kept separate all the way until the generator writes them out. This cleans up alot of escaping issues.
|
2005-02-22 10:32:44 -05:00 |
Bill Hoffman
|
cb73410ccb
|
ENH: more tests are passing
|
2005-02-16 16:35:32 -05:00 |
Brad King
|
1d1bd31933
|
ENH: Added GetComplainRegularExpression method.
|
2005-02-07 15:09:22 -05:00 |
Andy Cedilnik
|
56234aed4b
|
PERF: Remove several classes from the bootstrap and so making bootstrap smaller and faster
|
2004-10-27 10:47:14 -04:00 |
Bill Hoffman
|
891c273062
|
ENH: remove warning
|
2004-08-27 09:55:41 -04:00 |
Bill Hoffman
|
731369ef9c
|
ENH: try to initialize all languages at the same time
|
2004-08-27 08:41:07 -04:00 |
Bill Hoffman
|
9655299f08
|
ENH: initial fortran support
|
2004-08-06 14:51:41 -04:00 |
Brad King
|
b6da1d1271
|
ENH: Added support for special variables CMAKE_CURRENT_LIST_FILE and CMAKE_CURRENT_LIST_LINE that evaluate to the file name and line number in which they appear. This implements the feature request from bug 1012.
|
2004-08-04 10:45:11 -04:00 |
Andy Cedilnik
|
3031467e33
|
ENH: Implement additional make clean files as a directory property instead of cmake variable
|
2004-05-20 16:56:34 -04:00 |
Andy Cedilnik
|
e09e1679ab
|
ENH: Add method to get definition even if it does not exists
|
2004-04-27 11:30:31 -04:00 |
Andy Cedilnik
|
aff8c7bcd6
|
ENH: Add GET/SET_DIRECTORY_PROPERTY/PROPERTIES commands so that we can change include directories and get all sorts of things. Closes Bug #25 - Get_CMAKE_PROPERTIES
|
2004-04-23 16:20:36 -04:00 |
Bill Hoffman
|
8b0b749a11
|
ENH: add SUBDIR PREORDER and fix clean for non-relative paths
|
2004-04-23 12:52:48 -04:00 |
Andy Cedilnik
|
55a71ba572
|
ENH: Add check for infinite loops. Make sure that files written using WRITE_FILE and FILE WRITE are not used as input files. Fixes Bug #678 - WRITE_FILE and FILE(WRITE...) lead to infinite loops
|
2004-04-18 14:41:46 -04:00 |