summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalVisualStudio7Generator.h
Commit message (Collapse)AuthorAgeFilesLines
* STYLE: line lengthBill Hoffman2008-01-311-1/+2
|
* ENH: fix for bug 3218 dependant projects are written out automatically if ↵Bill Hoffman2008-01-301-3/+21
| | | | they are in the project. Also fix bug 5829, remove hard coded CMAKE_CONFIGURATION_TYPES from vs 7 generator
* ENH: add OPTIONAL keyword to ENABLE_LANGUAGE, so it will be possible to doAlexander Neundorf2007-06-281-1/+1
| | | | | | | | | | | | | something like this: ENABLE_LANGUAGE(ASM-ATT) IF(CMAKE_ASM-ATT_COMPILER_WORKS) ... do assembler stufff ELSE(CMAKE_ASM-ATT_COMPILER_WORKS) ... fallback to generic C/C++ ENDIF(CMAKE_ASM-ATT_COMPILER_WORKS) Alex
* ENH: Added cmGlobalVisualStudioGenerator as superclass to all VS global ↵Brad King2007-04-041-2/+2
| | | | generators.
* BUG: Split precompiled header flags into a separate per-global-generator ↵Brad King2007-03-121-0/+2
| | | | 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: commit fix for putting everything in the build on vsBill Hoffman2006-11-091-1/+3
|
* BUG: Fixed references to projects outside the build tree and in other ↵Brad King2006-10-101-0/+1
| | | | locations with spaces in the path. This is needed for out-of-source/out-of-binary subdirectories in the build.
* BUG: Fix/cleanup custom commands and custom targets. Make empty comment ↵Brad King2006-09-281-2/+2
| | | | 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.
* BUG: cmGlobalGenerator::Build should not always use the /fast target name ↵Brad King2006-06-011-1/+2
| | | | because dependency checking is often required. It now takes an argument specifying whether to use the /fast target name, and the argument is currently only true for try-compiles.
* STYLE: fix line lengthKen Martin2006-05-111-2/+4
|
* BUG: MSVC* variables should be set in IDE generators instead of just NMake.Brad King2006-05-061-0/+1
|
* STYLE: some m_ to this-> cleanupKen Martin2006-03-151-3/+3
|
* STYLE: fix line lengthsBill Hoffman2006-03-101-4/+9
|
* BUG: Fixed installation of MacOSX Bundle executables and the corresponding ↵Brad King2006-03-031-1/+4
| | | | install_name remapping support. Extended the BundleTest test to check that this all works. Part of these fixes required changing the signature of AppendDirectoryForConfig in all generators. It now accepts prefix and suffix strings to deal with whether leading or trailing slashes should be included with the configuration subdirectory.
* COMP: Even more global target fixesAndy Cedilnik2006-02-241-0/+4
|
* BUG: Fixed cmTarget::GetFullPath to not append the configuration name when ↵Brad King2006-02-031-0/+3
| | | | only one configuration is built. It now asks the generator what subdirectory if any to use for a given configuration name.
* BUG: Sweeping changes to cleanup computation of target names. This shouldBrad King2006-01-131-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | fix many bugs related to target names being computed inconsistently. - Centralized computation of a target's file name to a method in cmTarget. Now that global knowledge is always available the *_CMAKE_PATH cache variables are no longer needed. - Centralized computation of link library command lines and link directory search order. - Moved computation of link directories needed to link CMake targets to be after evaluation of linking dependencies. This also removed alot of duplicate code in which each version had its own bugs. This commit is surrounded by the tags CMake-TargetNameCentralization1-pre and CMake-TargetNameCentralization1-post so make the large set of changes easy to identify.
* ENH: Renamed ZeroTargetCheck target to ZERO_CHECK for consistency with other ↵Brad King2005-12-141-1/+1
| | | | CMake-generated targets (ALL_BUILD, RUN_TESTS, INSTALL).
* ENH: Added support for parallel builds in VS 8. There is now a special ↵Brad King2005-12-131-0/+2
| | | | target on which all other targets depend that re-runs CMake if any listfiles have been changed. This addresses bug#2512.
* ENH: Add a way for the generated command to include extra flags. This is ↵Andy Cedilnik2005-12-011-1/+1
| | | | useful for CTest (or try compile) to add -j2
* BUG: Tweak VS8 generator to keep VS8 happy. The .vcproj files need their ↵Brad King2005-11-221-2/+3
| | | | own GUIDs in a ProjectGUID attribute. The top level .sln file needs a special comment at the top to allow it to be opened with double-click in explorer.
* ENH: make LOCATION an computed property of the target and get rid of a bunch ↵Ken Martin2005-06-221-4/+2
| | | | of const junk
* ENH: Add option to ignore errors. Only works on makeAndy Cedilnik2005-04-291-1/+2
|
* COMP: Converting INSTALL->ALL_BUILD dependency implementation to use the ↵Brad King2005-04-291-1/+1
| | | | AddUtility method on a target. This significantly simplifies the implementation and removes warnings about hiding virtual functions.
* ENH: Start working on a method that abstracts generating of build commandAndy Cedilnik2005-04-281-5/+2
|
* ENH: Added dependency from INSTALL target to ALL_BUILD target so that ↵Brad King2005-04-281-1/+1
| | | | targets build before being installed.
* ENH: More ctest changes and move SetupTest to superclassAndy Cedilnik2005-04-011-1/+0
|
* ENH: cleanup by removing all the olf local generate junk that i not longer ↵Ken Martin2005-03-101-7/+0
| | | | needed
* ENH: ctest now uses CMake global generator to do the build part of ↵Ken Martin2005-02-221-3/+5
| | | | build-and-test
* ENH: move project map to global generator baseBill Hoffman2005-01-211-2/+0
|
* ENH: try to initialize all languages at the same timeBill Hoffman2004-08-271-1/+1
|
* BUG: CMAKE_TRY_COMPILE_CONFIGURATION should be obtained from the cmMakefile ↵Brad King2004-08-041-1/+1
| | | | instance for the listfile containing the TRY_COMPILE call, not the top level listfile.
* BUG: make sure global generate is done when cmakelist file chagnes, also ↵Bill Hoffman2004-05-201-2/+7
| | | | make sure guids are stored in the cache so the .sln file does not change every time
* ENH: add new subdirectory exclude from top optionBill Hoffman2004-03-091-2/+4
|
* remove warningsBill Hoffman2003-11-261-2/+1
|
* ENH: generate a sln and dsw file for each sub project in a projectBill Hoffman2003-11-261-1/+5
|
* ENH: Registered global generators are now kept in a table in the cmake ↵Brad King2003-07-081-1/+6
| | | | instance. Added support for documentation with a Generators section.
* add support for vs 71Bill Hoffman2003-05-081-11/+13
|
* ENH: Visual Studio 6 and 7 generators now set CMAKE_CONFIGURATION_TYPES to ↵Brad King2002-12-201-1/+1
| | | | be a semicolon-separated list of configurations that will be built.
* ENH: unify EnableLanguage across all generatorsBill Hoffman2002-12-051-0/+1
|
* use InAll target setting to determine what targets are in the default buildKen Martin2002-12-051-1/+1
|
* ENH: Added reference to Copyright.txt. Removed old reference to ITK ↵Brad King2002-10-231-3/+3
| | | | copyright. Changed program name to CMake instead of Insight in source file header. Also removed tabs.
* some try compile fixesKen Martin2002-09-221-5/+10
|
* modified TryCompileKen Martin2002-09-101-1/+1
|
* new archKen Martin2002-09-041-0/+95