summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalGenerator.h
Commit message (Collapse)AuthorAgeFilesLines
* BUG: Updated Makefile dependency scanning to provide a full local generator ↵Brad King2006-05-251-2/+1
| | | | to the dependency scanner to do proper path conversions. This allows the rules written into the depend.make files to use the same relative path conversion as those written into the build.make files. Several previous changes added more and more information for use by the dependency scanner and it was converging to having the full local generator anyway.
* ENH: name pdb files for visual studio make based buildsBill Hoffman2006-04-191-0/+1
|
* ENH: fix java and add OBJECT_DIR supportBill Hoffman2006-04-171-0/+2
|
* ENH: Added support for multiple outputs generated by a single custom ↵Brad King2006-04-111-1/+5
| | | | command. For Visual Studio generators the native tool provides support. For Xcode and Makefile generators a simple trick is used. The first output is considered primary and has the build rule attached. Other outputs simply depend on the first output with no build rule. During cmake_check_build_system CMake detects when a secondary output is missing and removes the primary output to make sure all outputs are regenerated. This approach always builds the custom command at the right time and only once even during parallel builds.
* ENH: Added global TargetManifest computation between Configure and Generate ↵Brad King2006-04-041-1/+6
| | | | steps. This allows generators to know what other targets will exist on disk when the build completes.
* ENH: add support for universal binariesBill Hoffman2006-03-241-1/+1
|
* STYLE: some m_ to this-> cleanupKen Martin2006-03-151-23/+23
|
* STYLE: fix line lengthsBill Hoffman2006-03-101-3/+6
|
* ENH: add support for language flags at rule expansion timeBill Hoffman2006-03-061-0/+1
|
* ENH: Created target property INSTALL_NAME_DIR initalized by ↵Brad King2006-02-241-0/+2
| | | | CMAKE_INSTALL_NAME_DIR specifying the directory portion of the OSX install_name field in shared libraries. This is the OSX equivalent of RPATH.
* BUG: Fix generation of Xcode 2.0 and earlier projects to use CMAKE_BUILD_TYPE.Brad King2006-02-241-2/+4
|
* ENH: make it compile on vs6Bill Hoffman2006-02-201-17/+16
|
* ENH: change expand stuff to pass a struct for all the argsBill Hoffman2006-02-201-20/+32
|
* BUG: Xcode generator should use local generator computation of include ↵Brad King2006-02-201-3/+3
| | | | directories.
* ENH: Created new install script generation framework. The INSTALL command ↵Brad King2006-02-191-10/+5
| | | | creates the generators which are later used by cmLocalGenerator to create the cmake_install.cmake files. A new target installation interface is provided by the INSTALL command which fixes several problems with the INSTALL_TARGETS command. See bug#2691. Bugs 1481 and 1695 are addressed by these changes.
* ENH: Generate import libraries for DLLs on Cygwin and MinGW.Brad King2006-02-181-0/+4
|
* ENH: Implemented RPATH specification support. It is documented by the ↵Brad King2006-02-161-1/+1
| | | | command SET_TARGET_PROPERTIES.
* ENH: add working directory supportBill Hoffman2006-02-081-0/+1
|
* ENH: Further centralized custom command dependency computation. Custom ↵Brad King2006-01-141-6/+6
| | | | command dependencies in the source tree may now also be specified relative to the source directory.
* COMP: Removed unused paramter from cmLocalGenerator::OutputLinkLibraries.Brad King2006-01-131-1/+1
|
* BUG: Sweeping changes to cleanup computation of target names. This shouldBrad King2006-01-131-2/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | 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: fix borland make clean targets before build, add new generators for ↵Bill Hoffman2005-12-221-0/+1
| | | | msys and mingw
* ENH: reduce the number of files produced still needs a bit more cleanupKen Martin2005-07-271-0/+3
|
* ENH: make LOCATION an computed property of the target and get rid of a bunch ↵Ken Martin2005-06-221-1/+1
| | | | of const junk
* ENH: added support for forcing recomputation of dependsKen Martin2005-06-101-2/+4
|
* ENH: removed old convert callsKen Martin2005-06-101-21/+0
|
* ENH: warning fixes and some first steps in cleaning up the convert codeKen Martin2005-05-131-1/+25
|
* ENH: added new generatorKen Martin2005-05-121-0/+6
|
* ENH: Improve internal test handling by creating a test class. Command ↵Andy Cedilnik2005-04-241-1/+7
| | | | cmEnableTesting now only sets CMAKE_TESTING_ENABLED and cmAddTest only adds a test to the list. The actual test files are written by local generator. This way we can at some point in the future replace DartTestfile with some XML file
* ENH: Added cmTarget::GetBaseName and cmTarget::GetFullName methods and ↵Brad King2005-04-221-3/+0
| | | | removed cmLocalGenerator::GetFullTargetName and cmLocalUnixMakefileGenerator2::GetBaseTargetName. This functionality is more sensibly implemented in cmTarget. It is also needed for an upcoming feature in which both the shared and static versions of a library will be removed before one is linked.
* ENH: performance improvementsBill Hoffman2005-04-121-0/+14
|
* ENH: big change that includes immediate subdir support, removing the notion ↵Ken Martin2005-03-181-7/+10
| | | | of inherited commands, makefiles no longer read in the parent makefiles but instead inherit thier parent makefiles current settings
* ENH: add support for out of source sourceKen Martin2005-03-141-1/+0
|
* ENH: Merged implementations of ConvertToRelative*Path methods. The main ↵Brad King2005-02-241-6/+30
| | | | ConvertToRelativePath method is now in cmGlobalGenerator. It converts paths only if they are at least inside the deepest common directory between the top-level source and build trees. Each cmLocalGenerator instance calls this global method with its own output directory as the "local" argument from which paths are relative. Added separate ConvertToOptionallyRelative path that pays attention to the CMAKE_USE_RELATIVE_PATHS option.
* ENH: remove unused codeBill Hoffman2005-02-241-3/+0
|
* ENH: add a new library path ordering algorithm to make sure -L paths will ↵Bill Hoffman2005-02-241-1/+3
| | | | pick the correct libraries if possible
* ENH: Updated implementation of custom commands. Multiple command lines are ↵Brad King2005-02-221-0/+3
| | | | now supported effectively allowing entire scripts to be written. Also removed extra variable expansions and cleaned up passing of commands through to the generators. The command and individual arguments are now kept separate all the way until the generator writes them out. This cleans up alot of escaping issues.
* ENH: getting closerBill Hoffman2005-02-141-3/+4
|
* ENH: depends work between targetsBill Hoffman2005-02-031-2/+2
|
* ENH: getting closerBill Hoffman2005-02-021-1/+2
|
* ENH: move AddFlags stuff up to LocalGenerator from LocalUnix generatorBill Hoffman2005-02-021-0/+5
|
* ENH: Split part of GetIncludeFlags method into separate ↵Brad King2004-10-261-0/+4
| | | | GetIncludeDirectories method.
* ENH: add the ability to generate custom commands for a language that is not ↵Bill Hoffman2004-10-211-0/+46
| | | | supported by an IDE
* ENH: remove warningsBill Hoffman2004-09-031-1/+0
|
* ENH: define language extensions in cmake files and not hard coded, also fix ↵Bill Hoffman2004-09-031-0/+1
| | | | trycompile problem
* BUG: Implement installing of shared library versioning and add test for the ↵Andy Cedilnik2004-06-281-1/+2
| | | | whole thing
* ENH: GetSafeDefinition is now in cmMakefileAndy Cedilnik2004-04-271-2/+0
|
* ENH: add new subdirectory exclude from top optionBill Hoffman2004-03-091-1/+16
|
* ENH: Make install on windows seems to work nowAndy Cedilnik2004-01-271-1/+2
|
* ERR: Fix std:: namespaceAndy Cedilnik2004-01-261-1/+1
|