summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalVisualStudioGenerator.cxx
Commit message (Collapse)AuthorAgeFilesLines
* ENH: now target names can be used in add_custom_command() andAlexander Neundorf2007-05-091-2/+5
| | | | | | | | | | add_custom_target() as COMMAND, and cmake will recognize them and replace them with the actual output path of these executables. Also the dependency will be added automatically. Test included. ENH: moved TraceVSDependencies() to the end of GlobalGenerator::Configure(), so it is done now in one central place Alex
* ENH: check in initial conv library stuffBill Hoffman2007-02-161-1/+2
|
* ENH: do not use relative paths for custom command commands if they working ↵Bill Hoffman2007-01-181-1/+8
| | | | directory is used
* BUG: Avoid leading and trailing newlines in custom command scripts because ↵Brad King2006-10-251-6/+12
| | | | some VS6 versions do not like the trailing backslash this produces. This addresses bug#3977.
* ENH: Re-implemented command line argument shell quoting to support several ↵Brad King2006-09-271-1/+12
| | | | platforms with one code base.
* BUG: Centralized generation of command line arguments in escaped form. This ↵Brad King2006-09-211-0/+51
| | | | addresses bug#3786 for several platforms.
* BUG: Duplicate object name detection should not be case sensitive since this ↵Brad King2006-08-081-5/+8
| | | | code is used on Windows file systems. This addresses bug#3589.
* BUG: Make sure sources with unknown extensions are not compiled by VS.Brad King2006-08-031-3/+13
|
* ENH: Adding .hh file as a C++ header file extension. Remove duplicate code ↵Brad King2006-08-011-8/+12
| | | | from implementation of unique object name computation for VS generators. This addresses bug#3565.
* STYLE: fix long linesKen Martin2006-07-181-3/+2
|
* ENH: Moved unique object file name computation from ↵Brad King2006-07-111-0/+89
cmLocalUnixMakefileGenerator3 up to cmLocalGenerator for use by all generators. Created cmLocalVisualStudioGenerator as superclass for all VS generators. Implemented on-demand unique object file name computation for VS 7 generator to avoid slow compiles when all sources are in subdirectories.