summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalGenerator.cxx
Commit message (Collapse)AuthorAgeFilesLines
* ENH: Adding install/local global target for Makefile generators. This runs ↵Brad King2006-08-291-2/+4
| | | | installation only in the current directory and not subdirectories.
* ENH: make sure RuleVariable struct is initialized correctly, also make sure ↵Bill Hoffman2006-08-081-14/+27
| | | | custom command targets do not crash cmake
* ENH: Added generation of rules to manually request preprocessed or generated ↵Brad King2006-08-081-0/+14
| | | | assembly sources.
* ENH: Moved GetSourceFileLanguage up to cmLocalGenerator.Brad King2006-08-031-0/+16
|
* ENH: Moved unique object file name computation from ↵Brad King2006-07-111-0/+117
| | | | 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.
* ENH: Added target property INSTALL_RPATH_USE_LINK_PATH to append the linker ↵Brad King2006-06-151-3/+22
| | | | search path directories not inside the project to the INSTALL_RPATH automatically. The property is initialized by the variable CMAKE_INSTALL_RPATH_USE_LINK_PATH when the target is created.
* ENH: centralized locaiton of CMakeFiles settingKen Martin2006-06-141-1/+1
|
* STYLE: fix line lengthKen Martin2006-05-121-80/+127
|
* ENH: Added CONFIGURATIONS option to INSTALL command to allow ↵Brad King2006-05-051-3/+31
| | | | per-configuration install rules.
* ENH: make sure special vs ide path is only used for msvc_ide buildsBill Hoffman2006-04-251-6/+11
|
* ENH: Added option CMAKE_INCLUDE_DIRECTORIES_PROJECT_BEFORE to put all ↵Brad King2006-04-251-3/+28
| | | | in-project include directories before all out-of-project include directories.
* ENH: add special windows CMAKE_MSVCIDE_RUN_PATH variable for adding to the ↵Bill Hoffman2006-04-251-1/+8
| | | | path of vs IDE for running custom commands from cmake
* ENH: name pdb files for visual studio make based buildsBill Hoffman2006-04-191-0/+8
|
* ENH: fix java for ide builds againBill Hoffman2006-04-171-4/+2
|
* ENH: fix java and add OBJECT_DIR supportBill Hoffman2006-04-171-1/+13
|
* ENH: enable test for java with IDE buildsBill Hoffman2006-04-111-2/+39
|
* ENH: Split CMAKE_STANDARD_LIBRARIES into per-language variables ↵Brad King2006-04-111-2/+8
| | | | CMAKE_<lang>_STANDARD_LIBRARIES. This is needed to get programmable language support working with Visual Studio generators. It makes sense anyway.
* ENH: Restored implementation of AddCustomCommandToCreateObject. Updated it ↵Brad King2006-04-111-26/+35
| | | | to use newer custom command functionality.
* BUG: Install scripts should honor EXCLUDE_FROM_ALL options for ↵Brad King2006-04-111-8/+12
| | | | subdirectories. This addresses bug#3100.
* BUG: Do not add non-per-config subdirectory name of cmake target libraries ↵Brad King2006-04-111-4/+10
| | | | as full path libs.
* ENH: Added support for multiple outputs generated by a single custom ↵Brad King2006-04-111-0/+31
| | | | 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.
* BUG: Fixed cmOrderLinkDirectories to deal with raw link items that do not ↵Brad King2006-04-051-1/+7
| | | | yet exist and correct drive letter case to avoid duplicate paths on windows. Fixed cmLocalGenerator to pass CMake targets as full paths to cmOrderLinkDirectories to make sure the ordering will pick up the proper target libraries.
* BUG: Removing part of earlier fix because it does not work with VS ↵Brad King2006-04-041-3/+2
| | | | generators. It may be restored later after cmOrderLinkDirs is further fixed.
* BUG: Fixed cmOrderLinkDirectories to make sure cmake-built libraries are ↵Brad King2006-04-041-3/+9
| | | | found properly. Also taking libraries that will be built but may not yet exist into account. The per-configuration subdirectories that are included by generators in the link path are checked for conflicting libraries also. Potentially conflicting libraries that are actually symlinks back to the desired library are no longer considered conflicting, which avoids bogus impossible ordering warnings.
* ENH: Added global TargetManifest computation between Configure and Generate ↵Brad King2006-04-041-0/+57
| | | | steps. This allows generators to know what other targets will exist on disk when the build completes.
* ENH: add support for per config target LINK_FLAGSBill Hoffman2006-04-031-1/+17
|
* ENH: Added named component installation implementation. Installation ↵Brad King2006-03-301-6/+32
| | | | behavior should be unchanged unless -DCOMPONENT=<name> is specified when cmake_install.cmake is invoked.
* COMP: Remove warningsAndy Cedilnik2006-03-281-0/+3
|
* ENH: add support for universal binariesBill Hoffman2006-03-241-1/+25
|
* ENH: Added support for linking to MS .lib libraries in MinGW.Brad King2006-03-221-0/+13
|
* ENH: Enabling CMAKE_INCLUDE_CURRENT_DIR even for in-source builds to be more ↵Brad King2006-03-211-11/+8
| | | | consistent with its name. This also makes double-quote and angle-bracket include styles (almost) identical.
* BUG: Fixed generation of mismatched IF in install script. This bug was ↵Brad King2006-03-161-1/+1
| | | | introduced during the m_ sweep.
* STYLE: some m_ to this-> cleanupKen Martin2006-03-151-132/+132
|
* ENH: add support for language flags at rule expansion timeBill Hoffman2006-03-061-0/+4
|
* BUG: Fix for generated install scripts to support prefixes with trailing ↵Brad King2006-03-051-3/+4
| | | | slashes or just a single slash.
* ENH: Added PERMISSIONS and RENAME options to the INSTALL command's FILES and ↵Brad King2006-03-031-2/+8
| | | | PROGRAMS mode, and corresponding support to FILE(INSTALL). Default permissions for shared libraries on non-Windows/non-OSX platforms no longer has the execute bit set.
* ENH: Created target property INSTALL_NAME_DIR initalized by ↵Brad King2006-02-241-0/+7
| | | | 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-8/+9
|
* COMP: Remove warningsAndy Cedilnik2006-02-241-0/+3
|
* ENH: change expand stuff to pass a struct for all the argsBill Hoffman2006-02-201-80/+42
|
* ENH: Implemented FILES and PROGRAMS forms of the INSTALL command as ↵Brad King2006-02-191-42/+9
| | | | replacements for the INSTALL_FILES and INSTALL_PROGRAMS commands. This addresses the request for absolute path install destinations in bug#2691.
* ENH: Created new install script generation framework. The INSTALL command ↵Brad King2006-02-191-361/+164
| | | | 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: Automatic include directories should not be done by default as was just ↵Brad King2006-02-191-25/+24
| | | | implemented. Instead a project may now set CMAKE_INCLUDE_CURRENT_DIR to get this behavior. The current source and binary directories are added automatically to the beginning of the include path in every directory. This simulates in-source behavior for double-quote includes when there are generated sources and headers in the directory.
* BUG: Remove trailing slashes from install destinations.Brad King2006-02-181-0/+8
|
* COMP: Fixed shadowed variable warning.Brad King2006-02-181-4/+4
|
* ENH: Generate import libraries for DLLs on Cygwin and MinGW.Brad King2006-02-181-0/+4
|
* ENH: If CMAKE_NO_AUTOMATIC_INCLUDE_DIRECTORIES is not set try to approximate ↵Brad King2006-02-181-18/+53
| | | | in-source build include file behavior in an out-of-source build by adding the build tree directory corresponding to a source tree directory at the beginning of the include path. Also fixed VS6 and VS7 generators to use cmLocalGenerator's computation of include paths. The VS6 generator will now short-path the include directories if the total length is too long in order to try to avoid its truncation limit.
* ENH: Implemented RPATH specification support. It is documented by the ↵Brad King2006-02-161-11/+39
| | | | command SET_TARGET_PROPERTIES.
* ENH: Added INSTALL command as a placeholder for a future generic install ↵Brad King2006-02-101-0/+9
| | | | specification interface. Currently it supports only a SCRIPT option specifying a script to run during the install stage.
* ENH: fix bug for single char librariesBill Hoffman2006-02-101-5/+5
|