-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog.manual
2479 lines (2224 loc) · 115 KB
/
ChangeLog.manual
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
Changes in CMake 2.8.7 (since 2.8.7-rc2)
--------------------------------------------
None
Changes in CMake 2.8.7-rc2 (since 2.8.7-rc1)
--------------------------------------------
Alex Neundorf (5):
automoc: default to strict mode, use CMAKE_AUTOMOC_RELAXED_MODE
automoc: improved warning message in relaxed mode
Remove trailing whitespace
Add comment about one more problem of the C depency scanner.
fix #12262: dependency scanning for ASM files
Bill Hoffman (1):
Fix the case where cmake --build failed with two project cmds in one file.
Brad King (11):
KWSys: Correctly handle empty environment variables
FortranCInterface: Work around mingw32-make trouble with parens
Xcode: Create separate rerun dependencies for subprojects (#12616)
Fix Intel Fortran .vfproj files for VS 10
HP: Drive shared library linking with compiler front end
Follow all dependencies of shared library private dependencies
Do not link private dependent shared libraries on OS X > 10.4
Avoid clobbering variable 'OUTPUT' in compiler tests (#12628)
Fix and simplify Fortran test compiler compatibility check
CTest: Recognize Intel errors without space before colon (#12627)
Windows-GNU: Remove extra quotes in GNUtoMS rule variable
David Cole (4):
Release: Increase timeout for slow-testing cygwin build
Modules: Use "windres" as rc compiler base name for cross-compiles (#12480)
Tests: Only really run MFC test if we can build MFC apps (#11213)
FindBoost: Quote possibly empty string argument (#12273)
Eric NOULARD (1):
CPackRPM fix #0012608 and unoticed related bug
Johan Fänge (1):
CMake: Fix progress reporting for custom targets (#12441)
Mike McQuaid (2):
Unset configurations variable when no build type.
Improve component support and output indentation.
Raphael Kubo da Costa (2):
Remove the apparently outdated README in Source/QtDialog.
QtDialog: Set Ctrl+Q as the shortcut for quitting the program.
Tim Gallagher (2):
FindLAPACK: Correct CMAKE_FIND_LIBRARY_SUFFIXES spelling (#12624)
FindLAPACK: List thread libs to avoid link errors (#12625)
Valat Sébastien (1):
CTest: Do not get CDash version without drop site (#12618)
Changes in CMake 2.8.7-rc1 (since 2.8.6)
----------------------------------------
Aaron Ten Clay (1):
VS: Add support for three new project properties (#12586)
Alex Neundorf (60):
fix #12392: handle CMAKE_CXX_COMPILER_ARG1 for Eclipse projects
fix #12262: use the C dependency scanner also for ASM files
fix #12465: detect the masm compiler ID ("MSVC")
Silence make on OpenBSD in FindPackageModeTest(#12508)
Remove trailing whitespace
Find Ruby on OpenBSD when installed from ports (#12507)
Eclipse generator: detect Eclipse version
Detect whether the current Eclipse version supports VirtualFolders
Eclipse: don't create VirtualFolders if not supported
Eclipse: better message when Eclipse version could not be determined
automoc:run moc on the header if the source file contains include "foo.moc"
Add copyright notices
automoc: always run moc on the cpp file if there is a foo.moc included
Eclipse: add virtual folder for each target
Eclipse: move code for generating links to projects into separate function
Eclipse: move code for generating links to targets into separate function
Eclipse: add Build and Clean targets to targets
Eclipse: detect number of CPUs, set CMAKE_ECLIPSE_MAKE_ARGUMENTS accordigly
Eclipse: fix #12417, don't create wrong src pathentries
FindLibXslt: also search libexslt and xsltproc
don't crash in automoc with empty COMPILE_DEFINITIONS property
Automoc: fix the fix, need to use std::string, not just char* pointer
automoc: fix #12541, support moc options
add documentation for the AUTOMOC_MOC_OPTIONS property
Eclipse: warn if CMAKE_BINARY_DIR is subdir of CMAKE_SOURCE_DIR
Eclipse: make targets work from any directory
Eclipse: quote the build dir (to make it work with spaces)
make automoc work when using ccmake via PATH (#12551)
Strip trailing whitespace
-make GETTEXT_PROCESS_PO_FILES() work with files with multiple dots
FindGettext: two more fixes for files with multiple dots
FindPNG: provide PNG_INCLUDE_DIRS, as the readme.txt says (#11312)
Eclipse: create links to subprojects also in the source-project (#12579)
Eclipse: use new variable CMAKE_ECLIPSE_GENERATE_SOURCE_PROJECT
install(EXPORT): Enforce existence of imported target files
Remove trailing whitespace
cmake-gui: add completion for the names when adding cache entries
automoc: stricter checking for what file is included
automoc: rework the checking for the matching header, to give better warnings
automoc: handle the case when the developer includes the wrong mocfile
automoc: add more test cases
automoc: improved diagnostics
automoc: minor optimization
automoc: another runtime optimization
Automoc: modified handling of included .moc files
automoc: add a test for including both abc.moc and moc_abc.cpp
automoc: add test for including the moc file from another header
automoc: add test for including a moc_abc_p.cpp file
automoc: move some code from the big parsing loop into separate functions
automoc: add special handling for including basename_p.moc, with test
automoc: add extra check whether the header contains Q_PRIVATE_SLOT
automoc: some more linebreaks for the warnings for better readability
automoc: fix handling of included _p.moc files
automoc: move the code for finding headers into separate function
automoc: add a StrictParseCppFile(), which is only qmake-compatible
automoc: also accept other files when .moc is included in non-strict mode
automoc: accept even more .moc files in non-strict mode
automoc: add variable CMAKE_AUTOMOC_STRICT_MODE, to enable strict parsing
automoc: fix line length
automoc: add documentation for CMAKE_AUTOMOC_STRICT_MODE
Alexey Ozeritsky (1):
FindLAPACK: Fix linking to static LAPACK on Unix (#12477)
Bernhard Walle (1):
Source/cmCTest.cxx: Add missing newline (#12538)
Brad King (65):
Refactor find_* command final path list computation
Constify XCode generator getters to match cmGlobalGenerator
Fix line-too-long style violations
KWSys: Fix Doxygen warnings
Add pre-commit|commit-msg|prepare-commit-msg hook placeholders
pre-commit: Reject changes to KWSys through Git
Fix CTest.UpdateSVN with Subversion 1.7 (#12535)
Teach CTest.UpdateSVN to detect svn add --depth before using it
KWSys: Address Intel compiler remarks
Fix linking to OS X Frameworks named with spaces (#12550)
Watcom: Use shortpath to CMake if full path has parens (#12548)
KWSys: Remove trailing whitespace in SystemTools.cxx
KWSys: Fix wrong spelling of __INTEL_COMPILER
Update main Copyright.txt year range for 2011
KWIML: The Kitware Information Macro Library
Configure KWIML inside CMake as cmIML
KWIML: Avoid redefining _CRT_SECURE_NO_DEPRECATE in test.h
KWIML: Suppress printf/scanf format warnings in test
KWIML: No INT_SCN*8 on SunPro compiler
KWIML: No INT_SCN*8 on Intel for Windows
KWIML: Create test output dir for Xcode
Order VS local generator Version ivar values consistently
Enumerate VS11 version explicitly in local generators
KWIML: Test header inclusion after system headers
KWIML: Ignore _LONGLONG on MS compiler
KWIML: Teach ABI.h about PGI compiler
KWIML: Avoid MSVC linker warning about not using C++ runtime
Factor Compute(File|String)MD5 into cmCryptoHash helper
Add file(MD5) command to compute cryptographic hash
Import sha2 implementation 1.0 from Aaron D. Gifford
Import sha2 implementation 1.1 from Aaron D. Gifford
sha2: Use KWIML fixed-size integer types and endian-ness
sha2: Build as part of CMakeLib
Add file(SHA*) commands to compute cryptographic hashes
sha2: Use "static const" instead of "const static" declarations
cmCryptoHash: Provide factory "New" method
Add string(MD5) and string(SHA*) commands to compute hashes
sha2: Use KWIML fixed-size integer constant macros
sha2: Suppress Borland warnings in third-party code
Disable file() and string() hash commands during bootstrap
sha2: Wrap long lines in third-party declarations
Fix CMake.File hash test for CRLF checkouts
cmCryptoHash: Add virtual destructor
sha2: Cast safe conversions to smaller integer types
sha2: Suppress -Wcast-align warning from Clang
sha2: Zero entire SHA_CTX structure during cleanup
target_link_libraries: Add missing space in documentation
target_link_libraries: Simplify argument processing state tests
install(EXPORT): Improve target import failure message format
Remove trailing whitespace from cmLocalGenerator
bootstrap: Include cmNewLineStyle in build
cmNewLineStyle: Remove trailing comma in enum
cmNewLineStyle: Use cmStandardIncludes.h
Provide std::ios_base typedef on GCC < 3
FindZLIB: Search under ZLIB_ROOT if it is set
Factor out target location undefined behavior helper macro
export(): Document undefined behavior of location properties
Recognize the Tiny C Compiler (#12605)
TinyCC: Add compiler info for shared libs on Linux (#12605)
Fortran: Detect pointer size in gfortran on MinGW
Load platform files that need to know the ABI when possible
Factor makefile generator link rule lookup into helper function
Add CMAKE_GNUtoMS option to convert GNU .dll.a to MS .lib
Test CMAKE_GNUtoMS option in ExportImport on MinGW and MSys
cmTarget: Create helper method for versioned library names
Clinton Stimpson (2):
Fix XML safety issue with adding preprocessor defines in CodeBlocks project.
Qt4: Fix dependencies of QtDeclartive.
Dan Kegel (1):
Modules: Add XRes to FindX11.cmake
David Cole (17):
Begin post-2.8.6 development
CTest: Fix crash when variables are not defined
VS11: Fix comment generated at the top of *.sln files
CTest: Add COVERAGE_EXTRA_FLAGS cache variable (#12490)
CTest: Clear custom vectors before populating (#12383)
Tests: Add the MFC test (#11213)
Tests: Avoid MFC test automatically for VCExpress builds (#11213)
Tests: Fix MFC test w/ Make-based generators (#11213)
Tests: Fix MFC test for old vs6 dashboards (#11213)
Tests: Avoid MFC test automatically for Watcom WMake builds (#11213)
Tests: Fix MFC test to work with VS 10 and later (#11213)
VS10: Use expected values for UseOfMfc (#11213)
Tests: Add environment logging to the MFC test (#11213)
VS11: Update InstallRequiredSystemLibraries.cmake for VS11 (#11213)
Tests: Nudge MFC test to pass on VS 6 dashboards (#11213)
VS: Use "call " keyword with .cmd and .bat file custom commands (#12445)
CTest: Disallow problem chars in build and site names (#11792)
Eric NOULARD (3):
CPackRPM support component specific variables for spec files
Fix old reference to CMAKE_MAKE_PROGRAM inside CMAKE_BUILD_TOOL doc.
CPackRPM fix #12556 and enhance documentation
James Bigler (6):
Added support for CUDA_PATH which is present in the CUDA toolkit 3.2 onward.
Reset dependency file list when a dependency disappeared.
Add work around for CUDA in UNC paths.
Fixes for handling quotes in args and other places (Fix Bug 11726 and 12099).
Make CUDA working directory unique for each target.
Miscellaneous fixes.
Jean-Christophe Fillion-Robin (1):
CTest: Look for CTestConfig.cmake in build dir first, then source dir
Johan Bjork (1):
Xcode: Avoid spewing the environment on every script run (#12522)
Mateusz Loskot (1):
FindBoost: Use MSVC11 to find Boost on Windows (#12568)
Mathieu Malaterre (1):
TinyCC: Add default compilation flags (#12605)
Mike McQuaid (6):
Add QT_LIBRARIES_PLUGINS variable to UseQt4.
Add DeployQt4 module.
Match fixup_qt4_executable with documentation.
Don't resolve directories; are never relative.
Check plugin variables are defined before warning.
Check QtCore without warning.
Nicolas Despres (17):
Refactor TargetTypeNames.
Add const versions of some getters.
Constify many getters of cmGlobalGenerator.
Remove trailing white-spaces.
Fix typo.
Doxygen: Improve code documentation.
Doxygen: Generate call graph and relationships.
Doxygen: Fix warnings.
Doxygen: Remove dependency on VTK when building doxygen.
Usage: Document -j|--parallel option in help message.
Usage: Document all options printing usage information.
Usage: Document all options printing the version number.
Usage: Print help, version and copyright options in usage information.
Usage: Add missing exepath argument in get_prerequisites documentation.
ccmake: Align 'g' and 'q' key instructions.
ccmake: Document '/' key.
ccmake: Factor toggle key help instructions.
Niels Dekker (1):
Fix CMAKE_VERBOSE_MAKEFILE for VS10 vcxproj files (#12504)
Ondrej Balaz (1):
FindBISON: Fix bison++ version parsing to avoid "Offending entry"
Peter Collingbourne (4):
Make cmLocalGenerator::ConvertToLinkReference virtual
Introduce a cmLocalGenerator::ConvertToIncludeReference function
Introduce a cmGlobalGenerator::ResolveLanguageCompiler function
Fix configuration-dependent flag lookup in cmLocalGenerator::GetTargetFlags
Peter Kuemmel (1):
Add NEWLINE_STYLE option to configure_file (#3957)
Philip Lowman (1):
FindProtoBuf: Documented limitation of the public macro
Pierre-Francois Laquerre (1):
Fix path quoting in Qt4 macros
Robert Dailey (1):
VS: Add VS_SCC_AUXPATH target property (#12549)
Rolf Eike Beer (4):
libarchive: fix typo in CheckFileOffsetBits.cmake
Tell people that link_directories() is not what they are searching for
FindBISON: Fix matching output of "bison --version"
Tests: ExternalProject: Remove unnecessary 'svn --version' call
Stephen Kelly (13):
Add features from KDE for arguments to qdbusxml2cpp.
Remove unused define.
Build each library only once instead of once for each test.
Initialize LINK_INTERFACE_LIBRARIES target property with a variable
Also run moc automatically with Qt5.
Fix typo.
Don't assume the existence of QT_MAJOR_VERSION.
Update comments and method names to not be Qt4 specific.
Fix style.
target_link_libraries: Trim trailing whitespace
target_link_libraries: Add LINK_(PUBLIC|PRIVATE) options
moc is now part of the Qt5Core module
Add a test case for the use of Q_PRIVATE_SLOT.
Changes in CMake 2.8.6 (since 2.8.6-rc4)
----------------------------------------
Alex Neundorf (5):
Remove trailing whitespace
Minor improvements to the UsePkgConfig.cmake docs
Remove trailing whitespace
Improve behaviour of --find-package mode with try_run/try_compile
Use makefile->IssueMessage() for better error messages
Bill Hoffman (2):
Use version 11.0 for 12.x and 9.10 for 10.x intel versions to fix 12.1 vsIDE.
Also, check for 11.x as an intel fortran version.
Brad King (2):
Add Visual Studio 11 generator for x86 and x64 tools
Teach our tests about special cases for VS 11
David Cole (1):
CTestCustom.cmake: Ignore clang's summary warning
Philip Lowman (1):
FindBullet: Also search for _Debug postfixed library names
Raphael Kubo da Costa (1):
Fix typo in set_target_properties' documentation.
Rolf Eike Beer (1):
Fix typo in UsePkgConfig.cmake
Changes in CMake 2.8.6-rc4 (since 2.8.6-rc3)
--------------------------------------------
Alex Neundorf (3):
FindFLEX.cmake: also search the include dir
Fix typos in FeatureSummary.cmake (#12462)
Don't warn when setting a property multiple times to the same value #12464
Bill Hoffman (2):
For VS Intel Fortran IDE builds, add a check to find the Fortran library PATH.
Enable Fortran tests for IDE builds.
Brad King (5):
FortranCInterface: Compile separate Fortran lib in VerifyC[XX]
Move IntelVSImplicitPath project to better location
Simplify IntelVSImplicitPath detection project
libarchive: Fix ssize_t detection with mingwrt 3.20
Make file(DOWNLOAD) fail on http error
David Cole (8):
Tests: Add a KWStyle test, equivalent to the make StyleCheck target
KWStyle Test: Activate by default if KWStyle is found
Xcode: Use EFFECTIVE_PLATFORM_NAME reference in ComputeOutputDir
Xcode: Add test to demonstrate iOS project in Xcode
CMake: Reference test targets only when BUILD_TESTING is ON
Tests: Add the more modern Mac64 nightly build
Release Scripts: Use Qt 4.7.4 on dashmacmini5 (#12460)
Revert "FindThreads: Try pthreads with no special option first (#11333)"
Eric NOULARD (4):
CPack fix #12449 doc mispelled
CPack fix template too
CPackDeb fix #10325 automagically use fakeroot for DEB if fakeroot is found
CPackRPM authorize per-component pre/post-[un]install scripts (#0012063)
Marcus D. Hanwell (4):
Just code style changes.
Don't warn when nothing to do in visibility function.
Made ADD_COMPILER_EXPORT_FLAGS into a macro.
Make add_compiler_export_flags a function again.
Rolf Eike Beer (1):
remove stray brace in CPackDeb documentation
Changes in CMake 2.8.6-rc3 (since 2.8.6-rc2)
--------------------------------------------
Alexey Ozeritsky (2):
FindBLAS/LAPACK fixes
FindBLAS/LAPACK fixes
Andreas Schneider (1):
Modules: Add support for more java archives in add_jar().
Björn Ricks (4):
Search for the installed python interpreter first
Determine python version
Update documentation of FindPythonInterp.cmake
Use FIND_PACKAGE_HANDLE_STANDARD_ARGS second mode
Brad King (5):
VS: Map per-source Fortran flags to IDE options
VS: Map Fortran free- and fixed-format flags to IDE options
Fortran: Add support for free- and fixed-form flags
Xcode: Honor Fortran_FORMAT target and source file property
Set CMAKE_<lang>_COMPILER_ID for VS generators
David Cole (8):
KWSys: Remove always-true dir_only parameter
KWSys: Add symlinks to directories as files (#12284)
FindPackageMessage: Eliminate new lines in cache entries
FindPackageMessage: Eliminate new lines using REGEX REPLACE
CMake: Add SaveCache at the end of successful Generate calls
Suppress Qt warning for dashmacmini5 builds
Suppress Qt warning for dashmacmini5 builds
Tests: Look for "Illegal" or "SegFault" in the output
Eric NOULARD (2):
CPack fix #12366 components RPM packages have the same package name
CPackRPM fix #12305, include directories in RPM package
Johan Björk (5):
Xcode: No spaces in makefile target names (#12370)
CMake: Write symlinks to directories as files in archives (#12284)
CPack: Do not recurse through directory symlinks (#12284)
Xcode: Do not emit the ZERO_CHECK target more than once
Xcode: Honor -g0 to disable debugging (#12377)
Johannes Stallkamp (1):
CTest: Fixed valgrind output parsing (#12260)
Matt McCormick (1):
CMake: Remove documentation for -E build (#12446)
Stephen Kelly (2):
Add some more unit tests.
Don't put what some compilers consider junk at the end of the line.
Thomas Jarosch (3):
CTest: Fix memory leaks on error
Fix file() command descriptor leak on error
ccmake: Fix off-by-one memory access error
Changes in CMake 2.8.6-rc2 (since 2.8.6-rc1)
--------------------------------------------
Brad King (2):
KWSys: Add hash function for std::string
KWSys: Fix std::string hash function for Borland
Clinton Stimpson (1):
qt4: also find QtUiTools when cross compiling with mingw.
David Cole (3):
Xcode4: Requires more quoting of single quote char
cmake.m4: Use modern signature of install(FILES ...)
CMake Release Scripts: Changes for next release candidate...
David Faure (1):
Don't use a variable name that might be used in other files.
Stephen Kelly (73):
Create moc files in the current binary dir, not the top level.
Make the formatting of feature_summary output a little better.
Add the GenerateExportMacro with unit tests.
Handle the case where the user changes the DEFINE_SYMBOL property.
Add a newline at the end of the file.
Add a newline at the end of the file.
Add missing licence header.
Remove the fatal_warnings option which is no longer used.
Test for features, not specific compilers.
Simplify. We already know we have hidden visibility at this point.
Simplify the compiler feature check
Add some debug output.
Short-circuit the tests on unsupported compilers.
Test expected no-op instead of aborting the build.
Fix tests with clang.
Fix typo and tests failing as a result.
Only run the failure tests with gcc >= 4.2
Set the CMAKE_RUNTIME_OUTPUT_DIRECTORY for windows builds.
Only set the COMPILER_HAS_HIDDEN_VISIBILITY if GCC >= 4.2
Disable all export macros on Borland.
Another attempt to fix the tests on Borland.
Use the correct project name compiletest not compilefail
Fix off-by-not in test for Borland.
Another attempt at fixing Borland.
Add some debug output to narrow down deprecation test issues
Export deprecated free methods too.
Remember to surround the other deprecated test in the Borland check.
Only set the deprecated attribute if hidden visibilty is enabled.
Make sure the hidden visibility variables never get set on MINGW.
Don't use hidden visibility on non-mingw windows either.
Don't export methods on already exported classes.
Split the deprecated available check from setting macro values.
Test for compiler features, instead of for specific platforms.
Exclude the XL compiler from the hidden-visibility test.
Add the COMPILER_HAS_DEPRECATED only if it has a declspec variant
Don't change the expected build result based on the platform.
Expect the tests to pass if hidden visibilty is not enabled.
Test -Werror instead of enabling it per compiler.
Add some messaging output to make remaining issues findable.
Perform the -Werror test only once.
Test for deprecated attribute before declspec.
Try to error on deprecated on Intel and SunCC.
Borland can't do deprecated.
Fixup forgotten part of aed84517c942a4c40f493fcf997cdf6a047349f8
Disable testing of deprecated macros.
Don't enable deprecated on HP.
Don't enable deprecated on old GCC
Exclude cygwin from the hidden visibility feature.
Exclude PGI from exports and deprecated.
Start testing expected values for compiler flags.
Exclude win32 from hidden visibility checks.
Comment the test assertion for now
Test the correct cxx variable.
Fix the version extraction regex for clang.
Hopefully add version extraction for Intel.
Add some settings for non-truncation of test output.
Fix up the regex command for Intel.
Test for too-old-intel compilers.
Possibly fix test on HPUX.
Possibly fix configuration test on AIX.
Try to make the macros do almost nothing for Watcom.
More consistency in the macro options.
Add missing NO_EXPORT macro variant.
Look for errors reported by PGI too.
Quote paths in case there is a space in one of them.
Disable the tests for Watcom.
Fix Compiler id variable name.
Add quotes in case cmake is installed in a prefix with a space.
Fix the feature of using a specific prefix for macros.
Add documentation about the prefix and no_deprecated options.
Remove blank line at the start of the file.
Don't start a line with a dash(-)
Fix up verbatim code sections of the dox.
Todd Gamblin (3):
FindBoost: Call find_package with NO_MODULE first
Fix XL compilers on non-AIX machines.
Fixed link bugs in BlueGeneP build.
Changes in CMake 2.8.6-rc1 (since 2.8.5)
--------------------------------------------
Aaron C. Meadows (1):
FindSubversion: Invoke svn non-interactively (#12304)
Alex Neundorf (92):
Add a switch to disable a find_package() call completely
Add documentation for the CMAKE_DISABLE_FIND_PACKAGE_<Name> switch
Add a basic test for CMAKE_DISABLE_FIND_PACKAGE_<package>
Add macros cmake_push/pop_check_state() as discussed on the list.
Fix copyright notice test
Add CheckCXXSymbolExists.cmake, so this can be used also for C++
Minor fix to try_compile() docs (#12333)
Fix #12342: Add APPEND_STRING option to set_property()
Extend FeatureSummary: add PURPOSE of package and TYPE
FeatureSummary.cmake: remove "comment" field
FeatureSummary.cmake: add INCLUDE_QUIET_PACKAGES keyword
FeatureSummary.cmake: error out when a REQUIRED package is missing
FeatureSummary.cmake: only higher TYPEs can override previous TYPEs
FeatureSummary.cmake: cosmetics
FeatureSummary.cmake: update documentation
Remove debug output from CheckSymbolExists
Don't put files from CMAKE_ROOT into CodeBlocks projects (#12110)
More PATH_SUFFIXES for finding Postgresql and also search catalog/pg_type.h
Use FPHSA(), remove unnecessary stuff and don't recommend link_directories()
Mark the results from find() as advanced
FindPostgreSQL: fix PATH_SUFFIXES, better output for FPHSA
Strip trailing whitespace
FindGIF/FindFreetype.cmake: remove standard search paths from find-calls
FindGif: add giflib4 as one more name for the library under Windows
Add basic version check for giflib
Patch by Campbell Barton: puts definitions into C::B project file
Remove useless line of code
Also put builtin include dirs into CodeBlocks project file
Remove trailing whitespace
Also search for libxkbfile, XSync and SM include dir
Provide macro write_basic_config_version_file()
Add example to documentation
Add some tests for write_basic_config_version_file()
Fix copyright notice
Really fix copyright notice
Set UNSUITABLE instead of not COMPATIBLE
Improve documentation for WriteBasicConfigVersionFile.cmake
Add macros GETTEXT_PROCESS_POT() and GETTEXT_PROCESS_PO_FILES()
Support REQUIRED in FindGettext.cmake (using FPHSA.cmake)
Fix #12358: make optionally enabling ASM work again
Start work on automoc: add empty cmQtAutomoc class
Start implementing skeleton for automoc in cmake
Add actual automoc code from automoc
Remove the need to check for .h/.cxx during buildtime
Add the cmake module required currently for automoc
Add AUTOMOC to the add_library() command
Fix line lengths
Move code for parsing a cpp-file from the big loop to separate function
Initialize verbose based onb the env.var.
Color output when running moc
Add the generated automoc.cpp file to the cleaned files
Use cout instead of printf()
Remove trailing whitespace
Refactor SetupAutomocTarget() so it can be run after creating the target
Remove trailing whitespace
Move automoc processing from add_executable/library to cmGlobalGenerator
Nicer progress message for the automoc target
Add a test for automoc
Add documentation for AUTOMOC, add initialization via CMAKE_AUTOMOC
Fix logic which decides when to execute automoc test
Automoc.cmake is not needed anymore
Fix build: non-void function must return a value
Fix warnings
Fix bootstrap test with automoc
Only enable the automoc test after checking that Qt4 works
Fix build: use std::ios::out|ios::trunc instead of std::ios_base::out
Silence warning in automoc: use long instead of int
Fix automoc with VS builds: apply patch from Bill
Make clLocalGenerator::GetTargetFlags() public
Add find-package mode, which does nothing yet
Implement find-package mode of cmake
Replace cmake::GetScriptMode() with GetWorkingMode()
Fix copyright notice in new CMakeFindPackageMode.cmake
Better support for lib64 and Debian multiarch
Use the file-utility to test for 64bit if there is no /usr/lib64
Add a cmake.m4 for using cmake in autoconf projects instead of pkgconfig
Improve documentation for --find-package mode
Add a test for the new --find-package mode
Only run the test if we are using a makefile generator under UNIX
The makefile for the test was kindof wrong
Fix test on OpenBSD with BSD make
Rename helper macros print_compile_flags() to set_compile_flags_var()
Dont check for -isysroot and -mmacosx-version on OSX in --find-package mode
Disable any STATUS output in --find-package mode
Much improved test, should now be executed on all UNIXes
Make the --find-package test harder
Make the test harder by always having a space in the include dirs
Only enable the test when using GNU make
Fix line length
Use $(CXXFLAGS) and $(LDFLAGS) in the --find-package test Makefile
Require the current cmake version in --find-package mode
Fix --find-package mode on Cygwin, where enable_language(RC) is called
Alexey Ozeritsky (5):
fixed: search of acml libraries
gotoblas supported
ACML-GPU supported
ACML-GPU supportede
fixed: search of ATLAS library for C/C++-only projects
Andreas Schneider (6):
FindJava: Find missing java development executables.
Modules: Added CMake Java support.
Tests: Java tests should test UseJava.cmake
Tests: Check for the new Java exeutable variables.
Java: Use set_property/get_property for target variables.
Java: Fix documentation format and indentation
Arnaud Gelas (1):
Search for the ASPELL executable
Bill Hoffman (5):
Only pay for unused variable checking if it is on.
Initial support for Intel Fortran VS2010.
Fix custom commands in VS2010 Fortran projects using CFG_INTDIR and test.
Use MSBuild when devenv is not around, since VCExpress seems broken.
Fix for bug #12413, nmake did not handle targets with + in the name.
Brad King (13):
MinGW: Remove old workaround and use native echo (#12283)
Document caveat of custom commands in multiple targets (#12311)
cmSystemTools: Remove trailing whitespace
RunSingleCommand: Fix indentation
RunSingleCommand: Avoid assignment in condition
Documentation: WIN32 not defined on Cygwin (#12334)
KWSys: Simplify SystemTools::GetTime implementation (#12261)
KWSys: Avoid conversion warning in SystemTools::GetTime
KWSys: Fix using long long and __int64 with hash_(set|map)
KWSys: __int64 and long long may be same type in specialization
XL: Fix old VisualAge branding of Fortran compiler
Do not crash when an imported target depends on a missing target
Fix CHECK_(C|CXX)_COMPILER_FLAG for Clang (#12394)
Clinton Stimpson (5):
Add -DQT_NO_DEBUG if no build type is specified so Qt plugins will work.
Add qt4/QtCore to help find Qt headers when cross-compiling.
Qt4: Fix reference of undefined variable when detecting frameworks on Mac OS X
Remove C compiler requirement from FindQt4.cmake
CPack/NSIS: Fix reinstall and multiple install issues when using components.
David Cole (26):
Begin post-2.8.5 development
Fix Architecture test to work with Xcode 4
Fix BuildDepends test to work with Xcode 4
Base architecture choice logic on Xcode version
Use correct default multiple architecture values in test
Add use of EFFECTIVE_PLATFORM_NAME to generated Xcode projects.
Correct KWStyle line too long error
Add fail regex to detect supported warning flags correctly.
Add support for Visual Studio project-specific globals (#8707)
Fix machine-specific UpdateGIT test failures
Ensure libgmp-10.dll is in the PATH for CMakeTestAllGenerators
Watcom: Add -c flag to wlib calls (#12245)
Add Watcom support to InstallRequiredSystemLibraries (#11866)
Watcom: Use correct args for execute_process call (#11866)
CTest: print failed tests in index order (#11746)
Fix line too long style violation
Documentation: Fix comments in the source code (#10941)
Add more find_path locations for DCMTK header files (#12323)
VS9: Add include_directories to midl command lines
KWSys: Remove translation path for "/tmp_mnt/" (#10595)
VS10: Avoid unnecessary rebuilds for custom commands
QtAutomoc test: Pass QT_QMAKE_EXECUTABLE
QtAutomoc: Eliminate compiler warning
CheckSymbolExists: Use IMMEDIATE flag for configure_file (#11333)
Xcode: Suppress same-old warning again.
Xcode: Save object id values in CMakeCache.txt (#11690)
Johan Björk (5):
Xcode: Remove PREBINDING attribute for Xcode 4 and above
RunSingleCommand: Replace verbose boolean with enum
RunSingleCommand: Add a OUTPUT_NORMAL flag.
Xcode: Quote ',' in Xcode string values (#12259)
Xcode: Rearrange CMakeReRun to enable parallel builds
Matej Hribernik (2):
VS: Factor Find64BitTools out of Win64 generator to parent
Add VisualStudio 9 and 10 generators for Itanium platform
Modestas Vainius (1):
multiarch: Treat lib/<arch> as implicit link dir (#12326)
Oliver Buchtala (3):
Java: Create java_class_filelist only if it does't exist.
Java: Added some dependency magic to avoid recompilations.
Java: Create correct jar archive dependencies.
Rolf Eike Beer (2):
remove extra output message from FindJava.cmake
FindThreads: Try pthreads with no special option first (#11333)
Steven Velez (1):
VS10: Add SCC support
Todd Gamblin (2):
Try regular compiler when no MPI compiler.
Fix issues with removing try_compile input file.
Will Dicharry (1):
Added HDF5 high level Fortran bindings to available components.
Changes in CMake 2.8.5 (since 2.8.5-rc3)
--------------------------------------------
Brad King (1):
Revert "Add a new function SWIG_GET_WRAPPER_DEPENDENCIES to UseSWIG.cmake"
(this revert means that issue #4147 has been re-opened)
Changes in CMake 2.8.5-rc3 (since 2.8.5-rc2)
--------------------------------------------
Bill Hoffman (4):
Use devenv instead of msbuild for vs2010.
Revert "With very long file names, VS 2010 was unable to compile files."
Use relative paths for custom command inputs.
Look for VCExpress as a possible build tool as well as devenv.
Brad King (3):
KWSys: Recognize color TERM=screen-256color-bce (#12287)
find_library: Use lib->lib64 conversion in CXX-only projects (#12247,#12248)
libarchive: Install COPYING with CMake documentation
Christoph Höger (1):
FindJNI: Search in Fedora arch-specific JVM location (#12276)
Julien Malik (1):
FindSWIG: Use NAMES in find_program directives (#12280)
Modestas Vainius (1):
Documentation: Fix spelling / formatting errors (#12287)
Philip Lowman (3):
FindBoost: Fixes #12188
FindBoost: Also search for 1.46.1
Detect VS 2010 SP1, faster and more robust detection
Changes in CMake 2.8.5-rc2 (since 2.8.5-rc1)
--------------------------------------------
Bill Hoffman (6):
Fix a memory leak.
Fix for bug#10798. VS10 did not append -I flags with COMPILE_FLAGS prop.
Append and do not clobber CMAKE_CXX_FLAGS in the test.
Use bin tree for inclues to avoid -I with spaces in the path.
One more try. Use full path by default, and relative on broken compilers.
Fix for bug #11927, external project git clone step always runs vs10.
Brad King (9):
XL: Place Fortran modules with -qmoddir= flag (#12246)
Teach file(DOWNLOAD|UPLOAD) to timeout after inactivity
Xcode: Fix parallel build depends with universal binaries (#11844)
Fix style errors added by parent and grandparent
Use cascading-if for per-config test and install code
CTest: Report tests not run due to unknown configuration
GNU: Fix CMAKE_INCLUDE_SYSTEM_FLAG_<lang> value (#12258)
Teach find_(library|package) about Linux multiarch (#12037)
Test find_package multiarch support (#12037)
Clinton Stimpson (11):
BundleUtilities: Work w/ non .app exes on Mac (#12034)
BundleUtilities: Fix regex to extract dependents from ldd (#12034)
BundleUtilities: Fix test when using xcode (#12034)
BundleUtilities: Fix issues with custom target DEPENDS in test (#12034)
BundleUtilities: Disable running test on Windows unless using MSVC.
BundleUtilities: Run test on Windows if either MSVC or dumpbin was found.
BundleUtilities: Print reason for not loading module.so
BundleUtilities: Add rpath to loadable modules in test.
Revert "BundleUtilities: Run test on Windows if either MSVC or dumpbin was found."
Qt4: complete module dependencies in UseQt4.cmake
Add imported targets support for frameworks on Mac.
Daniel R. Gomez (1):
Fix plugin API for gcc 2.9-aix51-020209 (#12233)
David Cole (3):
BundleUtilities: Avoid a cryptic and unhelpful error message
BundleUtilities: Avoid test on Watcom dashboards (#12034)
CMake: eliminate use of cvs in the Release scripts
Eric NOULARD (2):
CPackRPM: Enhance documentation
Add some more Specs file tag handling.
Johan Björk (3):
CMake: Move tokenize to cmSystemTools
Xcode: Support multiple level nesting of XCode folders (#10039)
XCode: Support target folders on XCode.
Modestas Vainius (1):
multiarch: Set CMAKE_LIBRARY_ARCHITECTURE_REGEX for Linux|Hurd|kFreeBSD
Philip Lowman (3):
FindProtobuf: Better MSVC support, Searching for protobuf lite
Fix , to - in Copyright message so it passes CMake.ModuleNotices test
10997: PROTOBUF_GENERATE_CPP now supports proto files outside current dir
Rolf Eike Beer (1):
CMake: Update documentation of STRING(SUBSTRING) for length -1 (#10740)
Sean McBride (1):
Fix XCode -> Xcode typos, notably in man page (#12231)
Tim Gallagher (1):
Modified the FindHDF5.cmake file to locate the Fortran bindings.
Will Dicharry (7):
HDF5 high level library is a find COMPONENT now.
Add logic for CMake built HDF5 install.
Use CMAKE_CURRENT_LIST_DIR to locate FindPackageHandleStandardArgs.
Use HDF5_FOUND to control autoconf and CMake built FindHDF5.
Fix for bug 11752, mixed debug and release libraries.
FindHDF5 ensures good link lines when libraries are duplicated.
Remove unnecessary mark_as_advanced from FindHDF5.
Zach Mullen (3):
Dynamic analysis test output should not be compressed.
We will actually compress memcheck output if the server supports it.
Fix type conversion warning
Changes in CMake 2.8.5-rc1 (since 2.8.4)
----------------------------------------
Alex Neundorf (33):
Rework the way assembler is handled, use the C/CXX compiler by default
Make it possible to exlude external libs from dot files
GRAPHVIZ_IGNORE_TARGETS is now a list of regular expressions
Also generate dependers-graphviz files.
Fix XML escaping for the project() name in Eclipse projects (#11658)
Fix XML escaping for target names in Eclipse project files (#11658)
Add XML escaping for directory name in Eclipse projects (#11658)
Eclipse projects: created one linked resource for each subproject
Also add the SOURCES from add_custom_target() to CodeBlocks projects (#11736)
Add ASM support for the Intel compiler
Actually use CMAKE_ASM_COMPILER for asm, instead of CMAKE_C_COMPILER
Add support for ASM for the SunPro compiler
Add suport for ASM for the IBM XL compiler
Add support for ASm for the HP compiler.
Set the HP asm file suffix
Change the default rules so they fit better to the new ASM handling
Fix the default CMAKE_ASM_COMPILE_OBJECT, make XL-ASM use it
Add assemble- and preprocess commands for HP
The Assembler test now tests ASM for GNU, Intel, HP, XL and SunPro
Use a regexp instead a lot of ORs for checking the compiler ID
Only try assembler support for Makefile-based generators
Fix bad comparison in the detect assembler-code
It's ELSEIF(), not ELSIF()
Add temporary debug output for compiler ID detection for ASM
Add more regex for gcc, always print the ASM compiler ID
Add support for the Intel compiler used for ASM under Windows
-use CMAKE_C_FLAGS when generating the assembler file
-only enable the asm test for the Intel compiler if we are under UNIX
Remove trailing whitespace
Make use_mangled_mesa() available in cmake script mode (#11926)
Fix parsing include dirs and builtin macros for CXX-only projects
Don't skip the last builtin include dir for the Eclipse project file
-fix VirtualFolders in Eclipse under Windows
Alexey Ozeritsky (1):
ACML search improvement
Andreas Schneider (6):
Modules: Added CheckPrototypeDefinition module.
Tests: Added test for check_prototype_definition.
FindOpenSSL: Added support for pkg-config.
FindOpenSSL: We should only use hints to find OpenSSL.
FindOpenSSL: Fixed crypto und ssl variable names.
FindOpenSSL: Use find_package_handle_standard_args for version check.
Bill Hoffman (2):
With very long file names, VS 2010 was unable to compile files.
Fix for bug where VS2010 did not use .obj files as part of the build.
Brad King (94):
Reject directory names containing '=' (#11689)
FindQt4: Include builtin FindPackageHandleStandardArgs directly
Handle trailing slashes on add_custom_command DEPENDS
Handle relative WORKING_DIRECTORY in add_custom_(command|target)
Pass -o after -c for Fortran to avoid mpif77 ordering bug
Add link flag table entries for VS 7,8,9
VS: Create a Fortran DLL's import library directory
Fix linker flag initialization from LDFLAGS (#11840)
ccmake: Remove extra parens around comparison
Avoid direct use of std::stringstream
Honor module .def files with MinGW tools (#9997)
CTest: Update Git submodules with --recursive
libarchive: Remove unused build/windows directory (#11885)
Pass .def files directly to MinGW tools (#9997)
Fix Fortran test .def file symbol mangling
Require at least CMake 2.6.3 to build current CMake
GNUInstallDirs: Simplify and clarify documentation
KWSys: Require at least CMake 2.6.3
Remove unused CMAKE_BACKWARDS_COMPATIBILITY mark
Factor AIX and XL compiler flags into common module
Move RPATH flags to AIX per-compiler information files
Initialize ASM rpath flags for executables with those for shared libs
Add ASM platform information for XL compiler on AIX
Factor HP compiler flags into per-platform/per-compiler files
Add ASM platform information for HP compiler on HP
Add target property LINK_SEARCH_START_STATIC to aid static linking
Test static linking with LINK_SEARCH_START_STATIC
Fix Assembler test to parse C flags string before using
Teach Assembler test to generate main.s at build time
Do not bother enabling C++ in Assembler test
The link interface of MODULE libraries is empty (#11945)
CTest: Do not fail with submodules and Git < 1.6.5.0
Remove trailing whitespace
Add parens in cmTarget::ComputeLinkInterface logic
Validate custom command arguments (#11963)
Factor old-style -D flags out from -I flag generation
FindMPI: Fix documentation formatting
Generate target-wide flags before individual build rules
Optionally pass include directories with response files
Pass include directories with response files to GNU on Windows
Enable Java test more carefully on Apple
Disable Java test with Xcode generator
Allow '.' in target names in generator expressions (#12002)
GNUInstallDirs: Propagate DATAROOTDIR changes to dependent defaults
KWSys: Do not trust EXECUTABLE_OUTPUT_PATH for ProcessFwd9x encoding
Refine unused cache variable warning
Fix unused cache warning after multiple configure iterations
FortranCInterface: Fix mangling detection with Cray Fortran >= 7.3.2
Fix typo in include_directories documentation (#12020)
KWSys: Recognize rxvt-unicode-256color terminal (#12013)
Normalize slashes of add_custom_(command|target) DEPENDS (#11973)
COMP: Fix build against non-standard outside libarchive
Modules: Add comment and copyright notice validation to readme.txt
cmArchiveWrite: Clear xattr and acl from entries (#11958)
find_package: Forward component list for recursive calls in modules
XL: Set C++ and Fortran flags consistently with C
XL: Consolidate compiler flag information
XL: Avoid copying archives into shared libraries that link them
VS10: Fix working directory of consecutive custom commands (#11938)
Fix working drive of make rules on Windows
Change working drive only in MinGW Makefiles
VS: Use setlocal/endlocal only in VS 10 custom commands
VS10: Fix exit code of custom commands with setlocal/endlocal (#11938)
KWSys: Remove unused CheckCXXSourceRuns cmake module
find_package: Rename implementation of user package registry
find_package: Cleanup user package registry less aggressively
find_package: Document user package registry locations
find_package: Search a "system package registry"
find_package: Check both 32-bit and 64-bit registry views
find_package: Test system package registry when possible
find_package: Fix system package registry test path conversion
FindITK: Use passthru find_package config mode for messages
OpenBSD: Use 'arch -s' for host processor (#12143)
Fix case typo in CMAKE_BUILD_TYPE docs (#12148)
KWSys: Fix leaked FILE in EncodeExecutable error case
ENH: Fix Intel 12 plugin project generation for VS < 10
Revert "Honor RULE_MESSAGES property for build target messages" (#12190)
Fix signed/unsigned comparison in EscapeJSON
Fix run_compile_commands build on Apple GCC 3.3