Brad King
|
92ff60b6a6
|
ENH: Added target properties ARCHIVE_OUTPUT_DIRECTORY, LIBRARY_OUTPUT_DIRECTORY, and RUNTIME_OUTPUT_DIRECTORY. If set these override EXECUTABLE_OUTPUT_PATH and LIBRARY_OUTPUT_PATH for a specific target. They can be used to distribute target files in the build tree with the same granularity that the INSTALL command provides for the install tree. This addresses bug#2240 and bug#4210.
|
2007-03-09 15:14:27 -05: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
|
7b68a64d12
|
ENH: Do not compute a path name for the import library if there is no import library. This simplifies tracking down problems with trying to create import libraries for MODULEs.
|
2007-03-09 13:56:45 -05:00 |
Brad King
|
31637efbfb
|
ENH: Added cmMakefileTargetGenerator::GenerateExtraOutput to wrap up creation of rules to drive creation of extra outputs generated as side effects of another rule. Reimplemented generation of custom command multiple output rules to use it. Reimplemented soname symlink output dependencies to use it. Now if a symlink is deleted the library will be recreated with the symlink.
|
2007-03-09 11:29:15 -05:00 |
Brad King
|
fb88335cdb
|
BUG: Need to account for import library directory when constructing the clean rule for the import library. This is an incremental fix for bug #4210.
|
2007-03-09 11:26:10 -05:00 |
Brad King
|
54923d6ad8
|
ENH: Implemented new policy to choose the directory part of the object file name. This should keep the names looking as nice and short as possible. This partially addresses bug#4520.
|
2007-03-09 10:30:07 -05:00 |
Brad King
|
528f60f4a6
|
ENH: Added implib option to cmTarget::GetDirectory to support a separate directory containing the import library. This is an incremental step for bug#4210.
|
2007-03-09 09:30:16 -05:00 |
Andy Cedilnik
|
3ec0ff05de
|
STYLE: Nightly Version update
|
2007-03-08 23:56:29 -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
|
789a0f8359
|
ENH: Removed unused variables LibraryOutputPath and ExecutableOutputPath. Each target is asked for its own output directory. This is a step towards bug#2240.
|
2007-03-08 15:24:01 -05:00 |
Brad King
|
1a734f238a
|
COMP: Fixed enumeration-not-used warning in switch.
|
2007-03-08 15:10:20 -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
|
ea19994b13
|
ENH: Ask the target for its own directory in case of bundle instead of directly using ExecutableOutputPath.
|
2007-03-08 14:15:45 -05:00 |
Brad King
|
d65db7c6bb
|
BUG: Compute HomeRelativeOutputPath following the rules of RelativePathTopBinary by going through the Convert() method. This supports out-of-binary build trees without using relative paths that go outside trees managed by CMake.
|
2007-03-08 13:19:39 -05:00 |
Brad King
|
1d75e47dee
|
ENH: Enable SubDirSpaces test when building with bootstrapped cmake.
|
2007-03-08 13:13:58 -05:00 |
Brad King
|
fd3688fa72
|
ENH: Fixed recursive make call target escaping for Borland to support SubDirSpaces test.
|
2007-03-08 13:05:02 -05:00 |
Brad King
|
7157743d69
|
ENH: Updated GetRecursiveMakeCall to use EscapeForShell instead of MAKEFILE conversion. This code is special because it is the only place that a make target name is passed on a command line.
|
2007-03-08 11:49:30 -05:00 |
Brad King
|
91c2b84a92
|
ENH: Added ConvertToOutputSlashes method to convert slashes with the same policy as ConvertToOutputPath but without escaping.
|
2007-03-08 11:49:26 -05:00 |
Brad King
|
00051cf721
|
ENH: Removed useless method ConvertToMakeTarget and all calls to it. It had a buggy implementation that caused it to do nothing.
|
2007-03-08 11:10:21 -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
|
00b4eeeded
|
STYLE: Removed unused calls to Convert.
|
2007-03-08 10:19:25 -05:00 |
Brad King
|
d37577d9e0
|
STYLE: Removing unused methods ConvertToShellPath and EscapeForUnixShell.
|
2007-03-08 09:48:17 -05:00 |
Brad King
|
254ae5c62e
|
STYLE: Fix line-too-long.
|
2007-03-08 08:46:03 -05:00 |
Brad King
|
2f2b5b2503
|
ENH: SetupPathConversions is now called automatically on demand.
|
2007-03-08 08:38:40 -05:00 |
Andy Cedilnik
|
9a5a051f21
|
STYLE: Nightly Version update
|
2007-03-07 22:12:11 -05:00 |
Brad King
|
b90e241a31
|
ENH: Modified GetObjectFileNameWithoutTarget to use relative paths for object file names with sources above the current directory so long as the relative path conversion works.
|
2007-03-07 17:39:16 -05:00 |
Brad King
|
4036627487
|
ENH: Improved computation of RelativePathTopSource and RelativePathTopBinary to use higher relative path tops when the source directories jump around in a tree below the original source top.
|
2007-03-07 17:32:35 -05:00 |
Brad King
|
ad4055f3e2
|
ENH: Set RelativePathTopSource and RelativePathTopBinary independently for each local generator. Relative path conversion is safe within a tree as long as it does not go above the highest parent directory still managed by CMake.
|
2007-03-07 16:35:53 -05:00 |
Brad King
|
073076e0f7
|
COMP: Fix ConvertToRelativePath change for Xcode generator.
|
2007-03-07 16:32:29 -05:00 |
Brad King
|
f3cc908e42
|
STYLE: Move warning disable pragma into push/pop block.
|
2007-03-07 16:00:21 -05:00 |
Brad King
|
0e8515fa4c
|
BUG: Get rid of ancient variables CMAKE_CXX_WARNING_LEVEL, CMAKE_CXX_USE_RTTI, CMAKE_CXX_STACK_SIZE which are only partially implemented and now taken care of by flag mapping anyway.
|
2007-03-07 15:57:52 -05:00 |
Brad King
|
c841258170
|
COMP: Add missing include for assert.
|
2007-03-07 15:30:30 -05:00 |
Brad King
|
fc19882e8f
|
ENH: Moved ConvertToRelativePath from cmGlobalGenerator to cmLocalGenerator. This is in preparation for setting up each local generator to have its own RelativePathTopSource and RelativePathTopBinary based on its ancestor directories.
|
2007-03-07 15:15:46 -05:00 |
Brad King
|
3bd9d67488
|
BUG: Use angle-brackets to include testSystemTools.h to avoid problems with in-source builds.
|
2007-03-07 13:52:32 -05:00 |
Ken Martin
|
d12455fccb
|
BUG: oops bad arg for new test
|
2007-03-07 13:01:00 -05:00 |
Ken Martin
|
bfb3598c4b
|
BUG: improve bad argument handling for INCLUDE_DIRECTORIES and ADD_DEFINITIONS bug 4364
|
2007-03-07 11:03:57 -05:00 |
Brad King
|
4148fedbf0
|
ENH: Enabled support for use_auto_ptr(get_auto_ptr()) syntax on HP compiler.
|
2007-03-07 09:26:49 -05:00 |
Andy Cedilnik
|
c0ee369379
|
STYLE: Nightly Version update
|
2007-03-06 21:22:01 -05:00 |
Ken Martin
|
12b8643fee
|
COMP: shut up w4 warning
|
2007-03-06 10:56:21 -05:00 |
Andy Cedilnik
|
5cc53f2dc1
|
STYLE: Nightly Version update
|
2007-03-05 21:23:34 -05:00 |
Brad King
|
73a5c33f9b
|
BUG: Removed legacy SetupTests method that was causing RUN_TESTS to test twice.
|
2007-03-05 13:01:02 -05:00 |
Ken Martin
|
420095c013
|
COMP: shut up warnings
|
2007-03-05 10:36:06 -05:00 |
Ken Martin
|
d443963d91
|
ENH: fix compiler warnings
|
2007-03-05 09:51:13 -05:00 |
Ken Martin
|
1263baec63
|
STYLE: long line
|
2007-03-05 09:50:53 -05:00 |
Andy Cedilnik
|
d4798181a2
|
STYLE: Nightly Version update
|
2007-03-04 21:31:10 -05:00 |
Brad King
|
55280c5524
|
COMP: Disable function call with function return test for HP until it is implemented.
|
2007-03-03 23:46:42 -05:00 |
Andy Cedilnik
|
8774e0f81f
|
STYLE: Nightly Version update
|
2007-03-03 21:26:10 -05:00 |
Brad King
|
091eafefb3
|
COMP: All kwsys .hxx headers should include Configure.hxx. Re-enabling testAutoPtr.
|
2007-03-03 15:43:31 -05:00 |
Brad King
|
55abd50681
|
COMP: Disable auto_ptr test for now.
|
2007-03-03 15:32:00 -05:00 |
Brad King
|
8c1f9e1b83
|
ENH: Implemented auto_ptr_ref in a way that allows conversion of the pointed-to type.
|
2007-03-03 15:05:52 -05:00 |
Brad King
|
ed722cbe61
|
COMP: Remove one conversion test until it is implemented.
|
2007-03-03 14:51:36 -05:00 |
Brad King
|
3fcec9daa4
|
ENH: Added test for auto_ptr. Documented aut_ptr template implementation.
|
2007-03-03 14:48:48 -05:00 |
Brad King
|
bdc4974f88
|
BUG: cmCreateTestSourceList command is needed at boostrap time because KWSys now uses test drivers.
|
2007-03-03 12:16:35 -05:00 |
Brad King
|
0edbb68352
|
ENH: Cleaned up KWSys tests to use test drivers.
|
2007-03-03 10:47:06 -05:00 |
Andy Cedilnik
|
399c3dffce
|
STYLE: Nightly Version update
|
2007-03-02 21:12:52 -05:00 |
Ken Martin
|
1de68b46f1
|
BUG: fix for build order
|
2007-03-02 14:31:04 -05:00 |
Andy Cedilnik
|
b9ab2b1932
|
BUG: Propagate platform settings such as CMAKE_OSX_ARCHITECTURES to the try compile
|
2007-03-02 11:33:37 -05:00 |
Ken Martin
|
8e702e6977
|
COMP: fix some w4 warnings
|
2007-03-02 10:50:45 -05:00 |
Ken Martin
|
4456013702
|
ENH: fix compiler warning
|
2007-03-02 10:49:32 -05:00 |
Ken Martin
|
fdbe20cf8b
|
COMP: fix warnings
|
2007-03-02 10:48:58 -05:00 |
Brad King
|
a0e26986f7
|
COMP: More workarounds for Borland.
|
2007-03-01 23:28:17 -05:00 |
Andy Cedilnik
|
ba6b7628e5
|
STYLE: Nightly Version update
|
2007-03-01 21:15:24 -05:00 |
Ken Martin
|
d223fc64ad
|
COMP: fix a compiel warning
|
2007-03-01 16:23:06 -05:00 |
Ken Martin
|
f8c982cf78
|
ENH: added LIMIT on file read
|
2007-03-01 15:53:09 -05:00 |
Ken Martin
|
508ddaf929
|
COMP: fix warning
|
2007-03-01 14:52:26 -05:00 |
Ken Martin
|
ae3ef64307
|
ENH: added a limit to the getline method
|
2007-03-01 14:30:42 -05:00 |
Ken Martin
|
c733ab2701
|
BUG: a couple bugs in system informaiton
|
2007-03-01 10:53:09 -05:00 |
Andy Cedilnik
|
f81579bb4a
|
STYLE: Nightly Version update
|
2007-02-28 21:07:18 -05:00 |
Bill Hoffman
|
1503caa14e
|
ENH: remove qnx special stuff that does not work
|
2007-02-28 17:26:20 -05:00 |
Ken Martin
|
e5e2e6a3b3
|
BUG: cleanup paths in GetSourceFile to handle bug 2724
|
2007-02-28 14:45:58 -05:00 |
Bill Hoffman
|
ecbec236b1
|
ENH: one more pass at paths with spaces and parens
|
2007-02-28 14:29:26 -05:00 |
Ken Martin
|
56e3a35ece
|
BUG: allow system information to accept the -G option
|
2007-02-28 12:25:19 -05:00 |
Brad King
|
b1aae98926
|
BUG: Assignment should always use reset().
|
2007-02-28 09:36:08 -05:00 |
Brad King
|
5ba5c450e6
|
COMP: Fix for auto_ptr_ref on Borland 5.8.
|
2007-02-28 09:35:28 -05:00 |
Brad King
|
6c82483cdb
|
BUG: Fix for cmake_force target in Borland Makefiles.
|
2007-02-28 09:33:25 -05:00 |
Ken Martin
|
cbf6bae9f4
|
BUG: fix to naming of results file
|
2007-02-27 16:41:43 -05:00 |
Bill Hoffman
|
5ae48cf852
|
ENH: add a fix for spaces in the path again...
|
2007-02-27 13:34:12 -05:00 |
Ken Martin
|
08ccfacf03
|
BUG: possible fix for new SystemInfo test
|
2007-02-27 13:04:29 -05:00 |
Ken Martin
|
42c41d77fa
|
BUG: fix for unused variable
|
2007-02-27 12:47:14 -05:00 |
Bill Hoffman
|
0ce8c158cc
|
ENH: fix for spaces in the path and mingw
|
2007-02-27 12:10:42 -05:00 |
Ken Martin
|
4d9bc90e58
|
BUG: possible fix for new SystemInfo test
|
2007-02-27 11:59:34 -05:00 |
Ken Martin
|
31a700188b
|
ENH: added --system-information option to CMake
|
2007-02-27 10:10:10 -05:00 |
Brad King
|
d97ae16bad
|
COMP: Added line accidentally removed.
|
2007-02-26 12:08:27 -05:00 |
Brad King
|
220989104c
|
BUG: Fixed implementation of auto_ptr_ref.
|
2007-02-26 12:06:42 -05:00 |
Bill Hoffman
|
90974ea1d6
|
ENH: go back to \ escapes for qnx
|
2007-02-26 11:56:13 -05:00 |
Bill Hoffman
|
4d5321f891
|
ENH: go back to EscapeForShell version
|
2007-02-26 11:41:41 -05:00 |
Andy Cedilnik
|
334e6d6801
|
STYLE: Nightly Version update
|
2007-02-25 21:02:16 -05:00 |
Bill Hoffman
|
512d5dd1e3
|
ENH: try and use \ for space and () escapes
|
2007-02-25 16:13:33 -05:00 |
Bill Hoffman
|
f0d5bdf86e
|
ENH: try another thing 3
|
2007-02-23 20:37:35 -05:00 |
Bill Hoffman
|
d7e57294fb
|
ENH: try another thing
|
2007-02-23 17:38:59 -05:00 |
Bill Hoffman
|
77ad2d62c2
|
ENH: add some debug stuff
|
2007-02-23 17:07:57 -05:00 |
Bill Hoffman
|
ae1d9e8b93
|
ENH: add some debug stuff
|
2007-02-23 16:44:13 -05:00 |
Andy Cedilnik
|
da72f0a07a
|
COMP: Disable test until generators are fixed
|
2007-02-23 14:37:23 -05:00 |
Andy Cedilnik
|
b34f2d5c06
|
ENH: Try to fix spaces in the path problem
|
2007-02-23 11:30:04 -05:00 |
Ken Martin
|
2b3dae596a
|
ENH: added some documentation on how to find the default properties of a test
|
2007-02-23 09:54:55 -05:00 |
Andy Cedilnik
|
8ad3430931
|
ENH: Make EXCLUDE_FROM_ALL a target and directory properties. Also, make IsInAll use EXCLUDE_FROM_ALL. Also, enable the test that tests this
|
2007-02-23 09:46:27 -05:00 |
Andy Cedilnik
|
440bbf0871
|
BUG: Produce error when include directories is invoked with an empty list
|
2007-02-23 09:45:04 -05:00 |
Bill Hoffman
|
48202ef623
|
ENH: hack put the hack back for qnx to try and fix spaces in the path
|
2007-02-22 17:34:14 -05:00 |
Bill Hoffman
|
0b350cbb97
|
ENH: undo hack and try to get dashboard back
|
2007-02-22 17:26:36 -05:00 |
Brad King
|
c1eae5b891
|
BUG: Hack to try working around a problem with spaces in an rpath on QNX.
|
2007-02-22 16:23:12 -05:00 |
Bill Hoffman
|
417b2073df
|
ENH: add new escape stuff
|
2007-02-22 15:33:49 -05:00 |
Brad King
|
2a64bb4774
|
BUG: Fix bug#4482.
|
2007-02-22 15:27:56 -05:00 |
Bill Hoffman
|
abb67cae48
|
ENH: actually keep the output
|
2007-02-22 10:31:12 -05:00 |
Bill Hoffman
|
13bd83c953
|
ENH: make sure EXECUTE_PROCESS is there because in bootstrap it is not
|
2007-02-22 10:05:50 -05:00 |
Bill Hoffman
|
2d6e914b2d
|
COMP: remove warning
|
2007-02-22 09:48:19 -05:00 |
Ken Martin
|
b41d4a1b54
|
STYLE: fix someones line length
|
2007-02-22 09:44:27 -05:00 |
Andy Cedilnik
|
726c267f99
|
BUG: Produce an error when the script is not found
|
2007-02-22 09:10:37 -05:00 |
Bill Hoffman
|
5647e6e254
|
ENH: fix parens in the path with spaces in the path
|
2007-02-21 21:24:17 -05:00 |
Ken Martin
|
806001bbb6
|
ENH: turn on spaces test for more platforms
|
2007-02-21 14:58:33 -05:00 |
Bill Hoffman
|
d999d0240d
|
ENH: get rid of some extra erase calls
|
2007-02-21 14:07:33 -05:00 |
Bill Hoffman
|
828eebcd31
|
STYLE: fix line length
|
2007-02-21 14:07:04 -05:00 |
Bill Hoffman
|
7a13c7affe
|
BUG: fix for quotes in strings for flags #4022
|
2007-02-21 14:01:19 -05:00 |
Brad King
|
53c72ed6c3
|
COMP: Disable LFS on AIX.
|
2007-02-21 13:33:19 -05:00 |
Ken Martin
|
d160362e83
|
ENH: remove unused variable
|
2007-02-21 12:19:51 -05:00 |
Ken Martin
|
276d61c90b
|
ENH: turn on spaces test for more platforms
|
2007-02-21 11:58:58 -05:00 |
Bill Hoffman
|
a2e8b602f9
|
ENH: fix spelling error bug # 4233
|
2007-02-20 15:09:09 -05:00 |
Ken Martin
|
4ddfe5f9a4
|
ENH: only add the test for some platforms
|
2007-02-20 15:03:22 -05:00 |
Bill Hoffman
|
d5cb0f48b7
|
ENH: fix source extensions fror txt on xcode
|
2007-02-20 13:52:29 -05:00 |
Ken Martin
|
06027d1d2b
|
ENH: fix for Watcom
|
2007-02-20 12:28:22 -05:00 |
Bill Hoffman
|
d712e40d36
|
ENH: fix for force language stuff
|
2007-02-20 11:14:41 -05:00 |
Bill Hoffman
|
323860cbdf
|
ENH: fix crash
|
2007-02-20 10:52:06 -05:00 |
Bill Hoffman
|
1d8e7e9411
|
BUG: fix for bug 4423 set language fixes
|
2007-02-20 09:35:21 -05:00 |
Bill Hoffman
|
5c0a340a9e
|
ENH: remove ConvLib test for now
|
2007-02-19 16:34:05 -05:00 |
Bill Hoffman
|
c856f76de3
|
ENH: use correct name
|
2007-02-19 15:12:06 -05:00 |
Bill Hoffman
|
797a7f50a2
|
ENH: use project not target name
|
2007-02-19 15:07:31 -05:00 |
Ken Martin
|
245e7c3482
|
ENH: make the test really test targets with spaces
|
2007-02-19 14:48:04 -05:00 |
Ken Martin
|
84315a7d57
|
BUG: fix accidental checkin
|
2007-02-19 14:32:36 -05:00 |
Ken Martin
|
e7ab8a0e1d
|
ENH: fixed more bugs with spaces in the path
|
2007-02-19 14:25:45 -05:00 |
Bill Hoffman
|
303048d3dc
|
ENH: add test for conv libraries
|
2007-02-19 13:26:38 -05:00 |
Ken Martin
|
09699018cc
|
ENH: turn on spaces in path test
|
2007-02-19 13:20:27 -05:00 |
Ken Martin
|
314f5f60a0
|
BUG: fix for spaces in path for nmake
|
2007-02-19 12:26:32 -05:00 |
Ken Martin
|
74968ce1c7
|
BUG: fix for shrinking cmake oh no
|
2007-02-19 11:30:34 -05:00 |
Andy Cedilnik
|
32af87ad04
|
STYLE: Nightly Version update
|
2007-02-18 21:44:54 -05:00 |
Bill Hoffman
|
857a54ec54
|
STYLE: fix warning
|
2007-02-18 09:31:16 -05:00 |
Andy Cedilnik
|
3ebb0f5469
|
STYLE: Nightly Version update
|
2007-02-17 22:43:04 -05:00 |
Bill Hoffman
|
63e2a9dffa
|
ENH: fix for external object test
|
2007-02-17 11:43:47 -05:00 |
Bill Hoffman
|
f7cd9f76ce
|
STYLE: fix line length issues
|
2007-02-17 08:46:25 -05:00 |
Bill Hoffman
|
66523061d0
|
ENH: remove warnings and debug statement
|
2007-02-17 08:38:41 -05:00 |
Bill Hoffman
|
fad49c8724
|
ENH: fix for vs ide
|
2007-02-16 16:45:47 -05:00 |
Bill Hoffman
|
ca0230a33e
|
ENH: check in initial conv library stuff
|
2007-02-16 16:12:17 -05:00 |
Andy Cedilnik
|
4d325a4597
|
STYLE: Nightly Version update
|
2007-02-16 15:24:38 -05:00 |
Andy Cedilnik
|
ffc0b5e4de
|
BUG: Overwrite the symlink if it already exists. Close Bug #4418 - cmake -create-symlink doesn't overwrite existing symlinks
|
2007-02-15 15:07:16 -05:00 |
Brad King
|
7c72e03c25
|
BUG: Do not hack the exception handling default for linker flags or for per-source-file flags.
|
2007-02-15 12:23:42 -05:00 |
Andy Cedilnik
|
d64a5a81ca
|
STYLE: Nightly Version update
|
2007-02-14 22:24:43 -05:00 |
Andy Cedilnik
|
f5297645a9
|
STYLE: Nightly Version update
|
2007-02-13 22:44:10 -05:00 |
Andy Cedilnik
|
f2c0dbd164
|
ENH: More work on the packaging. Add Applicaitons, add icons, etc
|
2007-02-13 14:13:51 -05:00 |
Andy Cedilnik
|
4904db4c8f
|
STYLE: Nightly Version update
|
2007-02-12 23:16:21 -05:00 |
Andy Cedilnik
|
1df084bdad
|
STYLE: Nightly Version update
|
2007-02-11 22:34:29 -05:00 |
Andy Cedilnik
|
39e3838db0
|
STYLE: Nightly Version update
|
2007-02-10 22:23:31 -05:00 |
Andy Cedilnik
|
df4cab249c
|
STYLE: Nightly Version update
|
2007-02-09 22:14:15 -05:00 |
Bill Hoffman
|
0e95a190bc
|
ENH: add atonly support to cmCommandArgumentParserHelper.cxx and remove old non-yacc parser code from cmMakefile.cxx
|
2007-02-09 13:44:37 -05:00 |
Andy Cedilnik
|
0e1ae13f7c
|
STYLE: Nightly Version update
|
2007-02-08 22:08:18 -05:00 |
Brad King
|
83466bf12e
|
ENH: Added PrecompiledHeader test for MSVC compilers.
|
2007-02-08 16:18:21 -05:00 |
Andy Cedilnik
|
7fb573d437
|
STYLE: Nightly Version update
|
2007-02-07 22:02:34 -05:00 |
Bill Hoffman
|
cbe95dffcc
|
BUG: fix for bug 4414, find targets in the global generator for set_target_properties and add_dependencies
|
2007-02-07 11:49:42 -05:00 |
Brad King
|
96665eb79d
|
STYLE: Fixed line-too-long.
|
2007-02-07 09:23:41 -05:00 |
Andy Cedilnik
|
fb21ee5ce7
|
STYLE: Nightly Version update
|
2007-02-06 21:56:38 -05:00 |
Bill Hoffman
|
f752ff9268
|
ENH: fix documentation to include source language property
|
2007-02-06 16:03:41 -05:00 |
Brad King
|
bc8f3d504a
|
BUG: Patch from Alex to fix single-command help broken by previous patch.
|
2007-02-06 15:05:56 -05:00 |
Andy Cedilnik
|
d240b7e48b
|
STYLE: Nightly Version update
|
2007-02-05 21:53:48 -05:00 |
Ken Martin
|
551397b898
|
ENH: add more time to bootstrap test
|
2007-02-05 11:13:18 -05:00 |
Brad King
|
6bba86c8c8
|
BUG: Patch from Alex to recompute dependencies when the include regex changes. This addresses bug#4168.
|
2007-02-05 09:48:38 -05:00 |
Andy Cedilnik
|
9e61ee2bed
|
STYLE: Nightly Version update
|
2007-02-04 21:47:21 -05:00 |
Andy Cedilnik
|
27294f51ea
|
STYLE: Nightly Version update
|
2007-02-03 21:41:36 -05:00 |
Andy Cedilnik
|
19b91cc41b
|
STYLE: Nightly Version update
|
2007-02-02 21:28:19 -05:00 |
Bill Hoffman
|
266971e302
|
STYLE: fix warnings
|
2007-02-02 16:52:20 -05:00 |
Bill Hoffman
|
4925e64b97
|
ENH: add support for cygwin source and binary packaging
|
2007-02-02 14:40:26 -05:00 |
Brad King
|
1feb4a09b0
|
COMP: Fix void return failure.
|
2007-02-02 14:13:51 -05:00 |
Ken Martin
|
c160587130
|
ENH: allow the dashboard to override the timeouts for CTestTest
|
2007-02-02 10:14:50 -05:00 |
Brad King
|
f8b898fa6d
|
STYLE: Fixed line length and this-> convention violations from yesterday's patch.
|
2007-02-02 09:11:41 -05:00 |
Brad King
|
8f6b49f7b1
|
STYLE: Fixed line-too-long.
|
2007-02-02 09:11:39 -05:00 |
Andy Cedilnik
|
180f90a1e3
|
STYLE: Nightly Version update
|
2007-02-01 20:38:53 -05:00 |
Bill Hoffman
|
fd799a5d0e
|
STYLE: fix line length
|
2007-02-01 17:06:05 -05:00 |
Brad King
|
23d8525d46
|
BUG: Use the exe/lib output path for .pdb file location. This addresses bug#3277 and bug#4287.
|
2007-02-01 16:56:36 -05:00 |
Brad King
|
4bc0fd0941
|
ENH: Added cmTarget::GetPDBName method to simplify computation of .pdb file name for a target.
|
2007-02-01 16:54:49 -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
|
7e896821f5
|
BUG: Do not use bitwise OR on bool.
|
2007-02-01 15:44:39 -05:00 |
Brad King
|
05b5600444
|
STYLE: Removed unused method declarations.
|
2007-02-01 15:22:42 -05:00 |
Brad King
|
939ae77b7b
|
ENH: Added a special flags integer field to the flag map entries. Added flags for user values and other special cases. Added precompiled header flag translation entries. This addresses bug#3512.
|
2007-02-01 15:02:35 -05:00 |
Brad King
|
293f24763f
|
STYLE: Removed one more stray comment.
|
2007-02-01 14:45:08 -05:00 |
Ken Martin
|
2da51e0f69
|
STYLE: removed code accidently checked in
|
2007-02-01 14:43:09 -05:00 |
Ken Martin
|
3dd4a53d97
|
BUG: fix for bug number 3320
|
2007-02-01 14:11:06 -05:00 |
Brad King
|
0b4bd97210
|
COMP: Removed unused variable.
|
2007-02-01 13:04:15 -05:00 |
Brad King
|
62d4c1b14a
|
ENH: Added mapping of /NODEFAULTLIB flag when no values are provided.
|
2007-02-01 12:00:17 -05:00 |
Brad King
|
d8aa12178d
|
ENH: Reimplemented parsing and mapping of flags into vcproj file attribute options. This cleans up and centralizes a few things. It is in preparation for dealing with precompiled header flags for bug #3512 since they require some special handling.
|
2007-02-01 11:49:27 -05:00 |
Brad King
|
d37abb6b5d
|
ENH: Added EscapeWindowsShellArgument and ParseWindowsCommandLine methods to cmSystemTools.
|
2007-02-01 11:45:37 -05:00 |
Ken Martin
|
f46704fefe
|
BUG: fix for bug number 3964
|
2007-02-01 11:33:30 -05:00 |
Brad King
|
58bf0dbac1
|
ENH: Patch from Alex to improve implementation and prepare for splitting the man page into more sections.
|
2007-02-01 10:38:42 -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 |
Andy Cedilnik
|
9d217a94e5
|
STYLE: Nightly Version update
|
2007-01-31 20:07:55 -05:00 |
Bill Hoffman
|
39eba4ce11
|
ENH: commit cygwin source generator files, not used yet
|
2007-01-31 16:50:24 -05:00 |
Bill Hoffman
|
8013ffd23b
|
ENH: do not use crazy long paths to object files for try compile
|
2007-01-31 16:49:25 -05:00 |
Andy Cedilnik
|
b0cd96983b
|
COMP: Remove osx bundle from OSXScriptLauncher
|
2007-01-31 13:54:02 -05:00 |
Andy Cedilnik
|
4240fc1bcb
|
COMP: Use new API
|
2007-01-31 13:53:30 -05:00 |
Andy Cedilnik
|
c32af51867
|
COMP: Add missing file in the installation
|
2007-01-31 13:37:46 -05:00 |
Bill Hoffman
|
345df44dc5
|
BUG: make sure external vs projects use the GUID in the project if it has one.
|
2007-01-31 13:34:18 -05:00 |
Andy Cedilnik
|
c6c4e3aa60
|
STYLE: Nightly Version update
|
2007-01-30 20:14:19 -05:00 |
Andy Cedilnik
|
7437ceab83
|
ENH: Allow to specify build target
|
2007-01-30 11:48:47 -05:00 |
Andy Cedilnik
|
4a2474765f
|
COMP: Fix bootstrap
|
2007-01-30 11:48:17 -05:00 |
Ken Martin
|
49085f7fed
|
BUG: fixes so that --build-and-test will honor timeouts
|
2007-01-30 11:35:17 -05:00 |
Bill Hoffman
|
b32f3b4131
|
ENH: allow copy if different from a file to a directory to work
|
2007-01-30 11:32:33 -05:00 |
Andy Cedilnik
|
88f798d286
|
STYLE: Nightly Version update
|
2007-01-29 20:30:47 -05:00 |
Ken Martin
|
098c1dcdfe
|
BUG: fix in the timeout code
|
2007-01-29 12:42:33 -05:00 |
Andy Cedilnik
|
2b54ecd1e4
|
STYLE: Nightly Version update
|
2007-01-28 20:08:06 -05:00 |
Andy Cedilnik
|
b5cc76543f
|
STYLE: Nightly Version update
|
2007-01-27 20:09:10 -05:00 |
Mathieu Malaterre
|
9c3fb107a8
|
STYLE: Fix typo
|
2007-01-27 15:29:41 -05:00 |
Andy Cedilnik
|
fd9a41a653
|
STYLE: Nightly Version update
|
2007-01-26 20:14:42 -05:00 |
Ken Martin
|
2888b13ef9
|
STYLE: improve IF documentation to cover elseif
|
2007-01-26 15:06:07 -05:00 |
Brad King
|
52803bc8af
|
BUG: Added use of KWSYS_INSTALL_COMPONENT_NAME_DEVELOPMENT for header file install rules.
|
2007-01-26 14:26:44 -05:00 |
Ken Martin
|
15d338e26f
|
COMP: fix warning
|
2007-01-26 09:31:44 -05:00 |
Bill Hoffman
|
d67ccb828d
|
BUG: remove early ;
|
2007-01-25 17:05:55 -05:00 |
Bill Hoffman
|
bd531d3fae
|
BUG: fix for 4186, kdevelop adding file twice
|
2007-01-25 15:44:52 -05:00 |
Ken Martin
|
2f84bd1758
|
ENH: added per test timeout support
|
2007-01-25 11:16:16 -05:00 |
Brad King
|
f71ad851d8
|
ENH: Patch from Alex to make deprecated command documentation more consistent.
|
2007-01-24 13:45:42 -05:00 |
Brad King
|
03a46e0381
|
ENH: Patch from Alex to document this command as discouraged.
|
2007-01-24 13:40:31 -05:00 |
Andy Cedilnik
|
1d34e22c96
|
STYLE: Nightly Version update
|
2007-01-24 07:46:31 -05:00 |
Bill Hoffman
|
37d979e0fc
|
ENH: this does not need to be safe as the value is checked
|
2007-01-23 14:28:40 -05:00 |
Andy Cedilnik
|
8638e31a88
|
STYLE: Nightly Version update
|
2007-01-23 14:07:20 -05:00 |
Bill Hoffman
|
0272c209a5
|
ENH: avoid crash, but do not make it an error if include flags is missing from a language
|
2007-01-23 13:08:40 -05:00 |
Bill Hoffman
|
91bd8099d8
|
ENH: make the include flag required for a language avoids seg fault
|
2007-01-23 11:39:22 -05:00 |
Bill Hoffman
|
e537b60ea2
|
ENH: undo bug fix because of failed test
|
2007-01-23 11:25:26 -05:00 |
Bill Hoffman
|
ef9e460f65
|
ENH: add link flags for debug/release etc
|
2007-01-23 10:50:05 -05:00 |
Andy Cedilnik
|
c3ae42fc1e
|
STYLE: Nightly Version update
|
2007-01-22 20:14:42 -05:00 |
Brad King
|
c0a0f8842b
|
ENH: Patch from Alex to document WRITE_FILE as a discouraged command.
|
2007-01-22 10:52:27 -05:00 |
Brad King
|
1e566707da
|
COMP: Patch from Alex for const correctness.
|
2007-01-22 10:52:24 -05:00 |
Andy Cedilnik
|
a3877bf136
|
STYLE: Nightly Version update
|
2007-01-21 20:07:33 -05:00 |
Andy Cedilnik
|
aa761edc13
|
STYLE: Nightly Version update
|
2007-01-20 21:05:39 -05:00 |
Andy Cedilnik
|
4fe11cca2f
|
STYLE: Nightly Version update
|
2007-01-19 20:10:34 -05:00 |
Andy Cedilnik
|
6f7bfb6fed
|
STYLE: Nightly Version update
|
2007-01-18 20:10:24 -05:00 |
Bill Hoffman
|
1589890a09
|
ENH: do not use relative paths for custom command commands if they working directory is used
|
2007-01-18 16:10:21 -05:00 |
Clinton Stimpson
|
e264771122
|
ENH: Add support for "~otheruser/"
|
2007-01-16 14:37:33 -05:00 |
Andy Cedilnik
|
8388640c03
|
STYLE: Fix kwstyle
|
2007-01-15 12:31:29 -05:00 |
Bill Hoffman
|
cc2364f559
|
STYLE: fix link lenght issue
|
2007-01-15 12:12:56 -05:00 |
Andy Cedilnik
|
df6d0ab8b9
|
STYLE: Nightly Version update
|
2007-01-14 20:10:45 -05:00 |
Andy Cedilnik
|
5e6f6f4a62
|
STYLE: Nightly Version update
|
2007-01-13 20:12:19 -05:00 |
Andy Cedilnik
|
a85e26d960
|
STYLE: Nightly Version update
|
2007-01-12 20:40:21 -05:00 |
Clinton Stimpson
|
50489ff6ff
|
ENH: Handle "~" in SplitPath.
|
2007-01-12 16:47:23 -05:00 |
Bill Hoffman
|
cca67d7f8e
|
BUG: fix for bug 4239, NODEFAULTLIB flag support in ide
|
2007-01-11 21:02:47 -05:00 |
Andy Cedilnik
|
266ce704d2
|
STYLE: Nightly Version update
|
2007-01-11 20:54:53 -05:00 |
Andy Cedilnik
|
cd5535ee9c
|
STYLE: Fix kwstyle issues
|
2007-01-11 10:49:18 -05:00 |
Andy Cedilnik
|
bee7c788fe
|
STYLE: Nightly Version update
|
2007-01-10 20:54:57 -05:00 |
Bill Hoffman
|
c3148813f4
|
ENH: fix warning and code style
|
2007-01-10 19:59:53 -05:00 |
Andy Cedilnik
|
de5540f7e5
|
ENH: First pass at CPack generator for OSX X11 applications. This are applications that require X11 to work. This is not really installed but a bundle packager
|
2007-01-10 15:30:26 -05:00 |
Andy Cedilnik
|
c2780e2c9a
|
STYLE: Nightly Version update
|
2007-01-09 21:02:09 -05:00 |
Andy Cedilnik
|
8fe00d7a0b
|
STYLE: Nightly Version update
|
2007-01-08 21:01:03 -05:00 |
Brad King
|
55f5f27cd6
|
STYLE: Fixed documentation of how to produce forwarding executables for multi-configuration builds with CMAKE_INTDIR.
|
2007-01-08 15:12:00 -05:00 |
Andy Cedilnik
|
74f75c84b8
|
STYLE: Nightly Version update
|
2007-01-07 21:05:36 -05:00 |
Andy Cedilnik
|
1671455770
|
STYLE: Nightly Version update
|
2007-01-06 22:56:16 -05:00 |
Andy Cedilnik
|
332f409467
|
STYLE: Nightly Version update
|
2007-01-06 00:49:39 -05:00 |
Ken Martin
|
a2262a8394
|
BUG: fix for bad argument handling
|
2007-01-04 16:03:41 -05:00 |
Andy Cedilnik
|
2861c056bc
|
STYLE: Nightly Version update
|
2007-01-04 14:54:35 -05:00 |
Ken Martin
|
92db085ac6
|
ENH: change STRICT to CMAKE_STRICT
|
2007-01-04 13:02:43 -05:00 |
Andy Cedilnik
|
51d255bf92
|
STYLE: Nightly Version update
|
2007-01-04 03:53:37 -05:00 |
Andy Cedilnik
|
e9be4e0c01
|
STYLE: Nightly Version update
|
2007-01-03 04:20:37 -05:00 |
Andy Cedilnik
|
63ab3c4fe0
|
STYLE: Nightly Version update
|
2007-01-02 00:08:21 -05:00 |
Andy Cedilnik
|
2f86520654
|
STYLE: Nightly Version update
|
2007-01-01 04:02:22 -05:00 |
Andy Cedilnik
|
7fc2132d4f
|
STYLE: Nightly Version update
|
2006-12-31 03:29:28 -05:00 |
Andy Cedilnik
|
0b4fdd8a63
|
STYLE: Nightly Version update
|
2006-12-30 03:24:23 -05:00 |
Andy Cedilnik
|
a9819e1c4c
|
STYLE: Nightly Version update
|
2006-12-29 03:29:48 -05:00 |
Bill Hoffman
|
255a4b966e
|
BUG: fix problem with path suffix and mac frameworks and find stuff, showed up in FindPythonLibs.cmake
|
2006-12-28 15:31:47 -05:00 |
Andy Cedilnik
|
f6c2972956
|
STYLE: Nightly Version update
|
2006-12-28 03:23:21 -05:00 |
Andy Cedilnik
|
b622d091e6
|
STYLE: Nightly Version update
|
2006-12-27 03:27:13 -05:00 |
Andy Cedilnik
|
3f3d700f65
|
STYLE: Nightly Version update
|
2006-12-26 03:27:36 -05:00 |
Andy Cedilnik
|
996e1a19cf
|
STYLE: Nightly Version update
|
2006-12-25 03:25:32 -05:00 |
Andy Cedilnik
|
1aa4fab6c1
|
STYLE: Nightly Version update
|
2006-12-24 03:24:45 -05:00 |
Andy Cedilnik
|
e44e0cdb66
|
STYLE: Nightly Version update
|
2006-12-23 03:38:55 -05:00 |
Andy Cedilnik
|
b3a6ef138a
|
STYLE: Nightly Version update
|
2006-12-22 03:36:15 -05:00 |
Utkarsh Ayachit
|
1ed84c377b
|
BUG: reverting previous change.
|
2006-12-21 10:24:33 -05:00 |
Utkarsh Ayachit
|
fbfd05a308
|
BUG: When a "wrong argument" was detected, we call the WrongArgument handler. If the handler returns success, the argument parsing should continue. Currently, it was stopping parsing immediately after the wrong argument was processed, irrespective of the WrongArgument handler status. Fixed that.
|
2006-12-21 09:52:01 -05:00 |
Andy Cedilnik
|
87f5f6e239
|
STYLE: Nightly Version update
|
2006-12-21 04:12:01 -05:00 |
Andy Cedilnik
|
34cf1b1265
|
STYLE: Nightly Version update
|
2006-12-20 03:28:32 -05:00 |
Andy Cedilnik
|
1a1c523c98
|
STYLE: Nightly Version update
|
2006-12-19 03:29:04 -05:00 |
Utkarsh Ayachit
|
fa69ba942e
|
BUG: FileIsDirectory would remove the trailing '/' even when the path is indeed the root i.e. '/'. Hence the test would be incorrect for root directory. Fixed that.
|
2006-12-18 11:30:09 -05:00 |
Mathieu Malaterre
|
b95f198348
|
COMP: Fix compilation when VS6 is using the new ANSI stdlib
|
2006-12-18 11:04:25 -05:00 |
Andy Cedilnik
|
ef8735a240
|
STYLE: Nightly Version update
|
2006-12-18 03:24:12 -05:00 |
Andy Cedilnik
|
e2570c309e
|
STYLE: Nightly Version update
|
2006-12-17 03:25:07 -05:00 |
Andy Cedilnik
|
f75900f4d3
|
STYLE: Nightly Version update
|
2006-12-16 03:26:18 -05:00 |
Mathieu Malaterre
|
df54b22212
|
COMP: Try to get stringstream emulation working
|
2006-12-15 10:30:41 -05:00 |
Andy Cedilnik
|
6469e1a4c4
|
STYLE: Nightly Version update
|
2006-12-15 03:32:35 -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
|
1fe21ae35e
|
ENH: Adding stringstream compatibility implementation. It is currently identical to ostringstream. Fixed local variable pcount hiding method warning.
|
2006-12-14 13:18:27 -05:00 |
Mathieu Malaterre
|
55af790ebf
|
BUG: Remove stringstream implementation, this was a wrong interface anyway.
|
2006-12-14 11:41:51 -05:00 |
Mathieu Malaterre
|
db116b94e4
|
BUG: disable test for now
|
2006-12-14 11:02:22 -05:00 |
Brad King
|
0fcccb151f
|
ENH: Changes from Ryan C. Gordon to fix old process execution on BeOS.
|
2006-12-14 10:03:25 -05:00 |
Andy Cedilnik
|
3106262ec0
|
STYLE: Nightly Version update
|
2006-12-14 03:26:44 -05:00 |
Ken Martin
|
2245c50c51
|
COMP: oops really did not mean to check in that change
|
2006-12-13 13:24:23 -05:00 |
Ken Martin
|
5d11564c35
|
ENH: allow source file properties to chain to Directories and up
|
2006-12-13 12:19:59 -05:00 |
Mathieu Malaterre
|
cc73abf7e7
|
ENH: provide stringstream too. FIX: warning shadow var
|
2006-12-13 08:52:35 -05:00 |
Andy Cedilnik
|
7d1801beee
|
STYLE: Nightly Version update
|
2006-12-13 03:23:32 -05:00 |
Ken Martin
|
ed4d2ec51e
|
ENH: remove old commands
|
2006-12-12 14:40:21 -05:00 |
Ken Martin
|
372ce05a07
|
ENH: fix a warning and a nice fix to the IF command
|
2006-12-12 10:07:20 -05:00 |
Andy Cedilnik
|
97eceffa23
|
STYLE: Nightly Version update
|
2006-12-12 03:29:30 -05:00 |
Ken Martin
|
179579bed7
|
ENH: improve SetProperties and fix a couple warnings
|
2006-12-11 10:26:10 -05:00 |
Andy Cedilnik
|
09029e9cd8
|
STYLE: Nightly Version update
|
2006-12-11 03:20:51 -05:00 |
Andy Cedilnik
|
cadac9f0e5
|
STYLE: Nightly Version update
|
2006-12-10 03:19:49 -05:00 |
Mathieu Malaterre
|
b9787a965f
|
BUG: revert yesterday patch. The implementation was correct. The problem was that _WIN32 was forced to be #define on cygwin when included from ITK, which was miss matching the implementation from the declaration. Put extra condition for CYGWIN system
|
2006-12-09 11:25:25 -05:00 |
Andy Cedilnik
|
945dfe5c8e
|
STYLE: Nightly Version update
|
2006-12-09 03:32:04 -05:00 |
Mathieu Malaterre
|
458fa7559b
|
BUG: Make sure to use the Win32 interface (HINSTANCE) for handling shared lib on cygwin and mingw system
|
2006-12-08 15:52:30 -05:00 |
Ken Martin
|
1dd5db0235
|
COMP: fix some warnings and style issues
|
2006-12-08 09:27:52 -05:00 |