summaryrefslogtreecommitdiffstats
path: root/Source
Commit message (Collapse)AuthorAgeFilesLines
* now creates output directoriesKen Martin2001-08-102-0/+2
|
* BUG: or and and were inverted.Berk Geveci2001-08-092-4/+4
|
* updated versionKen Martin2001-08-091-1/+1
|
* updated versionKen Martin2001-08-091-1/+1
|
* BUG: add in for scope variableBill Hoffman2001-08-091-0/+1
|
* ENH: update to new style of cache accessKen Martin2001-08-081-1/+1
|
* BUG: can not Add a definition that you just gotBill Hoffman2001-08-082-3/+0
|
* ENH: big change, only allow commands access to the cache via the cmMakefile ↵Bill Hoffman2001-08-0829-212/+210
| | | | class and GetDefinition, also the cmMakefile is the only way for commands to add to the cache. Also, some changes to configure.in that check for for scoping
* ENH: compile with broken 720 SGI C++ compilerBill Hoffman2001-08-072-2/+48
|
* ENH: html output for docsBill Hoffman2001-08-071-4/+4
|
* added new if commandsKen Martin2001-08-064-51/+114
|
* ENH: Added 'IMMEDIATE' option to CONFIGURE_FILE command to force file copy ↵Brad King2001-08-032-20/+32
| | | | and configuration on the initial pass so that current variable values are used.
* ENH: Added use of a class's tag to generate a better set of filenames for ↵Brad King2001-08-022-26/+74
| | | | its wrapper configuration, xml, and generated files. This should also prevent half the classes from re-wrapping when a new one is inserted in the middle.
* BUG: Generated link line for shared libraries had CMAKE_CXX_FLAGS instead of ↵Brad King2001-08-021-1/+1
| | | | CMAKE_CXXFLAGS (note underscore).
* BUG: Fixed off-by-one error in ExpandVariablesInString for case of $ or @ as ↵Brad King2001-08-021-4/+5
| | | | last character of string.
* BUG: We don't want to output -I/usr/include in the INCLUDE_FLAGS variable. ↵Brad King2001-08-021-1/+7
| | | | This causes problems with finding system headers in the wrong places for certain standard library implementations.
* ENH: Added SUBDIR_DEPENDS command and corresponding support code. This ↵Brad King2001-08-016-1/+196
| | | | command allows specification that a set of subdirectories be built before a particular directory.
* BUG: Needed to expand variables of definitions.Brad King2001-08-011-1/+3
|
* BUG: Need to expand variables when a regular expression is specified.Brad King2001-08-011-1/+3
|
* ENH: Added INSTALL_PROGRAMS command and corresponding support. This ↵Brad King2001-07-3110-17/+281
| | | | involved splitting cmTarget::INSTALL into INSTALL_FILES and INSTALL_PROGRAMS enum values. INSTALL_FILES no longer adds execute permission. The INSTALL_PROGRAMS commnad takes either a list of explicit names, or a regex. It will not expand source lists like the INSTALL_FILES command will.
* ERR: ElementCombinationGenerator::ReplacePortion needs to be a friend of ↵Brad King2001-07-301-1/+3
| | | | ElementCombinationGenerator so that it can get access to ElementCombinationGenerator::Substitution. Also fixed one minor problem for HP build.
* BUG: Changed include and link directory paths in cmMakefile back to ↵Brad King2001-07-307-61/+52
| | | | std::vector because there is an order dependency. Only cmMakefile::AddIncludeDirectory and cmMakefile::AddLinkDirectory should be called to add directories to the paths. They make sure the paths are unique as they are inserted.
* Removed the Uniquification of the include and link directory list in FinalPass,Ian Scott2001-07-307-56/+50
| | | | | and achieved the same effect by makein m_LinkDirectores and m_IncludeDirectories a set rather than vector
* ENH: Re-implemented ExpandVariablesInString to significantly improve ↵Bill Hoffman2001-07-271-16/+100
| | | | performance.
* MAkefile now strips duplicate directores from the libraries and include pathsIan Scott2001-07-272-0/+31
|
* ENH: Added cable class-set expansion and tagging for alternate name ↵Brad King2001-07-264-54/+635
| | | | generation. This should make the generated wrappers much easier to setup and use.
* ENH: change the logic of disabling the ok button a bitBill Hoffman2001-07-262-4/+11
|
* fixed warningsKen Martin2001-07-261-2/+1
|
* ENH: rework GUI with configure/OK/CancelBill Hoffman2001-07-2511-130/+174
|
* added for each commandKen Martin2001-07-256-51/+71
|
* new commandsKen Martin2001-07-254-0/+413
|
* Removing trailing spaces after cache entry value.Berk Geveci2001-07-251-3/+4
|
* BUG: fix on scroll with buttonsBill Hoffman2001-07-244-2/+28
|
* BUG: Fixed dependency generation to work for when there are many, many ↵Brad King2001-07-241-10/+3
| | | | dependencies. Output is now easier to ready anyway because each dependency is on its own line.
* BUG: CompilerIsMipsPro needs to redirect stderr to stdout so that the test ↵Brad King2001-07-232-15/+19
| | | | output can be checked.
* ENH: Added support for UNIX compilers. GCC and MIPSpro are supported.Brad King2001-07-232-2/+115
|
* ENH: Added support for non-verbose mode output from running a command. This ↵Brad King2001-07-232-10/+24
| | | | can be used when it is expected that the command may fail.
* ENH: Added CONFIGURE_GCCXML command to do hard work of configuring GCCXML's ↵Brad King2001-07-233-0/+262
| | | | flags for the current compiler. Currently only implemented correctly for Visual C++ in Windows.
* ENH: Save and Load of recent Source and Binary directories added.Luis Ibanez2001-07-196-10/+349
|
* updated versionKen Martin2001-07-181-1/+1
|
* limit library search to appropriate extensionsKen Martin2001-07-181-0/+3
|
* ENH: Added generation of dependencies on the CMake-generated input to ↵Brad King2001-07-171-1/+21
| | | | gcc-xml so that re-generation of wrappers will occur if a header changes.
* BUG: Need to expand variables in search paths in case it hasn't been done ↵Brad King2001-07-171-1/+3
| | | | yet by the makefile.
* ENH: Hacked together a new implementation of the dependency generator code. ↵Brad King2001-07-174-201/+158
| | | | This should support finding dependencies for individual files without doing them for the entire makefile. Use cmMakeDepend::FindDependencies() to do this.
* ENH: Added support for using backslash-style escaping in CMakeLists.txt file ↵Brad King2001-07-172-3/+50
| | | | arguments. This allows double quotes to be used in arguments.
* ENH: Source and header file extensions are in variables in cmMakefile.Amitha Perera2001-07-168-84/+105
| | | | AUX_SOURCE_DIRECTORY will only add files that have a "source" extension.
* BUG: make sure cache is clearedBill Hoffman2001-07-161-8/+3
|
* ENH: add support for mac osxBill Hoffman2001-07-162-2/+25
|
* ENH: add a check to avoid quitting before rebuildingBill Hoffman2001-07-124-8/+40
|
* version numKen Martin2001-07-111-1/+1
|