forked from Kitware/CMake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog.txt
7462 lines (5003 loc) · 219 KB
/
ChangeLog.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-+- -+- -+- -+- -+- -+- -+- -+- -+- -+- -+- -+- -+- -+- -+- -+- -+- -+-
NOTE: This file was automatically generated by `cvs2cl.pl'. If you
edit this file, your changes will be lost when someone next runs
cvs2cl.pl. See http://www.red-bean.com/~kfogel/cvs2cl.shtml for more.
-+- -+- -+- -+- -+- -+- -+- -+- -+- -+- -+- -+- -+- -+- -+- -+- -+- -+-
2001-12-07 19:31 hoffman
* Source/cmaketest.cxx: ENH: convert to windows paths
2001-12-07 18:10 hoffman
* Source/cmaketest.cxx: ENH: use windows paths to run commands and
escape spaces
2001-12-07 15:58 hoffman
* Source/cmBorlandMakefileGenerator.cxx,
Source/cmNMakeMakefileGenerator.cxx,
Source/cmUnixMakefileGenerator.cxx,
Source/cmUnixMakefileGenerator.h: ENH: add custom commands for
targets
2001-12-07 15:32 barre
* Templates/CMakeBorlandWindowsSystemConfig.cmake: Remove "unused
var" warning from C_FLAGS
2001-12-07 01:02 barre
* Source/cmNMakeMakefileGenerator.cxx: Do not output library search
path if the library path option/flag is empty + add
CMAKE_LINKER_HIDE_PARAMETERS since some linkers just do not support
the @<< syntax
2001-12-07 01:02 barre
* Templates/CMakeNMakeWindowsSystemConfig.cmake: Add
CMAKE_LINKER_HIDE_PARAMETERS since some linkers just do not support
the @<< syntax
2001-12-06 22:40 andy
* Source/CursesDialog/cmCursesMainForm.cxx: Fix bug with string
2001-12-06 22:09 hoffman
* Source/cmakewizard.cxx: ENH: call convert to unix slashes for
path and filepath entries
2001-12-06 22:07 berk
* Source/CursesDialog/cmCursesMainForm.cxx: Added support for ~.
2001-12-06 21:50 martink
* Source/cmSystemTools.cxx: handle tildas
2001-12-06 18:31 barre
* Source/cmUnixMakefileGenerator.cxx: Lib path should be converted
to native path too.
2001-12-06 18:31 barre
* Source/cmBorlandMakefileGenerator.cxx,
Source/cmBorlandMakefileGenerator.h,
Source/cmNMakeMakefileGenerator.cxx,
Source/cmNMakeMakefileGenerator.h: Fix the command quoting pb
(remove m_QuoteNextCommand), move ConvertToNativePath to NMake gen
2001-12-06 16:49 martink
* Modules/FindTCL.cmake: now broken into pieces
2001-12-06 16:49 martink
* Modules/FindTclsh.cmake, Modules/FindWish.cmake: new modules
2001-12-06 16:49 martink
* Source/CursesDialog/ccmake.cxx: Cleaning last line at exit.
2001-12-06 16:49 martink
* Modules/FindDart.cmake: better docs
2001-12-06 16:49 martink
* Modules/Dart.cmake: better use of modules
2001-12-06 15:24 martink
* Templates/CMakeSystemConfig.cmake.in: made install prefix non
advanced
2001-12-05 21:05 barre
* Source/MFCDialog/CMakeSetupDialog.cpp: If Shift is pressed with
'OK', then don't quit
2001-12-05 20:36 perera
* Modules/FindTCL.cmake: ENH: add more possible names for
executables.
2001-12-05 20:28 barre
* Source/cmNMakeMakefileGenerator.cxx, Source/cmCacheManager.cxx,
Source/MFCDialog/CMakeSetupDialog.cpp: Add single quotes feature.
2001-12-05 20:00 barre
* Templates/CMakeNMakeWindowsSystemConfig.cmake: Add single quotes
feature.
2001-12-05 17:07 martink
* Source/cmMakefile.h: up version
2001-12-05 16:59 martink
* Source/cmMakefile.h: up version
2001-12-05 16:38 hoffman
* ChangeLog.txt: new version
2001-12-05 16:37 will
* CMake.pdf: updated from rtf
2001-12-05 16:32 hoffman
* CMake.rtf: ENH: update cvs path
2001-12-04 23:49 starreveld
* Templates/configure, Templates/configure.in:
Add the flat_namespace and undefined suppress flags to OSX builds
2001-12-04 22:28 hoffman
* Source/cmSystemTools.cxx: ENH: remove /tmp_mnt from all paths in
convert to unix slashes
2001-12-04 21:19 berk
* Source/CursesDialog/cmCursesMainForm.cxx: Fixed outdated comment
2001-12-04 20:55 hoffman
* Templates/CMakeBorlandWindowsSystemConfig.cmake: add tWM to c
flags as well as CXX flags
2001-12-04 20:53 berk
* Source/CursesDialog/cmCursesMainForm.cxx: Fixed overflow problem.
2001-12-04 20:16 hoffman
* Templates/CMakeBorlandWindowsSystemConfig.cmake: ENH: add -tWM to
default flags for compilation
2001-12-04 17:03 hoffman
* Source/cmUnixMakefileGenerator.cxx: crazy fix for putenv, and
native path called on custom command paths
2001-12-04 16:20 berk
* Source/CursesDialog/cmCursesStandardIncludes.h: replacing clear()
2001-12-04 16:16 berk
* Source/CursesDialog/ccmake.cxx,
Source/CursesDialog/cmCursesForm.cxx,
Source/CursesDialog/cmCursesForm.h,
Source/CursesDialog/cmCursesLongMessageForm.cxx,
Source/CursesDialog/cmCursesMainForm.cxx,
Source/CursesDialog/cmCursesStringWidget.cxx: Added debugging.
2001-12-04 15:53 barre
* Modules/FindTCL.cmake: Make shells also ADVANCED
2001-12-04 15:53 barre
* Modules/Dart.cmake: Remove code duplication. Call FindTcl.cmake,
which also does the ADVANCED stuff.
2001-12-04 15:53 barre
* Modules/Documentation.cmake, Modules/FindCygwin.cmake,
Modules/FindDoxygen.cmake, Modules/FindHhc.cmake,
Modules/FindPerl.cmake, Modules/FindSelfPackers.cmake,
Modules/FindUnixCommands.cmake, Modules/FindWget.cmake: Remove
unneeded test and code duplication. Add WIN32 test. Make all
ADVANCED.
2001-12-04 15:27 barre
* Modules/FindPythonLibs.cmake: Make vars ADVANCED for WIN32 (same
as Tcl)
2001-12-04 15:11 hoffman
* Source/CursesDialog/form/frm_driver.c: no c++ comments in c code,
duhhhh
2001-12-04 00:58 hoffman
* Source/CursesDialog/form/frm_driver.c: ENH: AIX seems to define
lines and columns as macros, I undefed them
2001-12-03 23:04 hoffman
* Templates/CMakeBorlandWindowsSystemConfig.cmake: ENH: fix crashes
in console apps
2001-12-03 22:47 hoffman
* Source/cmVariableRequiresCommand.cxx: ENH: let people know the
variable is advanced
2001-12-03 22:00 hoffman
* Source/cmake.cxx: ENH: add -C load cache file option
2001-12-03 22:00 hoffman
* Modules/FindOpenGL.cmake, Source/cmBorlandMakefileGenerator.cxx,
Templates/CMakeBorlandWindowsSystemConfig.cmake: ENH: fix debugging
with borland
2001-12-03 20:59 barre
* Source/MFCDialog/CMakeSetupDialog.cpp,
Source/MFCDialog/CMakeCommandLineInfo.cpp,
Source/MFCDialog/CMakeCommandLineInfo.h: Add /A and /G command-line
param to carry the value of "Show Advanced" and generator name in
desktop shortcuts
2001-12-03 20:55 martink
* Source/ctest.cxx: minor fix for not found executables
2001-12-03 20:48 hoffman
* CMake.rtf: [no log message]
2001-12-03 20:11 berk
* Source/cmake.cxx, Source/cmake.cxx: Fixed help.
2001-12-03 18:05 hoffman
* Source/Makefile.borland: add wizard
2001-12-03 14:39 hoffman
* CMake.rtf: update docs some
2001-12-02 23:22 ibanez
* Source/cmFLTKWrapUICommand.cxx: ENH: AddCustomCommand register
now multiple outputs. Auxiliary variable manage the output
directory where FLTK generated code is going to be writen.
2001-11-30 22:20 barre
* Source/cmBuildCommand.cxx, Source/cmDSPWriter.cxx,
Source/cmDSWWriter.cxx, Source/cmIfCommand.cxx,
Source/cmUnixMakefileGenerator.cxx, Source/cmake.cxx: fix warning
for Borland build
2001-11-30 21:48 hoffman
* Source/cmakewizard.h: [no log message]
2001-11-30 21:48 hoffman
* Source/CMakeLib.dsp, Source/CMakeLists.txt,
Source/Makefile.borland, Source/Makefile.in,
Source/cmBorlandMakefileGenerator.cxx,
Source/cmBorlandMakefileGenerator.h,
Source/cmBorlandMakefileGenerator2.cxx,
Source/cmBorlandMakefileGenerator2.h, Source/cmForEachCommand.cxx,
Source/cmake.cxx, Source/cmakemain.cxx, Source/cmakewizard.cxx,
Templates/CMakeBorlandWindowsSystemConfig.cmake,
Templates/CMakeWindowsBorlandConfig.cmake,
Templates/CMakeWindowsBorlandConfig2.cmake: new borland generator
moved into place
2001-11-30 21:27 hoffman
* Source/cmBorlandMakefileGenerator.cpp,
Source/cmBorlandMakefileGenerator.h: Replace with nmake subclassed
generator
2001-11-30 21:04 barre
* Source/cmBorlandMakefileGenerator2.cxx,
Source/cmNMakeMakefileGenerator.cxx,
Source/cmUnixMakefileGenerator.cxx: Add options for library manager
(lib).
2001-11-30 21:04 barre
* Templates/CMakeNMakeWindowsSystemConfig.cmake: Add options for
library manager (lib). Alpha sort
2001-11-30 20:55 berk
* Modules/FindTCL.cmake: Unix users are smarter.
2001-11-30 20:04 berk
* Source/CursesDialog/cmCursesMainForm.cxx,
Source/CursesDialog/cmCursesStringWidget.cxx: Improving interface.
2001-11-30 19:50 hoffman
* Source/CursesDialog/cmCursesMainForm.cxx: print cmake running
message to cerr
2001-11-30 19:33 barre
* Templates/CMakeNMakeWindowsSystemConfig.cmake,
Source/cmNMakeMakefileGenerator.cxx: Add linker flags for each
build type
2001-11-30 19:24 berk
* Source/CursesDialog/cmCursesMainForm.cxx: Better documentation.
2001-11-30 19:16 berk
* Source/CursesDialog/cmCursesMainForm.cxx: Better documentation.
2001-11-30 18:59 berk
* Source/CursesDialog/cmCursesLongMessageForm.cxx,
Source/CursesDialog/cmCursesMainForm.cxx,
Source/CursesDialog/cmCursesStringWidget.cxx: Improved help.
2001-11-30 18:53 berk
* Templates/CMakeSystemConfig.cmake.in: Removed unused options.
2001-11-30 18:10 barre
* Templates/CMakeNMakeWindowsSystemConfig.cmake: CMAKE_ANSI_CFLAGS
is used by VTK, so it should be set in the NMake config so that it
gets expanded (even to "")
2001-11-30 18:09 hoffman
* Source/cmNMakeMakefileGenerator.cxx: fix library suffix
2001-11-30 17:41 hoffman
* Source/cmUnixMakefileGenerator.cxx: remove suffix rules
2001-11-30 17:05 hoffman
* Source/cmUnixMakefileGenerator.cxx: add new suffix rules
2001-11-30 16:34 berk
* Source/CursesDialog/ccmake.cxx,
Source/CursesDialog/cmCursesLongMessageForm.cxx,
Source/CursesDialog/cmCursesMainForm.cxx,
Source/CursesDialog/cmCursesStandardIncludes.h: Can non use clear
because it is undef'ed.
2001-11-30 15:58 berk
* Source/CursesDialog/ccmake.cxx: Fixed warning.
2001-11-30 15:51 berk
* Source/CursesDialog/ccmake.cxx,
Source/CursesDialog/cmCursesMainForm.cxx: Fixed warning.
2001-11-30 15:51 berk
* Source/CursesDialog/cmCursesMainForm.h,
Source/CursesDialog/cmCursesMainForm.cxx: Since it is being used as
an array size in another file, it is not possible to initialize
MAX_WIDTH in a .cxx file.
2001-11-30 15:41 hoffman
* Source/cmUnixMakefileGenerator.cxx: fix warning
2001-11-30 15:39 berk
* Source/CursesDialog/cmCursesLongMessageForm.cxx,
Source/CursesDialog/cmCursesLongMessageForm.h: Missed std::
2001-11-30 15:27 berk
* Source/CursesDialog/cmCursesMainForm.h: Missed std::
2001-11-30 15:27 berk
* Templates/CMakeSystemConfig.cmake.in: CMAKE_WORDS_BIGENDIAN
should not be in the cache.
2001-11-30 15:23 berk
* Modules/FindPythonLibs.cmake: PYTHON_DEBUG_LIBRARY is only used
on Windows.
2001-11-30 14:19 barre
* Templates/CMakeSystemConfig.cmake.in: fix: If documentation
added, then need cache type
2001-11-30 04:45 berk
* Source/CursesDialog/cmCursesLongMessageForm.cxx,
Source/CursesDialog/cmCursesLongMessageForm.h: opps I forgot to add
these
2001-11-30 04:24 hoffman
* Source/Makefile.borland, Source/cmBorlandMakefileGenerator2.cxx,
Source/cmNMakeMakefileGenerator.cxx,
Source/cmUnixMakefileGenerator.cxx,
Templates/CMakeSystemConfig.cmake.in,
Templates/CMakeWindowsBorlandConfig2.cmake: ENH: fix various
problems caused by the generalization of nmake generator
2001-11-30 01:59 barre
* Source/cmBorlandMakefileGenerator2.cxx,
Source/cmNMakeMakefileGenerator.cxx,
Source/cmUnixMakefileGenerator.cxx,
Source/cmUnixMakefileGenerator.h,
Templates/CMakeNMakeWindowsSystemConfig.cmake,
Templates/CMakeSystemConfig.cmake.in,
Templates/CMakeWindowsBorlandConfig2.cmake,
Templates/CMakeWindowsSystemConfig.cmake: Nmake build: move most of
hard-coded values to config parameters
2001-11-29 21:44 berk
* Source/cmListFileCache.cxx, Source/cmSystemTools.cxx,
Source/cmSystemTools.h, Source/ctest.cxx,
Source/CursesDialog/CMakeLists.txt, Source/CursesDialog/ccmake.cxx,
Source/CursesDialog/cmCursesCacheEntryComposite.cxx,
Source/CursesDialog/cmCursesCacheEntryComposite.h,
Source/CursesDialog/cmCursesForm.h,
Source/CursesDialog/cmCursesMainForm.cxx,
Source/CursesDialog/cmCursesMainForm.h: Improvements to the curses
interface.
2001-11-29 20:14 hoffman
* Source/MFCDialog/CMakeSetup.cpp: ENH: fix memory leaks
2001-11-29 19:51 barre
* Source/cmNMakeMakefileGenerator.cxx: Fix space pb (embended, then
escaped)
2001-11-29 14:22 hoffman
* Source/Makefile.borland: add bootstrap makefile for borland
compiler
2001-11-29 14:09 hoffman
* Source/CMakeLists.txt, Source/cmBorlandMakefileGenerator2.cxx,
Source/cmakewizard.cxx, Templates/CMakeWindowsBorlandConfig2.cmake:
fix for shared libs and borland
2001-11-29 06:46 ibanez
* Source/cmTarget.h: ENH: A type of target was added for
representing GENERATED_CODE
2001-11-29 06:46 ibanez
* Source/cmFLTKWrapUICommand.cxx: ENH: Custom commands are now
builded.
2001-11-29 06:46 ibanez
* Source/cmUnixMakefileGenerator.cxx: ENH: GENERATED_CODE case
added to switch.
2001-11-28 23:07 hoffman
* Source/CMakeLib.dsp, Source/cmBorlandMakefileGenerator2.cxx,
Source/cmBorlandMakefileGenerator2.h,
Source/cmNMakeMakefileGenerator.cxx,
Source/cmNMakeMakefileGenerator.h,
Source/cmUnixMakefileGenerator.cxx,
Source/cmUnixMakefileGenerator.h,
Templates/CMakeWindowsBorlandConfig2.cmake: ENH: borland generator
2 is working more or less
2001-11-28 19:44 ibanez
* Source/cmFLTKWrapUICommand.h: ENH: The command was simplified to
generate a source list of cxx from a source list of .fl GUI
files.
2001-11-28 19:44 ibanez
* Source/cmFLTKWrapUICommand.cxx: ENH: Command simplified in order
to construct a Source list of .cxx from a source list of .fl
GUI files.
2001-11-28 17:49 barre
* Modules/FindPythonLibs.cmake: Fynd Python debug lib in usual libs
dir too
2001-11-28 16:12 hoffman
* Source/CMakeLists.txt, Source/cmBorlandMakefileGenerator2.cxx,
Source/cmBorlandMakefileGenerator2.h,
Source/cmNMakeMakefileGenerator.cxx,
Source/cmNMakeMakefileGenerator.h, Source/cmake.cxx: add new
borland generator
2001-11-28 15:51 hoffman
* Source/cmaketest.cxx: [no log message]
2001-11-28 12:14 hoffman
* Source/cmMarkAsAdvancedCommand.cxx: fix warning
2001-11-28 12:14 hoffman
* Source/cmNMakeMakefileGenerator.cxx,
Source/cmNMakeMakefileGenerator.h,
Source/cmUnixMakefileGenerator.cxx,
Source/cmUnixMakefileGenerator.h: bug: fix same path comparison
when short paths are used
2001-11-28 00:38 ibanez
* Source/FLTKDialog/CMakeSetupGUIImplementation.cxx: FIX: When
switching from one project to another the CacheGUI wasn't being
cleared. Values from one project were mixed into the other.
2001-11-27 22:53 berk
* Source/cmNMakeMakefileGenerator.cxx,
Source/cmNMakeMakefileGenerator.h,
Source/cmUnixMakefileGenerator.cxx,
Source/cmUnixMakefileGenerator.h: ENH: nmake generator much closer
to working with spaces
2001-11-27 22:31 berk
* Source/cmMakefile.cxx: ENH: expand variables in a command before
escaping spaces in the command
2001-11-27 22:31 berk
* Source/cmOptionCommand.cxx: ENH: do not write over existing cache
values even doc strings to avoid changing the cache file
2001-11-27 21:12 berk
* Source/cmDSPWriter.cxx: remove unused include
2001-11-27 20:32 martink
* Source/cmLinkLibrariesCommand.cxx: removed extra lib paths to
avoid finding old libs
2001-11-27 20:32 martink
* Source/MFCDialog/CMakeSetup.rc: adjusted spacing
2001-11-27 20:32 martink
* Modules/FindTCL.cmake: made some vars advanced
2001-11-27 20:20 martink
* Modules/Dart.cmake: made some vars advanced
2001-11-27 05:02 ibanez
* Source/cmUnixMakefileGenerator.cxx: ENH: Support for FLTK Fluid
tool added.
2001-11-27 05:02 ibanez
* Source/cmCommands.cxx: ENH: Command for running FLTK's UI tool
"Fluid" was added.
2001-11-27 04:57 ibanez
* Modules/FindFLTK.cmake: ENH: Support for running FLUID was added.
2001-11-27 03:40 ibanez
* Source/cmFLTKWrapUICommand.cxx, Source/cmFLTKWrapUICommand.h:
Command for invoking FLTK's code generator "Fluid" during the
building process
2001-11-26 23:24 hoffman
* Modules/Dart.cmake, Source/CMakeLists.txt,
Source/cmCacheManager.cxx, Source/cmCacheManager.h,
Source/cmCommands.cxx, Source/cmSystemTools.cxx,
Source/cmSystemTools.h, Source/cmUnixMakefileGenerator.cxx,
Source/cmakewizard.cxx, Source/MFCDialog/CMakeSetup.rc,
Source/MFCDialog/CMakeSetupDialog.cpp,
Source/MFCDialog/CMakeSetupDialog.h, Source/MFCDialog/resource.h,
Templates/CMakeSystemConfig.cmake.in,
Templates/CMakeWindowsSystemConfig.cmake,
Source/cmMarkAsAdvancedCommand.cxx,
Source/cmMarkAsAdvancedCommand.h: ENH: add advanced variable types
and command line wizard gui
2001-11-26 23:24 hoffman
* Source/cmFindFileCommand.cxx, Source/cmFindFileCommand.h,
Source/cmFindLibraryCommand.cxx, Source/cmFindLibraryCommand.h,
Source/cmFindPathCommand.cxx, Source/cmFindPathCommand.h,
Source/cmFindProgramCommand.cxx, Source/cmFindProgramCommand.h:
ENH: add possibility to add doc strings to varibles created by find
type commands
2001-11-26 21:32 berk
* Source/cmCacheManager.cxx: Oops. The wrong version of the
duplicate code was kept. Loaded cache values were not made
internal.
2001-11-26 20:45 berk
* Modules/FindTCL.cmake: TK_INTERNAL_PATH is only needed on
Windows.
2001-11-26 16:31 martink
* Source/cmSystemTools.cxx, Source/cmSystemTools.h: removed warning
messages
2001-11-26 16:31 martink
* Source/cmIfCommand.cxx: better error messages
2001-11-24 23:47 barre
* Modules/Dart.cmake: I want to be able to start/end
experimental-only dashboards
2001-11-21 22:45 hoffman
* Source/cmCacheManager.cxx, Source/cmDSPWriter.cxx,
Source/cmNMakeMakefileGenerator.cxx, Source/cmSystemTools.cxx,
Source/cmSystemTools.h, Source/cmUnixMakefileGenerator.cxx,
Source/cmake.cxx, Source/cmaketest.cxx: NMake with spaces in
directories
2001-11-21 16:35 andy
* Source/cmCacheManager.cxx: Fix the current directory check for
NMake
2001-11-21 13:46 hoffman
* Source/cmQTWrapUICommand.cxx,
Source/cmVariableRequiresCommand.cxx: WAR: fix warning
2001-11-21 13:46 hoffman
* Source/cmake.cxx: ENH: clean up command line arguments
2001-11-20 22:50 hoffman
* Source/cmCacheManager.cxx, Source/cmCacheManager.h,
Source/cmake.cxx, Source/cmake.h: ENH: add command line arguments
to set cache entries
2001-11-20 22:26 berk
* Source/cmNMakeMakefileGenerator.cxx: ENH: closer to working with
spaces in source directory
2001-11-20 22:26 berk
* Source/cmDSPWriter.cxx: BUG: fix for spaces in path to
CMakeList.txt file
2001-11-20 22:26 berk
* Source/cmaketest.cxx: BUG: fix memory leak
2001-11-20 13:28 hoffman
* Source/cmStandardIncludes.h,
Source/CursesDialog/cmCursesMainForm.cxx,
Source/CursesDialog/cmCursesStandardIncludes.h: define hacks and
such for the dec compiler
2001-11-19 22:52 hoffman
* Source/cmCommands.cxx, Source/cmSystemTools.cxx,
Source/cmSystemTools.h, Source/cmVariableRequiresCommand.cxx,
Source/cmVariableRequiresCommand.h,
Source/MFCDialog/CMakeSetupDialog.cpp: ENH: add new command
VARIABLE_REQUIRES for better debugging of list files
2001-11-19 14:34 hoffman
* Source/cmVariableRequiresCommand.cxx,
Source/cmVariableRequiresCommand.h: [no log message]
2001-11-19 14:20 hoffman
* Source/MFCDialog/CMakeLists.txt: ENH: remove unused source files
2001-11-16 21:42 hoffman
* Source/cmUnixMakefileGenerator.cxx: ENH: look for cmake test with
.exe if nmake
2001-11-16 21:28 hoffman
* Source/cmNMakeMakefileGenerator.cxx: ENH: fix for dll builds
2001-11-16 21:28 hoffman
* Source/MFCDialog/CMakeLists.txt, Source/MFCDialog/CMakeSetup.dsp,
Source/MFCDialog/CMakeSetup.rc,
Source/MFCDialog/CMakeSetupDialog.cpp,
Source/MFCDialog/CMakeSetupDialog.h, Source/MFCDialog/MakeHelp.cpp,
Source/MFCDialog/MakeHelp.h, Source/MFCDialog/resource.h: face lift
for GUI and some more help
2001-11-16 18:08 bettingf
* Source/cmUnixMakefileGenerator.cxx: Added a make depend in the
clean rule to refresh the dependencies
2001-11-16 15:14 bettingf
* Source/cmUnixMakefileGenerator.cxx: undo the last change because
of problem with some versions of make
2001-11-16 14:40 bettingf
* Modules/FindQt.cmake: fixed QT_UIC_EXE name
2001-11-16 14:01 bettingf
* Source/cmMakeDepend.cxx: Now adds dependency if the file doesn't
exist but will be created during the compilation
2001-11-16 14:01 bettingf
* Source/cmUnixMakefileGenerator.cxx: added the deletion of
cmake.depends in the cleaning so that it is recomputed even source
files (i.e. .cxx or .h) are generated
2001-11-16 14:01 bettingf
* Source/cmQTWrapUICommand.cxx, Source/cmQTWrapUICommand.h:
corrected path problem and added moc compilation too
2001-11-16 03:10 hoffman
* Source/Makefile.in: remove depend on star dot h as it is not
really needed and breaks some versions of gmake
2001-11-15 23:18 hoffman
* Source/cmNMakeMakefileGenerator.cxx: ENH: use crazy temp files
for long command lines
2001-11-15 22:45 hoffman
* Source/cmNMakeMakefileGenerator.cxx: ENH: remove debug prints
2001-11-15 22:11 hoffman
* Modules/Dart.cmake, Source/cmBuildCommand.cxx,
Source/cmNMakeMakefileGenerator.cxx,
Source/cmNMakeMakefileGenerator.h,
Source/cmUnixMakefileGenerator.cxx,
Source/cmUnixMakefileGenerator.h,
Templates/CMakeNMakeWindowsSystemConfig.cmake,
Templates/CMakeSystemConfig.cmake.in,
Templates/CMakeWindowsBorlandConfig.cmake,
Templates/CMakeWindowsSystemConfig.cmake: closer to nmake working,
added CMAKE_MAKE_COMMAND instead of MAKECOMMAND used by Dart, nmake
makefiles work with borland make and nmake
2001-11-15 19:52 millerjv
* Modules/Dart.cmake: ENH: New make targets for Continuous builds.
Added a NightlyStart and NightlyUpdate target for unix builds as
well.
2001-11-15 19:52 millerjv
* DartConfig.cmake: ENH: Changed Nightly start time
2001-11-15 14:55 hoffman
* Source/cmNMakeMakefileGenerator.cxx,
Source/cmNMakeMakefileGenerator.h,
Source/cmUnixMakefileGenerator.h, Source/cmake.cxx: ENH: fix
library builds with nmake
2001-11-15 14:00 hoffman
* Source/cmUnixMakefileGenerator.cxx: BUG: wrong shortname used
2001-11-15 13:42 hoffman
* Source/cmaketest.cxx: BUG: fix build for cygwin
2001-11-15 13:42 hoffman
* Source/cmUnixMakefileGenerator.cxx: BUG: avoid .cxx.o names...
2001-11-14 23:11 hoffman
* Source/cmSystemTools.cxx, Source/cmSystemTools.h,
Source/cmUnixMakefileGenerator.cxx,
Source/cmUnixMakefileGenerator.h, Source/cmake.cxx,
Source/cmaketest.cxx, Source/cmaketest.h.in,
Templates/CMakeNMakeWindowsSystemConfig.cmake: Closer to nmake
build
2001-11-14 23:11 hoffman
* Source/cmNMakeMakefileGenerator.cxx,
Source/cmNMakeMakefileGenerator.h: closer to nmake build
2001-11-14 19:39 barre
* Source/MFCDialog/CMakeSetup.rc,
Source/MFCDialog/CMakeSetupDialog.cpp,
Source/MFCDialog/CMakeSetupDialog.h, Source/MFCDialog/resource.h:
Quick addition: "Create shortcut" menu entry.
2001-11-14 15:21 hoffman
* Templates/CMakeNMakeWindowsSystemConfig.cmake,
Source/cmNMakeMakefileGenerator.cxx,
Source/cmNMakeMakefileGenerator.h,
Source/cmUnixMakefileGenerator.cxx,
Source/cmUnixMakefileGenerator.h: nmake support
2001-11-14 14:55 king
* Source/CursesDialog/form/frm_driver.c: ERR: Fixed compiler
warning for gcc 3.0.
2001-11-14 14:55 king
* Source/CursesDialog/ccmake.cxx: ERR: Re-ordered includes to fix
macro conflict for gcc 3.0.
2001-11-14 14:22 hoffman
* Source/cmUnixMakefileGenerator.cxx: ENH: remove debug statements
2001-11-14 13:49 hoffman
* Source/FLTKDialog/CMakeSetupGUI.cxx: ENH: remove warning
2001-11-13 23:23 hoffman
* Source/CMakeLib.dsp, Source/CMakeLists.txt,
Source/cmNMakeMakefileGenerator.cxx,
Source/cmNMakeMakefileGenerator.h,
Source/cmUnixMakefileGenerator.cxx,
Source/cmUnixMakefileGenerator.h: start work on nmake generator
2001-11-13 20:54 hoffman
* Source/cmUnixMakefileGenerator.h,
Source/cmUnixMakefileGenerator.cxx: clean up object file build
rule, and do not attempt to remove link_directories that are in the
build tree
2001-11-13 19:22 martink
* Source/CMakeLists.txt, Source/CursesDialog/CMakeLists.txt: fixes
to curses stuff
2001-11-13 17:42 hoffman
* Source/CursesDialog/form/fty_num.c: warnings
2001-11-13 17:38 hoffman
* Source/cmCacheManager.cxx, Source/cmForEachCommand.cxx,
Source/cmIncludeExternalMSProjectCommand.cxx,
Source/cmMakefile.cxx, Source/cmSystemTools.cxx,
Source/cmUnixMakefileGenerator.cxx,
Source/FLTKDialog/CMakeSetupGUI.cxx,
Source/FLTKDialog/CMakeSetupGUI.h,
Source/FLTKDialog/CMakeSetupGUIImplementation.cxx: ENH: clean up
warnings
2001-11-13 17:25 hoffman
* Source/FLTKDialog/CMakeSetupGUI.cxx,
Source/FLTKDialog/FLTKPropertyItemRow.cxx: WAR: fix compile
warnings
2001-11-13 17:21 hoffman
* Source/CursesDialog/cmCursesMainForm.cxx: ENH: remove warnings
2001-11-13 17:21 hoffman
* Source/cmAddDependenciesCommand.h: ENH: fix spelling error
2001-11-12 20:37 king
* Source/cmMakeDepend.cxx: ENH:
cmMakeDepend::GenerateDependInformation will now use hints
regardless of whether the actual file exists. This can be used to
add dependencies to .h files which are generated but included in
hand-written .cxx files. If the .cxx does exist, though, it will
be used first, and the hints will be used afterward.
2001-11-12 14:21 martink
* Source/cmDSPWriter.cxx: minor fix
2001-11-11 04:01 ibanez
* Modules/FindX11.cmake: Module to search for the installation
of X11
2001-11-09 21:16 berk
* Source/CursesDialog/CMakeLists.txt,
Source/CursesDialog/ccmake.cxx, Source/CursesDialog/ccurses.cxx:
Renaming ccurses to ccmake.
2001-11-09 21:15 barre
* Modules/FindSelfPackers.cmake: Self-packers
2001-11-09 21:05 berk
* Source/CMakeLists.txt, Source/CursesDialog/CMakeLists.txt,
Source/CursesDialog/cmCursesStandardIncludes.h,
Source/CursesDialog/form/frm_driver.c,
Source/CursesDialog/form/frm_req_name.c: Trying to fix curses.
2001-11-09 18:00 martink
* Source/cmDSPWriter.cxx, Source/cmDSPWriter.h,
Templates/DLLHeader.dsptemplate, Templates/EXEHeader.dsptemplate,
Templates/EXEWinHeader.dsptemplate,
Templates/staticLibHeader.dsptemplate: support for custom targets
on exe and lib
2001-11-09 17:07 bettingf
* Source/cmQTWrapCPPCommand.cxx, Source/cmQTWrapCPPCommand.h:
cleanups
2001-11-09 17:07 bettingf
* Modules/FindQt.cmake: support for compilation of .ui files into
.h and .cxx files
2001-11-09 17:02 bettingf
* Source/cmQTWrapUICommand.h, Source/cmQTWrapUICommand.cxx,
Source/cmCommands.cxx, Source/cmUnixMakefileGenerator.cxx: support
for compilation of .ui files into .h and .cxx files
2001-11-09 15:42 barre
* Source/cmAddCustomCommandCommand.cxx: SOURCE, COMMAND, TARGET are
required now
2001-11-09 15:37 barre
* Source/cmAddCustomCommandCommand.h: SOURCE, COMMAND, TARGET are
required now
2001-11-09 15:33 barre