summaryrefslogtreecommitdiffstats
path: root/Source/cmGeneratedFileStream.h
Commit message (Collapse)AuthorAgeFilesLines
* Drop SGI as a CMake host compiler.Stephen Kelly2015-01-081-8/+0
| | | | | It has not been tested since commit v3.1.0-rc1~584^2 (Utilities/Release: Drop IRIX binary generation on ferrari, 2014-04-30).
* stringapi: Use strings for generated file stream namesBen Boeckel2014-03-081-1/+1
|
* Use cmsys::[io]fstream instead of cmsys_ios::[io]fstream.Clinton Stimpson2014-01-071-2/+3
| | | | | Also use SystemTools::Fopen() instead of fopen(). This is to eventually support utf-8 filenames.
* Convert CMake to OSI-approved BSD LicenseBrad King2009-09-281-14/+9
| | | | | | | This converts the CMake license to a pure 3-clause OSI-approved BSD License. We drop the previous license clause requiring modified versions to be plainly marked. We also update the CMake copyright to cover the full development time range.
* ENH: Add ability to call Visual Studio macros from CMake. Add a CMake Visual ↵David Cole2007-11-161-2/+2
| | | | Studio macro to reload a solution file automatically if CMake makes changes to .sln files or .vcproj files. Add code to call the macro automatically for any running Visual Studio instances with the .sln file open at the end of the Visual Studio Generate call. Only call the macro if some .sln or .vcproj file changed during Generate. Also, add handling for REG_EXPAND_SZ type to SystemTools::ReadRegistryValue - returned string has environment variable references expanded.
* COMP: Fix warning about not being able to automatically generate a copy ↵Brad King2007-08-011-0/+3
| | | | constructor.
* STYLE: some m_ to this-> cleanupKen Martin2006-03-151-7/+7
|
* COMP: Remove warningAndy Cedilnik2006-01-121-1/+2
|
* ENH: Add support for binaryAndy Cedilnik2006-01-121-1/+1
|
* ENH: Add a way to overwrite compression extensionAndy Cedilnik2006-01-021-0/+8
|
* ENH: Allow changing of file nameAndy Cedilnik2005-05-101-0/+6
|
* COMP: Added pragma directives for SGI compilers to avoid useless warnings.Brad King2005-05-031-0/+8
|
* ENH: Added Close method and updated Open method to allow streams to be reused.Brad King2005-04-051-5/+17
|
* ENH: Add compression supportAndy Cedilnik2005-01-271-0/+11
|
* ENH: Added default constructor and Open method.Brad King2005-01-261-2/+23
|
* STYLE: Adjusted signature of cmGeneratedFileStream to make copy-if-different ↵Brad King2004-11-031-7/+10
| | | | more explicity.
* COMP: Fix new cmGeneratedFileStream for MSVC.Brad King2004-11-031-0/+2
|
* ENH: Re-implemented cmGeneratedFileStream to look like a real stream and ↵Brad King2004-11-031-106/+49
| | | | replace the destination file atomically. This will avoid problems with the process being terminated while generating a file.
* BUG: make sure global generate is done when cmakelist file chagnes, also ↵Bill Hoffman2004-05-201-0/+1
| | | | make sure guids are stored in the cache so the .sln file does not change every time
* 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:Updated copyrightWill Schroeder2002-01-211-29/+5
|
* ENH: try to better handle control-c during make MakefilesBill Hoffman2001-06-041-4/+24
|
* BUG: remove warningBill Hoffman2001-05-231-1/+1
|
* BUG: fix to compile on hp with aCCBill Hoffman2001-05-171-1/+1
|
* ERR: const error fixed.Brad King2001-05-161-1/+1
|
* ERR: Added is_open() check in cmGeneratedFileStream::operator bool() so that ↵Brad King2001-05-161-1/+1
| | | | implicit conversion to bool is not used.
* ENH: cmGeneratedFileStream class added to simplify copy-if-different usage ↵Brad King2001-05-161-0/+142
on generated files.