summaryrefslogtreecommitdiffstats
path: root/Source
Commit message (Collapse)AuthorAgeFilesLines
* ERR: Added pragma to disable symbol length warning for Intel compiler.Brad King2001-03-211-0/+4
|
* ERR: Small bug in generated DSP file fixed. A custom command environment ↵Brad King2001-03-202-4/+2
| | | | variable has been replaced with explicity writing out the command.
* ENH: Added SOURCE_GROUP command and corresponding support code. This ↵Brad King2001-03-2017-232/+721
| | | | command allows CMakeLists files to specify how sources are organized into groups in the generated DSP files and makefiles.
* ENH: ignore unused libary warnings, removed /forceJim Miller2001-03-191-6/+6
|
* ENH: Added text files group to DSP output. CMakeLists.txt is duplicated in ↵Brad King2001-03-192-0/+6
| | | | this group and outside, but fixing this will require a reorganization of custom rule generation. I should get to that soon.
* ERR: Changed generation of rule to generate cable_config.xml to be produced ↵Brad King2001-03-191-6/+12
| | | | differently for windows and unix.
* ERR: Removed functions I just added. They don't belong here (yet?).Brad King2001-03-192-34/+0
|
* ENH: Added generation of a rule to re-run CMake if the cable_config.xml file ↵Brad King2001-03-191-0/+26
| | | | is missing.
* ENH: Added functions to get information about the CMake executable on each ↵Brad King2001-03-192-0/+32
| | | | platform.
* ERR: Re-ordered declaration of members v. order of initialization on the ↵Brad King2001-03-162-11/+11
| | | | constructor to match each other.
* BUG: Rearranged cable config file open to do open in construction of ↵Brad King2001-03-162-10/+15
| | | | m_OutputFile. Fixes problem on SGI with opening the file.
* ENH: Changed generated includes to not have full path specified.Brad King2001-03-162-20/+13
|
* ENH: Added INCLUDE_REGULAR_EXPRESSION command to set regular expression used ↵Brad King2001-03-157-15/+135
| | | | in dependency checking.
* ENH: Added SOURCE_FILES syntax to CABLE_DEFINE_SET command.Brad King2001-03-152-4/+99
|
* BUG: Moved definition of CMAKE_SOURCE_DIR and CMAKE_BINARY_DIR to be as soon ↵Brad King2001-03-152-5/+3
| | | | as their information is known.
* BUG: Fixed segfault when CABLE_PACKAGE is only CABLE command. Related to ↵Brad King2001-03-152-2/+19
| | | | order of virtual destructor calls.
* ERR: Added for-loop scoping hack for CMake sources on MSVCBrad King2001-03-141-0/+2
|
* ENH: Added support for comments inside function calls and indented comments.Brad King2001-03-141-1/+5
|
* ENH: Added support for element tag specification with syntax tag:element as ↵Brad King2001-03-132-19/+73
| | | | an argument to the CABLE_DEFINE_SET command. A single colon with nothing to its left will result in an empty tag.
* ERR: Less-than-zero test replaced with greater-than-zero since we want zero ↵Brad King2001-03-131-1/+1
| | | | arguments.
* ENH: Improved error handling when GetError is called on a command that has ↵Brad King2001-03-123-3/+20
| | | | not called SetError.
* Include directories under Win32 only (inherited by subdirs)Geoffrey Cross2001-03-123-0/+127
|
* ENH: Finished Simplifying dsptemplate processing with in place of separate ↵Brad King2001-03-097-81/+37
| | | | Release, Debug, ReleaseDLL, ... configurations.
* ERR: Fixed library path problem for ReleaseMinSize build. should now be ↵Brad King2001-03-093-14/+4
| | | | used in place of separate Release, Debug, and ReleaseMinSize.
* ERR: Fixed header template for Release MinSize builds.Brad King2001-03-091-10/+10
|
* ENH: Added Release MinSize configuration for executables.Brad King2001-03-091-0/+24
|
* ENH: Made UTILITY_SOURCE command inherited, just like FIND_PROGRAM.Brad King2001-03-091-0/+6
|
* ERR: Missing initalization of a cmClassFile::m_HeaderFileOnly fixed.Brad King2001-03-091-0/+1
|
* ENH: Added utility dependency support. Now a project can depend on other ↵Brad King2001-03-097-14/+108
| | | | executables as well as link libraries.
* ERR: Added automatic creation of directory for cable_config.xml file and ↵Brad King2001-03-092-2/+13
| | | | corresponding error reporting.
* ENH: Added proper dependency generation for a package on cable executable.Brad King2001-03-091-12/+7
|
* ERR: Replaced CMAKE_CFG= with CMAKE_CFG_OUTDIR= to fix windows behavior.Brad King2001-03-082-4/+4
|
* ENH: Added output of custom rules for XML sources.Brad King2001-03-082-0/+6
|
* ENH: Added output of defines flags as part of INCLUDE_FLAGS.Brad King2001-03-081-1/+2
|
* ENH: Added output of a custom command's m_Source as a dependency.Brad King2001-03-081-2/+2
|
* ERR: Minor wording error in output message.Brad King2001-03-081-1/+1
|
* ENH: Creation of generator rule now properly uses the custom command's ↵Brad King2001-03-081-5/+3
| | | | m_Source member.
* ENH: Added creation of custom rules for generating CABLE packages.Brad King2001-03-087-12/+96
|
* ENH: Added support for finding dependencies for files that don't exist. ↵Brad King2001-03-082-26/+96
| | | | Dependency recursion begins with hints provided in the cmClassFile for a file if it doesn't exist.
* ENH: Added .txx detection for Header block output.Brad King2001-03-081-1/+25
|
* ENH: Added UTILITY_SOURCE command for specifying where a 3rd party utility's ↵Brad King2001-03-087-2/+195
| | | | source is located when it is included in the distribution of a project.
* ERR: Commented out experimental code that was accidentally checked in.Brad King2001-03-071-6/+6
|
* ENH: Added Cable to Utilities and appropriate CMakeLists.txt changes. Moved ↵Brad King2001-03-071-0/+7
| | | | VXLNumerics link out of source's root directory and into separate entries for Code and Testing directories. This prevents linking of all programs (like Cable) with the numerics library.
* ENH: Added custom rule support to cmUnixMakefileGenerator.Brad King2001-03-022-0/+23
|
* BUG: repeat all -l options to avoid having to worry about link order.Will Schroeder2001-03-021-3/+8
|
* ENH: CABLE config file (config_cable.xml) should now be opened in the output ↵Brad King2001-03-023-4/+7
| | | | directory.
* ENH: Change to new CABLE command architecture. CABLE configuration code is ↵Brad King2001-03-0123-232/+1016
| | | | now generated on the first pass, during the Invoke() calls.
* BUG: fix circular depends on libraries and remove depends for static librariesBill Hoffman2001-02-286-14/+34
|
* ENH: CABIL -> CABLE rename.Brad King2001-02-2811-153/+153
|
* many enhancements including dll supportKen Martin2001-02-276-34/+76
|