summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* ENH: Initial import of expatAndy Cedilnik2004-06-2521-0/+11237
|
* ENH: remove warning on borlandBill Hoffman2004-06-241-2/+1
|
* BUG: exec program should not fail if it can not exec the program, but should ↵Bill Hoffman2004-06-241-1/+5
| | | | only set the return value to -1 and set the output to the reason for the failure.
* BUG: fix spaces in path on mingw, and change EXEC_PROGRAM to return false ↵Bill Hoffman2004-06-235-8/+55
| | | | when it does not run, also do not convert the directory to an output path for EXEC_PROGRAM as this is done by the process execution, and doing it twice may cause trouble on some shells.
* C++ compiler is not set for c only projectsBill Hoffman2004-06-231-1/+1
|
* ENH: Adding MODIFIED property to cache values that have been changed by the ↵Brad King2004-06-233-12/+83
| | | | user.
* BUG: fix spaces in path with mingw and custom commandsBill Hoffman2004-06-221-19/+33
|
* change minimum cmakeBill Hoffman2004-06-211-1/+1
|
* BUG: Added special hack for VTK 4.0-4.4 to re-enable automatic addition of ↵Brad King2004-06-181-3/+25
| | | | current source directory to -I path.
* ERR: Fixed typo.Brad King2004-06-181-1/+1
|
* BUG: Need to preserve automatic addition of source tree to -I path if ↵Brad King2004-06-181-0/+17
| | | | CMAKE_BACKWARDS_COMPATIBILITY is set to below 2.0.
* BUG: Fixed parsing of unquoted arguments to allow double-quotes within the ↵Brad King2004-06-181-1/+1
| | | | argument.
* BUG: Fixed parsing of unquoted arguments to allow double-quotes within the ↵Brad King2004-06-182-38/+35
| | | | argument.
* clean up documentationBill Hoffman2004-06-161-3/+5
|
* clean up commands so they don't need extra variableBill Hoffman2004-06-164-46/+0
|
* Removing automatic addition of a -I path for the current source directory.Brad King2004-06-151-2/+0
| | | | | | | | | | | | | | | | | | | This is not consistent with the Visual Studio generators which do not provide this path. It should not be added anyway because it is adding an include path not requested by the CMakeLists.txt code. The code I'm removing was originally added in revision 1.17 of cmUnixMakefileGenerator.cxx as a part of several other changes and has a commit log entry of "some bug fixes" It was propagated from their to cmLocalUnixMakefileGenerator.cxx. Since all our projects build in the VS IDE without this include path, it should not be needed. Users can easily fix problems caused by this by adding INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}) to their CMakeLists.txt code. This was often necessary previously when a project was originally written on a Unix system and then built with Visual Studio.
* fix include order because of GetCurrentDirectory define and windows.h problemBill Hoffman2004-06-153-5/+3
|
* ENH: add NDEBUG to windows release builds for both ide and nmakeBill Hoffman2004-06-143-15/+15
|
* added strequalKen Martin2004-06-142-23/+27
|
* ENH: Handle spaces in the pathAndy Cedilnik2004-06-141-2/+2
|
* ERR: On Mac we need GET_SOURCE_FILE_PROPERTY for building curlAndy Cedilnik2004-06-141-2/+2
|
* ENH: add FindKDE from Alex from kde.orgBill Hoffman2004-06-141-0/+151
|
* fix for bug 915Bill Hoffman2004-06-141-0/+8
|
* BUG: fix sub project path problemBill Hoffman2004-06-143-3/+6
|
* BUG: fix crash for if statment due to bad microsoft docs on deque BUG id 917Bill Hoffman2004-06-111-51/+110
|
* fix bug on mac if COMPILE FLAGS are not set then you end up with NOTFOUND as ↵Bill Hoffman2004-06-111-1/+6
| | | | a compile flag.
* BUG#891: When building CMake itself, use the new cmake to install so that ↵Ken Martin2004-06-091-2/+15
| | | | the current cmake can be overwritten.
* ERR: Do not use the binary directory as a regular expression.Ken Martin2004-06-091-2/+4
|
* ERR: Disable long double warnings on xlC for the Mac.Ken Martin2004-06-091-0/+7
|
* BUG: Files in top-level directory of source tree were not reported in ↵Ken Martin2004-06-091-1/+1
| | | | updates log.
* ENH: CleanupsAndy Cedilnik2004-06-091-3/+3
|
* BUG: Even if update fails it should produce valid XMLAndy Cedilnik2004-06-091-8/+8
|
* ENH: Use viewcvs instead of cvswebAndy Cedilnik2004-06-091-1/+2
|
* support for floating ponit stridesKen Martin2004-06-081-5/+44
|
* a) new version of tools like Doxygen and Graphviz now set install path info ↵Sebastien Barre2004-06-082-6/+6
| | | | | | in win32 registery. use it. b) remove DOT_PATH, it was polluting the cache (can be computed from DOT, update CMakeLists.txt accordingly if DOT_PATH is not defined)
* BUG: undo last bug fix because it breaks cmake, rebuild_cache on ParaView ↵Bill Hoffman2004-06-081-7/+1
| | | | gets tons of errors about not being able to create the bin directory
* BUG: Do not create a directory on top of a file.Brad King2004-06-071-1/+7
|
* ERR: Remove warningAndy Cedilnik2004-06-071-2/+2
|
* ERR: Do not add the library if no sources are used.Brad King2004-06-041-6/+8
|
* ERR: Remove testinf of PREORDER on WindowsAndy Cedilnik2004-06-032-4/+6
|
* ERR: Try to fix simple install on vs6Andy Cedilnik2004-06-032-0/+2
|
* Fix for bug 903 change order of fltk librariesBill Hoffman2004-06-031-2/+6
|
* ENH: Implement scp submissionAndy Cedilnik2004-06-024-9/+127
|
* BUG#895: Adding -DNDEBUG to C and C++ flags for release builds.Brad King2004-06-016-18/+18
|
* ENH: More elaborate install testAndy Cedilnik2004-06-0110-0/+54
|
* ENH: make sure find library does not find directoriesBill Hoffman2004-06-011-6/+12
|
* BUG: fix for 871, include external should work for 7.1 and 7.0Bill Hoffman2004-06-012-4/+13
|
* ENH: Fix bug in cmake install when exec/librayr output path not defined. ↵Andy Cedilnik2004-06-011-0/+10
| | | | Closes Bug #899 - subdir INSTALL_TARGETS INSTALL_PROGRAMS dont work
* ENH: Fix preorder. This caused preorder to not work and the test passed ↵Andy Cedilnik2004-06-011-1/+1
| | | | because of jump-over rule
* ctest -S support for multiple ctest command argumentsKen Martin2004-05-282-33/+59
|