summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fixed warning.Berk Geveci2001-12-181-1/+0
|
* ENH: Improved flexibility of command by allowing specificiation of separate ↵Brad King2001-12-182-64/+94
| | | | input and outputs source lists. Multiple input source lists are now also allowed.
* ENH: Improved dependency generation. If any cmake.depends is out of date, ↵Brad King2001-12-183-15/+22
| | | | all of them in the tree are re-generated. This is necessary in certain cases when CMakeLists.txt files change.
* ENH: Added option to IF command to test if a command exists. Syntax is ↵Brad King2001-12-181-0/+8
| | | | IF(COMMAND name-of-command).
* ENH: Added option to IF command to test if a command exists. Syntax is ↵Brad King2001-12-183-2/+14
| | | | IF(COMMAND name-of-command).
* BUG: Existing projects have cache entries with the same name as the command ↵Brad King2001-12-181-1/+0
| | | | they adjust (VTK_WRAP_JAVA in VTK, for example). Setting the command name as a variable is too dangerous.
* Better handling of new lines when moving from dos to unixAndy Cedilnik2001-12-171-2/+2
|
* ENH: Adding VTK_MAKE_INSTANTIATOR command. This command will be used by VTK ↵Brad King2001-12-173-2/+462
| | | | kits to register their classes with vtkInstantiator.
* ENH: Each cmake command now adds a cmake variable of its own name, setBrad King2001-12-171-0/+1
| | | | | | | | | to ON. This allows constructs in CMakeLists.txt files like: IF(FOO_COMMAND) FOO_COMMAND() ENDIF(FOO_COMMAND) This provides the option to add CMake commands for extra functionality without breaking compatability with earlier versions of CMake.
* remove stack stuffBill Hoffman2001-12-172-3/+3
|
* use a better compiler nameBill Hoffman2001-12-171-1/+1
|
* ENH: allow custom commands for files that msdev knows aboutBill Hoffman2001-12-171-0/+1
|
* Wrap abstract class too, as per David Gobbi's request (for the sake of the ↵Sebastien Barre2001-12-161-9/+6
| | | | | | internal documentation features of python").
* use -i not -k for makeBill Hoffman2001-12-151-1/+1
|
* Updated toolbar.Berk Geveci2001-12-1314-83/+325
|
* ENH: allow local changesBill Hoffman2001-12-121-0/+2
|
* Added doc.Berk Geveci2001-12-121-1/+2
|
* ENH: Added /lib to curses search path.Brad King2001-12-121-3/+3
|
* Added support for a 2nd mpi library (usually mpi++)Berk Geveci2001-12-121-0/+5
|
* BUG: cmake.depends files of zero size were not being re-written in some ↵Brad King2001-12-111-0/+1
| | | | cases. Added a comment output to the top of the file so it will be re-written every time.
* ENH: Adding /usr/*/python1.5 for RedHat 7.1/Python 1.5 usersDan Blezek2001-12-111-0/+2
|
* remove warningBill Hoffman2001-12-111-1/+1
|
* ENH: add flushBill Hoffman2001-12-111-0/+1
|
* FIX: The command was modified it uses now a target and a source listLuis Ibanez2001-12-112-17/+9
| | | | | composed of .fl files. The names of the generated .cxx files are added internally to the Sources list of the target.
* FIX: GENERATED_CODE type is no longer needed: generated code is not a Target.Luis Ibanez2001-12-112-3/+1
|
* ENH: These files are now generated from the .fl file by FLTK_WRAP_UI command.Luis Ibanez2001-12-112-305/+0
|
* FIX: FLTK_WRAP_UI command modified.Luis Ibanez2001-12-111-2/+9
|
* ENH: Added more filenames for tclsh program. Also now only looks for ↵Brad King2001-12-101-7/+12
| | | | cygtclsh80 if under cygwin.
* BUG: LIBRARY_OUTPATH_PATH may be "set" to the null string, in which case itAmitha Perera2001-12-101-1/+2
| | | | should be ignored.
* ENH: SUBDIR_DEPENDS command now does nothing. The parallel build ↵Brad King2001-12-105-54/+34
| | | | functionality is now automatic. Dependencies are setup to force the same build order as a single threaded build, but multiple files in the same directory can be built simultaneously. Also fixed bug with inheriting CMakeLists.txt files when a directory level is skipped.
* BUG: if LIBRARY_OUTPUT_PATH is set, then use the fullpath for a remote targetBill Hoffman2001-12-091-1/+6
|
* WAR: remove warningBill Hoffman2001-12-091-1/+1
|
* BUG: executable extension wrong for ctest search, and was not looking in ↵Bill Hoffman2001-12-081-1/+17
| | | | Debug and Release
* If an entry starts with // (network paths), double quote it.Berk Geveci2001-12-071-2/+4
|
* BUG: the rule for generating a library no longer has the full path, and so theAmitha Perera2001-12-071-2/+2
| | | | dependency targets shouldn't, either.
* Comments start with TWO leading slashes not _one_Berk Geveci2001-12-071-1/+1
|
* version revKen Martin2001-12-071-1/+1
|
* release 10Ken Martin2001-12-071-2/+2
|
* ENH: add mark as not advanced to mark as advancedBill Hoffman2001-12-075-11/+60
|
* yet another releaseBill Hoffman2001-12-071-2/+260
|
* ENH: convert to windows pathsBill Hoffman2001-12-071-0/+4
|
* ENH: use windows paths to run commands and escape spacesBill Hoffman2001-12-071-0/+4
|
* ENH: add custom commands for targetsBill Hoffman2001-12-074-13/+120
|
* Remove "unused var" warning from C_FLAGSSebastien Barre2001-12-071-1/+1
|
* Do not output library search path if the library path option/flag is empty + ↵Sebastien Barre2001-12-071-18/+46
| | | | add CMAKE_LINKER_HIDE_PARAMETERS since some linkers just do not support the @<< syntax
* Add CMAKE_LINKER_HIDE_PARAMETERS since some linkers just do not support the ↵Sebastien Barre2001-12-071-0/+4
| | | | @<< syntax
* Fix bug with stringAndy Cedilnik2001-12-061-1/+1
|
* ENH: call convert to unix slashes for path and filepath entriesBill Hoffman2001-12-061-0/+5
|
* Added support for ~.Berk Geveci2001-12-061-2/+11
|
* handle tildasKen Martin2001-12-061-0/+10
|