summaryrefslogtreecommitdiffstats
path: root/Source/cmSystemTools.cxx
Commit message (Collapse)AuthorAgeFilesLines
* ENH: Added Split method to cmSystemTools to split a string into lines on its ↵Brad King2002-10-111-0/+28
| | | | newlines.
* ENH: Renamed cmStringStream to cmOStringStream and added cmIStringStream. ↵Brad King2002-10-101-3/+3
| | | | Removed cmInputStringStream.
* Fix for run command on windows. If you specify command in quotes but not ↵Andy Cedilnik2002-10-071-2/+6
| | | | full path, it should still work
* Revert back. Does not seems to work on WindowsAndy Cedilnik2002-10-071-4/+0
|
* Check if directory was actually createdAndy Cedilnik2002-10-061-0/+4
|
* Fix borland build. Borland Run command should be static, since it is called ↵Andy Cedilnik2002-10-051-1/+2
| | | | with no object...
* Add missing argumentAndy Cedilnik2002-10-041-1/+1
|
* Cleanup RunCOmmand code and move borland one to vtkWin32ProcessExecution, so ↵Andy Cedilnik2002-10-041-288/+94
| | | | that it is all in one place... Add timeout option whihc does not work yet, but it should not produce warning any more
* CleanupAndy Cedilnik2002-10-021-2/+4
|
* Fix bug in borland run commandKen Martin2002-10-021-9/+6
|
* Another attempt on Windows 98Andy Cedilnik2002-09-301-1/+1
|
* Attempt to unify the codeAndy Cedilnik2002-09-301-1/+1
|
* Fix bug in printingAndy Cedilnik2002-09-301-2/+6
|
* Make borland pass all the tests on XP (and 2000?)Andy Cedilnik2002-09-301-2/+1
|
* Remove debugAndy Cedilnik2002-09-301-1/+0
|
* It is late and it at least seems to work better than before...Andy Cedilnik2002-09-301-42/+45
|
* Simplify debugging by resetting error codeAndy Cedilnik2002-09-301-0/+1
|
* Add two cmake commands -E echo for echoing strings and -E comspec for ↵Andy Cedilnik2002-09-271-4/+270
| | | | workaround of bug of windows 9x; add another implementation of run command on windows which should work...
* Add detection of file format from extensionAndy Cedilnik2002-09-251-0/+38
|
* Add support for mac dylibAndy Cedilnik2002-09-241-0/+8
|
* Try to remove some warningsAndy Cedilnik2002-09-231-1/+1
|
* Supress standard error when running commandAndy Cedilnik2002-09-191-0/+1
|
* Improve message handler to include client data.Andy Cedilnik2002-09-181-3/+5
|
* ENH: Added FileIsFullPath test method.Brad King2002-09-131-0/+33
|
* ERR: Fix for borland on linux. We cannot directly compare the st_dev and ↵Brad King2002-09-101-3/+3
| | | | st_ino members of struct stat. Use memcmp instead.
* Ok, now cd will work on windowsAndy Cedilnik2002-07-251-1/+1
|
* ENH: Added GetFilenameWithoutLastExtension.Brad King2002-07-151-0/+21
|
* removed all source lists from the system and made them vectors. Also ↵Ken Martin2002-06-271-1/+1
| | | | 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-12/+7
| | | | depending on the platform. The interface is that of std::stringstream, so no "ends" or "rdbuf()->freeze(0)" lines are needed.
* ENH: FindLibrary supports .Net specific lib dirsSebastien Barre2002-06-191-1/+20
|
* ERR: Fixed compiler warnings.Brad King2002-06-181-14/+29
|
* ENH: FindLibrary can now use the makefile to add some compiler-specific lib ↵Sebastien Barre2002-06-141-1/+43
| | | | search path (depending on the generator).
* fixed bug in get short path for quoted pathsKen Martin2002-05-311-1/+18
|
* ENH: increase coverageBill Hoffman2002-05-231-17/+0
|
* ENH: better comment processingBill Hoffman2002-05-221-4/+19
|
* RunCommand now checks whether the process died abnormally (on Unix)Berk Geveci2002-05-151-2/+41
|
* ENH: add no_system_path option to FindProgram so that the PATH is ignoredSebastien Barre2002-05-121-2/+6
|
* ERR: Added variable initializer.Brad King2002-05-101-1/+1
|
* BUG: fix SameFile function for windows, and compare source directoriesBill Hoffman2002-04-191-0/+42
|
* BUG: do escaped semi-colon betterBill Hoffman2002-04-181-1/+1
|
* ENH: add ability to escape semi-colonsBill Hoffman2002-04-181-3/+24
|
* Syntax seemed to be confusing according to the BillSebastien Barre2002-04-161-10/+8
|
* use stream not sprintfBill Hoffman2002-04-151-10/+12
|
* ENH: FilesDiffer checks for 0 byte filesSebastien Barre2002-04-151-12/+5
|
* ENH: more paranoid checkingsSebastien Barre2002-04-141-23/+64
|
* FIX: iostream binary flag should be used for cygwin tooSebastien Barre2002-04-121-9/+9
|
* FIX: fix UMRSebastien Barre2002-04-121-7/+31
|
* ENH: speed improvementsBill Hoffman2002-04-111-55/+8
|
* ERR: ReplaceString didn't work properly if replace was longer than with asJohn Biddiscombe2002-04-081-1/+2
| | | | | length added to start pos on next search was replaceLength instead of withLength
* ENH: fix more space problems, you can add args to the ExecProgram command ↵Bill Hoffman2002-04-031-11/+45
| | | | separatly now