summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.cxx
Commit message (Collapse)AuthorAgeFilesLines
* now Try compile can include CMAKE_FLAGSKen Martin2002-09-181-2/+7
|
* ENH: Added RemoveDefinition method.Brad King2002-09-181-0/+5
|
* cleaned up some of the cmake interfaceKen Martin2002-09-171-2/+3
|
* renamed GenerateMakefile to ConfigureFinalPassKen Martin2002-09-151-1/+1
|
* some fixes for try compileKen Martin2002-09-131-0/+1
|
* better trycompile and enable langiagesKen Martin2002-09-131-2/+9
|
* added a flag if a cmake is in try compileKen Martin2002-09-121-0/+1
|
* Couple of changes: cache variables now have a map of properties. ADVANCED ↵Andy Cedilnik2002-09-111-0/+4
| | | | and HELPSTRING are now properties of cache variable, IsAdvanced is gone, so is GetCacheEntry, since cache entries are now all private. To access them, you use the iterator. -ADVANCED cache entries are gone and are replaced by the property of cache variables. The cache file still looks the same, but the -ADVANCED cache entries are created when writing file. MarkAsAdvanced and VariableRequires are fixed. So are curses gui and wizard
* minor fix in try compile codeKen Martin2002-09-111-7/+2
|
* updated makefile moved commands into cmake and fixed try compileKen Martin2002-09-101-70/+23
|
* ERR: Fixes for comeau compiler. NULL is a pointer of type void*, and cannot ↵Brad King2002-09-101-3/+3
| | | | be compared directly with other pointer types. We use 0 instead.
* new archKen Martin2002-09-061-100/+53
|
* changed cache manager and registered generators to no longer be singletonsKen Martin2002-08-281-22/+80
|
* minor bugKen Martin2002-08-211-1/+1
|
* better IF ELSE handlingKen Martin2002-08-091-3/+4
|
* makefile now does not ignore NOTFOUND libs and includesKen Martin2002-07-251-17/+0
|
* makefile now ignores NOTFOUND libs and includesKen Martin2002-07-251-0/+17
|
* full variable replacement and removal or empty argumentsKen Martin2002-07-191-9/+23
|
* fixed if statements inside a foreachKen Martin2002-07-171-6/+8
|
* BUG: fix for compile with hpBill Hoffman2002-07-111-4/+4
|
* better error handling with if statementsKen Martin2002-07-101-11/+27
|
* fixed warningKen Martin2002-07-021-1/+1
|
* minor cleanupKen Martin2002-06-281-1/+1
|
* performance inprovementsKen Martin2002-06-281-3/+11
|
* bug fixKen Martin2002-06-271-1/+1
|
* bug fixKen Martin2002-06-271-1/+1
|
* removed all source lists from the system and made them vectors. Also ↵Ken Martin2002-06-271-55/+39
| | | | appended _CMAKE_PATH to the end of the automatic cache entries for executables and libraries. Odds of all these changes working are slim but cmake builds and passes all its tests. VTK40 starts building
* ERR: Fixed compiler warnings.Brad King2002-06-181-4/+4
|
* ENH: only add _LIB_DEPEND information for libraries and modulesBill Hoffman2002-06-031-1/+8
|
* ENH: rework library depend stuffBill Hoffman2002-05-031-7/+5
|
* make it backwards compatible with old cmakeBill Hoffman2002-05-021-47/+29
|
* Debug optimized cache fixesBill Hoffman2002-05-021-8/+9
|
* ENH: change LINK_LIBRARY to add to targetsBill Hoffman2002-05-021-5/+43
|
* ENH: Make the LinkLibraries command contribute dependencies towards ↵Amitha Perera2002-05-011-0/+23
| | | | AddLibraries.
* ENH: Add library dependency analysis.Amitha Perera2002-05-011-4/+13
|
* Reformatted the error printed by cmMakefile.Berk Geveci2002-05-011-4/+7
|
* ENH: improve speed of GetSource functionBill Hoffman2002-04-301-2/+10
|
* BUG: make sure link directories are not duplicatedBill Hoffman2002-04-291-3/+18
|
* ENH: Removed out-of-date commands CABLE_WRAP_TCL CABLE_CLASS_SET and ↵Brad King2002-04-171-0/+7
| | | | CONFIGURE_GCCXML
* ENH: speed improvementsBill Hoffman2002-04-111-1/+0
|
* ENH: add enable language support for PROJECT command, this means that a C ↵Bill Hoffman2002-04-021-14/+13
| | | | only project can be built with cmake, even without a cxx compiler
* ENH: major change, the cmMakefile now contains a master list of cmSourceFile ↵Bill Hoffman2002-03-291-13/+47
| | | | objects, the source lists reference the list via pointers, also you can now set properties on a file, like compile flags, abstract, etc.
* FIX: foreach function-blockers were using expanded args. Add virtual func to ↵Sebastien Barre2002-03-261-2/+12
| | | | specify if function blocker needs them expanded or not.
* ENH: add .in as a header file type, as it can not be compiledBill Hoffman2002-03-141-0/+1
|
* ENH: remove several compiler warningsBill Hoffman2002-03-131-2/+2
|
* ENH: expand variables in arguments before the commands get themBill Hoffman2002-03-051-2/+14
|
* FIX: although a CMakeLists.txt file could be searched up 'n' level in the ↵Sebastien Barre2002-02-251-12/+13
| | | | directory tree, ReadListFile() always implied a CMakeLists.txt file was up *one* level.
* ERR: Removed cmCacheManager::DefineCache method. It is no longer needed.Brad King2002-01-221-2/+1
|
* ENH:Updated copyrightWill Schroeder2002-01-211-30/+6
|
* BUG: .txx are not source files. They contain template code which can onlyAmitha Perera2001-12-281-1/+1
| | | | | be compiled when included in a regular .cxx file. By themselves, they cause do not cause code to be generated.