Brad King
|
721ff36924
|
ENH: Added platform variable CMAKE_EXE_EXPORTS_<lang>_FLAG to add a linker flag when building executables that have the ENABLE_EXPORTS property set.
|
2007-04-17 23:39:47 -04:00 |
Brad King
|
5a32aa5919
|
ENH: Added target property ENABLE_EXPORTS for executable targets. It enables the executables for linking by loadable modules that import symbols from the executable. This finishes the executable import library support mentioned in bug #4210.
|
2007-03-22 09:45:25 -04:00 |
Brad King
|
fc7c433463
|
ENH: Added support for import libraries created by executable and module 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.
|
2007-03-19 10:00:36 -04:00 |
Brad King
|
5ed8ea8a0e
|
BUG: Fixed OSX bundles to be built in the directory specified by cmTarget::GetDirectory(). This is an incremental step for bug#2240.
|
2007-03-09 14:50:11 -05:00 |
Brad King
|
01dc699d82
|
ENH: Combined cmTarget::GetDirectory and cmTarget::GetOutputDir since they are nearly the same. This is another step for bug#2240.
|
2007-03-08 15:33:19 -05:00 |
Brad King
|
33ee83714d
|
ENH: Replaced LibraryOutputPath and ExecutableOutputPath variables in 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.
|
2007-03-08 14:57:28 -05:00 |
Brad King
|
4089c76890
|
BUG: Some calls to Convert() were converting for MAKEFILE but then passing the output to the build shell. The calls have now been converted to call Convert() with SHELL.
|
2007-03-08 10:31:03 -05:00 |
Brad King
|
ed7de15676
|
BUG: Do not clean the .pdb file for a target just before it is linked! This finishes addressing bug#4341.
|
2007-02-01 16:52:52 -05:00 |
Brad King
|
4d44392652
|
BUG: Clean rule for exe pdb file should use full path.
|
2007-02-01 16:07:32 -05:00 |
Brad King
|
712345ffc4
|
BUG: The .pdb file generated for a library or executable should match the real file name used for the target. This addresses bug#3277.
|
2007-02-01 09:57:24 -05:00 |
Brad King
|
f7611f167c
|
ENH: Made cmMakefileTargetGenerator::GlobalGenerator have full type cmGlobalUnixMakefileGenerator3 to give access to all methods. Fixed broken custom targets with no commands for Borland makefiles when CMAKE_SKIP_RULE_DEPENDENCY is set.
|
2006-12-14 14:30:41 -05:00 |
Brad King
|
b155f3aa1c
|
ENH: Adding image version number (major.minor) property to windows binaries. 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.
|
2006-10-16 18:17:14 -04:00 |
Brad King
|
9a1d4e92eb
|
BUG: Fix/cleanup custom commands and custom targets. Make empty comment 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.
|
2006-09-28 16:40:35 -04:00 |
Brad King
|
c7daee6860
|
BUG: Need to clean manifest files that may have been generated for .exe and .dll files.
|
2006-08-15 15:28:29 -04:00 |
Andy Cedilnik
|
5a71f83f7a
|
BUG: Several fixes to handle bundle content on Mac OSX
|
2006-07-06 16:04:49 -04:00 |
Ken Martin
|
8e9a6beccc
|
ENH: centralized locaiton of CMakeFiles setting
|
2006-06-14 12:28:32 -04:00 |
Brad King
|
4189370497
|
BUG: Custom command outputs listed explicitly as source files in a target should be generated whether or not an object file in the target needs them. This useful and makes Makefile builds more consistent with VS IDE builds.
|
2006-06-01 11:45:51 -04:00 |
Brad King
|
1b956e9b74
|
BUG: Finished fix to bug#3229 and bug#3272.
|
2006-05-23 09:58:51 -04:00 |
Brad King
|
0379bb4909
|
BUG: Added missing cd command before running executable version symlink rule. This addresses bug#3229.
|
2006-05-16 13:41:27 -04:00 |
Ken Martin
|
47c7108111
|
STYLE: fix line length
|
2006-05-12 12:29:09 -04:00 |
Bill Hoffman
|
e6ef33f598
|
ENH: name pdb files for visual studio make based builds
|
2006-04-19 16:36:14 -04:00 |
Bill Hoffman
|
3c8e899102
|
ENH: add support for per config target LINK_FLAGS
|
2006-04-03 12:57:51 -04:00 |
Brad King
|
eb31755eb2
|
ENH: Implemented VT100 terminal escape sequences. If CMAKE_COLOR_MAKEFILE is set then messages produced by makefiles will be in color if the native tool supports it. This addresses bug#3060.
|
2006-03-30 15:39:03 -05:00 |
Andy Cedilnik
|
40272a16bd
|
ENH: Add support for adding content to bundles
|
2006-03-28 08:54:01 -05:00 |
Ken Martin
|
3d96e52261
|
STYLE: some m_ to this-> cleanup
|
2006-03-15 11:02:08 -05:00 |
Bill Hoffman
|
4c5ba06fa1
|
ENH: use a cmake script to do the clean step, this allows for large numbers of files to be removed without making the command line too long
|
2006-03-09 14:30:35 -05:00 |
Brad King
|
93c95f1cc5
|
BUG: Fixed installation of MacOSX Bundle executables and the corresponding 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.
|
2006-03-03 12:58:48 -05:00 |
Brad King
|
576f0b65c7
|
BUG: Fix generation of Xcode 2.0 and earlier projects to use CMAKE_BUILD_TYPE.
|
2006-02-24 11:13:31 -05:00 |
Bill Hoffman
|
39e636a4a4
|
ENH: change expand stuff to pass a struct for all the args
|
2006-02-20 13:42:18 -05:00 |
Brad King
|
43df79d9fc
|
BUG: Do not perform pre-build, pre-link, or post-install commands when relinking.
|
2006-02-16 15:39:19 -05:00 |
Brad King
|
537e2b4ed5
|
ENH: Implemented RPATH specification support. It is documented by the command SET_TARGET_PROPERTIES.
|
2006-02-16 15:19:00 -05:00 |
Brad King
|
60cd72d01c
|
ENH: Cleaned up generation of symbolic rules. Removed generation of rebuild_cache and similar rules from internal makefiles.
|
2006-02-15 16:35:16 -05:00 |
Ken Martin
|
7740ccd1a4
|
ENH: some cleanup of the makefile generator
|
2006-02-14 10:36:04 -05:00 |