summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalVisualStudio7Generator.cxx
Commit message (Collapse)AuthorAgeFilesLines
* STYLE: fix line lengthAlexander Neundorf2007-05-101-1/+2
| | | | Alex
* BUG: fix problem for non-C/CXX languages with Visual Studio, theAlexander Neundorf2007-05-091-2/+5
| | | | | | | dependencies for the custom commands added for java were not handled correctly. Needs more work. Alex
* BUG: Fixed cmLocalVisualStudio7Generator to deal with quotes in macro ↵Brad King2007-05-091-9/+8
| | | | definitions properly. This addresses bug#4983.
* ENH: now target names can be used in add_custom_command() andAlexander Neundorf2007-05-091-33/+27
| | | | | | | | | | 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
* COMP: removed unused variable tempAlexander Neundorf2007-05-041-1/+0
| | | | Alex
* ENH: added internal target property for the name of the project fileKen Martin2007-04-101-4/+1
|
* ENH: Created method cmTarget::GetExportMacro to centralize computation of ↵Brad King2007-03-281-15/+3
| | | | the export symbol name. This removes duplicate code from all the generators. Also enabled the export definition for executable targets with the ENABLE_EXPORTS property set.
* ENH: Added support for import libraries created by executable and module ↵Brad King2007-03-191-13/+7
| | | | targets. The module import libraries should never be used but some windows compilers always create them for .dll files since there is no distinction from shared libraries on that platform. The executable import libraries may be used to create modules that when loaded bind to symbols from the executables. This is an enhancement related to bug#4210 though not requested by it explicitly.
* ENH: Added computation of object file names that are almost always short ↵Brad King2007-03-161-1/+23
| | | | enough to not exceed the filesystem path length limitation. This is useful when a source file from outside the tree is referenced with a long full path. The object file name previously would contain the entire path which when combined with the build output directory could exceed the filesystem limit. Now CMake recognizes this case and replaces enough of the beginning of the full path to the source file with an md5sum of the replaced portion to make the name fit on disk. This addresses bug#4520.
* BUG: Reverting previous changes related to using an empty string for a ↵Brad King2007-03-141-4/+0
| | | | relative path to the current directory. Too many places want the . version. Instead we can just convert the . to an empty string in the one place that motiviated the original change.
* BUG: When the current output directory is a link directory we need to ↵Brad King2007-03-141-0/+4
| | | | reference it with the relative path "." instead of an empty relative path.
* BUG: All executable and library project types should specify a program ↵Brad King2007-03-141-21/+6
| | | | database file name for all configurations. Even when debug information is not used the .pdb file specified is used to construct the name of a .idb file that exists for all configurations when building with the VS IDE.
* BUG: Split precompiled header flags into a separate per-global-generator ↵Brad King2007-03-121-83/+84
| | | | flag map. This is needed because the flag mappings differ across VS IDE versions. This fixes bug#3512 for VS8 where as the previous fix only worked for VS7.
* ENH: Added implib option to cmTarget::GetDirectory to support a separate ↵Brad King2007-03-091-15/+9
| | | | directory containing the import library. This is an incremental step for bug#4210.
* ENH: Combined cmTarget::GetDirectory and cmTarget::GetOutputDir since they ↵Brad King2007-03-081-7/+7
| | | | are nearly the same. This is another step for bug#2240.
* ENH: Replaced LibraryOutputPath and ExecutableOutputPath variables in ↵Brad King2007-03-081-53/+22
| | | | Makefile and VS generators to instead ask each target for its output path. This significantly reduces total code size and centralizes previously duplicate code. It is also a step towards bug#2240.
* BUG: Get rid of ancient variables CMAKE_CXX_WARNING_LEVEL, ↵Brad King2007-03-071-11/+0
| | | | CMAKE_CXX_USE_RTTI, CMAKE_CXX_STACK_SIZE which are only partially implemented and now taken care of by flag mapping anyway.
* COMP: fix some w4 warningsKen Martin2007-03-021-1/+1
|
* STYLE: fix line lengthBill Hoffman2007-02-211-1/+2
|
* BUG: fix for bug 4423 set language fixesBill Hoffman2007-02-201-2/+9
|
* STYLE: fix line length issuesBill Hoffman2007-02-171-1/+2
|
* ENH: fix for vs ideBill Hoffman2007-02-161-0/+14
|
* ENH: check in initial conv library stuffBill Hoffman2007-02-161-0/+13
|
* BUG: Do not hack the exception handling default for linker flags or for ↵Brad King2007-02-151-0/+8
| | | | per-source-file flags.
* STYLE: fix line lengthBill Hoffman2007-02-011-1/+2
|
* ENH: Added cmTarget::GetPDBName method to simplify computation of .pdb file ↵Brad King2007-02-011-14/+2
| | | | name for a target.
* BUG: Do not use bitwise OR on bool.Brad King2007-02-011-1/+1
|
* ENH: Added a special flags integer field to the flag map entries. Added ↵Brad King2007-02-011-79/+141
| | | | flags for user values and other special cases. Added precompiled header flag translation entries. This addresses bug#3512.
* COMP: Removed unused variable.Brad King2007-02-011-1/+0
|
* ENH: Added mapping of /NODEFAULTLIB flag when no values are provided.Brad King2007-02-011-0/+2
|
* ENH: Reimplemented parsing and mapping of flags into vcproj file attribute ↵Brad King2007-02-011-279/+374
| | | | options. This cleans up and centralizes a few things. It is in preparation for dealing with precompiled header flags for bug #3512 since they require some special handling.
* BUG: The .pdb file generated for a library or executable should match the ↵Brad King2007-02-011-17/+61
| | | | real file name used for the target. This addresses bug#3277.
* BUG: make sure external vs projects use the GUID in the project if it has one.Bill Hoffman2007-01-311-1/+81
|
* STYLE: fix link lenght issueBill Hoffman2007-01-151-2/+4
|
* BUG: fix for bug 4239, NODEFAULTLIB flag support in ideBill Hoffman2007-01-121-11/+41
|
* BUG: When writing newlines between script portions in prebuild, prelink, and ↵Brad King2006-10-261-3/+3
| | | | postbuild command lines they must be escaped for XML so that the IDE receives them. This fixes the fix for bug #3977.
* BUG: Adjust prebuild/prelink/postbuild script construction to account for ↵Brad King2006-10-251-0/+12
| | | | ConstructScript no longer producing trailing newlines. This addresses bug#3977.
* ENH: Adding image version number (major.minor) property to windows binaries. ↵Brad King2006-10-161-0/+13
| | | | Default is 0.0, but the VERSION target property may change the value. Windows now has first-class support for dll and exe versioning. This addresses bug#1219.
* BUG: fix for bug#3908 if header_file_only is set on cxx files in visual ↵Bill Hoffman2006-10-131-4/+14
| | | | studio do not compile them
* BUG: fix for fat file systems and vs8 #2617Bill Hoffman2006-10-041-0/+11
|
* BUG: fix for bug#3362 xml escapes on -D stuff for visual studioBill Hoffman2006-10-041-1/+1
|
* BUG: fix for bug# 3664Bill Hoffman2006-10-041-1/+13
|
* BUG: fix for bug#3738Bill Hoffman2006-10-031-3/+3
|
* BUG: Fix/cleanup custom commands and custom targets. Make empty comment ↵Brad King2006-09-281-4/+3
| | | | strings work. Fix ZERO_CHECK target always out of date for debugging. Fix Makefile driving of custom commands in a custom target. Fix dependencies on custom targets not in ALL in VS generators.
* ENH: Re-implemented command line argument shell quoting to support several ↵Brad King2006-09-271-7/+18
| | | | platforms with one code base.
* BUG: Centralized generation of command line arguments in escaped form. This ↵Brad King2006-09-211-2/+2
| | | | addresses bug#3786 for several platforms.
* STYLE: Fixed line-too-long.Brad King2006-08-261-1/+1
|
* BUG: Fix for VS.NET 2003 SP1 to make sure global target and utility target ↵Brad King2006-08-261-8/+59
| | | | rules run every time.
* ENH: Adding flags to force generation of manifest files when building with VC 8.Brad King2006-08-151-0/+2
|
* BUG: fix for 3557 TargetEnvironment for MIDL Compiler set correctly for 64 bitBill Hoffman2006-07-281-1/+12
|