summaryrefslogtreecommitdiffstats
path: root/Source/cmVTKMakeInstantiatorCommand.cxx
Commit message (Collapse)AuthorAgeFilesLines
* ENH: remove old commandsKen Martin2006-12-121-491/+0
|
* ENH: make properties a bit more formal with documentation and chainingKen Martin2006-12-071-0/+4
|
* STYLE: fix line lengthKen Martin2006-05-121-7/+11
|
* STYLE: some m_ to this-> cleanupKen Martin2006-03-151-87/+87
|
* STYLE: fix line lengthsBill Hoffman2006-03-101-5/+10
|
* STYLE: Adjusted signature of cmGeneratedFileStream to make copy-if-different ↵Brad King2004-11-031-3/+6
| | | | more explicity.
* ENH: Re-implemented cmGeneratedFileStream to look like a real stream and ↵Brad King2004-11-031-8/+8
| | | | replace the destination file atomically. This will avoid problems with the process being terminated while generating a file.
* ENH: CleanupsAndy Cedilnik2004-02-221-0/+2
|
* ENH: Added reference to Copyright.txt. Removed old reference to ITK ↵Brad King2002-10-231-3/+3
| | | | copyright. Changed program name to CMake instead of Insight in source file header. Also removed tabs.
* ENH: Renamed cmStringStream to cmOStringStream and added cmIStringStream. ↵Brad King2002-10-101-1/+1
| | | | Removed cmInputStringStream.
* compiler warningsKen Martin2002-08-231-1/+2
|
* modified how source files store propertiesKen Martin2002-08-161-5/+6
|
* ERR: unsigned int -> size_t.Brad King2002-08-161-1/+1
|
* ENH: Changed check for which version of instantiators to generate to look ↵Brad King2002-08-161-5/+6
| | | | for definition of VTK_USE_INSTANTIATOR_NEW instead of an extra argument to VTK_MAKE_INSTANTIATOR.
* BUG: Added backward-compatability. The old instantiator style will be used ↵Brad King2002-08-151-2/+211
| | | | unless the argument USE_INSTANTIATOR_NEW is given to tell the command to make use of the instantiator new functions exported from each class's implementation file.
* ENH: Improved generated instantiator to use extern declarations to wrappers ↵Brad King2002-08-151-126/+36
| | | | around the New() methods. This avoids the need to include each class's header in an instantiator source. The instantiator class implementations can now fit in a single source file that compiles quickly.
* removed all source lists from the system and made them vectors. Also ↵Ken Martin2002-06-271-30/+18
| | | | 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
* ENH: Added cmStringStream class to wrap std::stringstream or std::strstream ↵Brad King2002-06-191-3/+2
| | | | depending on the platform. The interface is that of std::stringstream, so no "ends" or "rdbuf()->freeze(0)" lines are needed.
* ENH: replace freeze with deleteBill Hoffman2002-04-301-1/+1
|
* make sure ; expansion is done in all commandsBill Hoffman2002-03-291-3/+5
|
* ENH: major change, the cmMakefile now contains a master list of cmSourceFile ↵Bill Hoffman2002-03-291-6/+6
| | | | objects, the source lists reference the list via pointers, also you can now set properties on a file, like compile flags, abstract, etc.
* ENH: remove several compiler warningsBill Hoffman2002-03-131-4/+4
|
* ENH: expand variables in arguments before the commands get themBill Hoffman2002-03-051-11/+3
|
* ENH: Added support for including extra files in generated header to get ↵Brad King2002-03-011-3/+24
| | | | access to export macros of derived projects.
* ENH:Updated copyrightWill Schroeder2002-01-211-29/+5
|
* change ostrstream to strstreamBill Hoffman2001-12-191-1/+1
|
* ENH: Improved flexibility of command by allowing specificiation of separate ↵Brad King2001-12-181-53/+83
| | | | input and outputs source lists. Multiple input source lists are now also allowed.
* ENH: Adding VTK_MAKE_INSTANTIATOR command. This command will be used by VTK ↵Brad King2001-12-171-0/+343
kits to register their classes with vtkInstantiator.