summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalGenerator.cxx
Commit message (Collapse)AuthorAgeFilesLines
* ENH: Added SYMBOLIC source file property to mark custom command outputs that ↵Brad King2006-10-021-0/+3
| | | | are never actually created on disk. This is used by the Watcom WMake generator to generate the .SYMBOLIC mark on the files in the make system.
* ENH: Cleaned up signature of cmMakefile::AddUtilityCommand. It is not valid ↵Brad King2006-09-281-2/+1
| | | | to have an output from a utility rule and no calls to the method asked for an output anyway. The argument has been removed.
* STYLE: Fixed line-too-long warning.Brad King2006-09-011-1/+2
|
* ENH: Do not generate install target unless some INSTALL or INSTALL_* ↵Brad King2006-08-311-52/+63
| | | | commands have been used. This addresses bug#2827.
* ENH: Adding install/local global target for Makefile generators. This runs ↵Brad King2006-08-291-0/+14
| | | | installation only in the current directory and not subdirectories.
* BUG: Make sure targets of type GLOBAL_TARGET have a makefile set.Brad King2006-08-261-2/+3
|
* BUG: Delay relative path configuration until as late as possible to make ↵Brad King2006-06-191-3/+10
| | | | sure the source/binary dir are set. This is a work-around for lack of a more structured way of creating the global generator.
* ENH: Added generation of link rules into script files executed by a cmake -E ↵Brad King2006-06-151-0/+3
| | | | command in order to support longer link lines. This is needed only on platforms without response file support and that may have weak shells.
* ENH: centralized locaiton of CMakeFiles settingKen Martin2006-06-141-2/+2
|
* BUG: cmGlobalGenerator::Build should not always use the /fast target name ↵Brad King2006-06-011-5/+5
| | | | 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.
* BUG: Updated Makefile dependency scanning to provide a full local generator ↵Brad King2006-05-251-2/+9
| | | | 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.
* BUG: Make sure RUN_TESTS target passes the desired configuration to ctest.Brad King2006-05-131-0/+5
|
* STYLE: fix line lengthKen Martin2006-05-121-1/+2
|
* STYLE: fix line lengthKen Martin2006-05-111-76/+117
|
* ENH: Makefile performance improvementsKen Martin2006-05-021-25/+4
|
* ENH: Enabling color makefile support using cmsysTerminal_cfprintf. Support ↵Brad King2006-04-271-1/+1
| | | | for color is automatically detected when messages are printed. Also made color scheme more readable on both black and white backgrounds. This option can be enabled by setting CMAKE_COLOR_MAKEFILE to true in the project.
* ENH: don't add package target if no package file is aroundBill Hoffman2006-04-201-9/+16
|
* BUG: Verify the global target name exists before using it. Fixes VS and XcodeAndy Cedilnik2006-04-171-13/+17
|
* ENH: Add packaging of source code (make package_source)Andy Cedilnik2006-04-171-0/+14
|
* COMP: fix warningKen Martin2006-04-121-2/+1
|
* ENH: some performance optimizationsKen Martin2006-04-111-5/+17
|
* ENH: Added support for multiple outputs generated by a single custom ↵Brad King2006-04-111-2/+10
| | | | 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-2/+11
| | | | steps. This allows generators to know what other targets will exist on disk when the build completes.
* ENH: use correct addcache call to fix build toolsBill Hoffman2006-04-041-8/+8
|
* ENH: add a wrapper for xcodebuild to get around bug and verbose outputBill Hoffman2006-03-311-3/+20
|
* ENH: Implemented VT100 terminal escape sequences. If CMAKE_COLOR_MAKEFILE ↵Brad King2006-03-301-0/+3
| | | | is set then messages produced by makefiles will be in color if the native tool supports it. This addresses bug#3060.
* ENH: add support for win64 for visual studio 2005 ide and nmake, also fix ↵Bill Hoffman2006-03-301-2/+2
| | | | warnings produced by building for win64
* ENH: Added named component installation implementation. Installation ↵Brad King2006-03-301-0/+8
| | | | behavior should be unchanged unless -DCOMPONENT=<name> is specified when cmake_install.cmake is invoked.
* ENH: modified the relative path code to not do relative paths between bin ↵Ken Martin2006-03-301-10/+39
| | | | and source
* BUG: When generating the install rules for CMake itself the ↵Brad King2006-03-161-0/+5
| | | | per-configuration subdirectory must be used to specify the executable location.
* STYLE: some m_ to this-> cleanupKen Martin2006-03-151-104/+104
|
* BUG: Check for whether to add -C to package rule should check for a . in the ↵Brad King2006-03-071-1/+1
| | | | first character not the second.
* BUG: Fixed installation of MacOSX Bundle executables and the corresponding ↵Brad King2006-03-031-1/+2
| | | | 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.
* ENH: fix for bug 2921, move _OVERRIDE variable to a better position to allow ↵Bill Hoffman2006-03-021-7/+0
| | | | changing _INIT variables
* BUG: Check for whether to add BUILD_TYPE to install rule should check for a ↵Brad King2006-03-011-1/+1
| | | | . in the first character not the second.
* ENH: Cleanup global targets even more and potentially fix XcodeAndy Cedilnik2006-03-011-45/+53
|
* BUG: Ok, fix the orderingAndy Cedilnik2006-02-281-1/+1
|
* BUG: On Visual Studio and XCode, handle build configurationsAndy Cedilnik2006-02-281-1/+7
|
* BUG: Need to use the CMAKE_COMMAND cache entry to get the location of CMake.Brad King2006-02-281-1/+1
|
* ENH: Several packaging issues. Allow random variables to be passed to cpack ↵Andy Cedilnik2006-02-271-0/+4
| | | | (anything starting with CPACK_, add preinstall to the list of dependencies for package, fix typos
* COMP: More fixes for non makefile generators and global targetsAndy Cedilnik2006-02-241-6/+7
|
* STYLE: Remove debugAndy Cedilnik2006-02-241-1/+0
|
* COMP: Even more global target fixesAndy Cedilnik2006-02-241-1/+3
|
* BUG: Only add test targets when testing is enabled. Also add ↵Andy Cedilnik2006-02-241-9/+18
| | | | CMAKE_CFG_INTDIR when specified
* COMP: Handle preinstall properly on IDEsAndy Cedilnik2006-02-241-1/+4
|
* ENH: Properly handle target dependenciesAndy Cedilnik2006-02-231-5/+13
|
* COMP: More fixes for visual studioAndy Cedilnik2006-02-231-1/+1
|
* COMP: Fixes for visual studioAndy Cedilnik2006-02-231-1/+5
|
* ENH: Remove debugAndy Cedilnik2006-02-231-8/+0
|
* ENH: Add a notion of a global targetAndy Cedilnik2006-02-231-0/+159
|