forked from Kitware/CMake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog.manual
3996 lines (3593 loc) · 186 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.10.2 (since 2.8.10.1)
----------------------------------------------
Alex Neundorf (1):
Automoc: fix regression #13667, broken build in phonon
Brad King (1):
Initialize IMPORTED GLOBAL targets on reconfigure (#13702)
David Cole (1):
CMake: Fix infinite loop untarring corrupt tar file
Rolf Eike Beer (1):
FindGettext: fix overwriting result with empty variable (#13691)
Changes in CMake 2.8.10.1 (since 2.8.10)
----------------------------------------------
Brad King (5):
Fix default PDB output directory (#13644)
Fix PathScale compiler id for Clang-based upstream
Update programmatically-reported copyright year (#13638)
FindSDL: Restore accidentally dropped search paths (#13651)
OS X: Fix default CMAKE_OSX_SYSROOT with deployment target
Rolf Eike Beer (2):
FindOpenSSL: fix library selection on Windows (#13645)
FindOpenSSL: also find the non-MD debug libraries for MSVC
Stephen Kelly (1):
GenEx: Use case insensitive comparison for $<CONFIG:...>
Changes in CMake 2.8.10 (since 2.8.10-rc3)
----------------------------------------------
None
Changes in CMake 2.8.10-rc3 (since 2.8.10-rc2)
----------------------------------------------
Rolf Eike Beer (2):
SelectLibraryConfigurations: add testcase
SelectLibraryConfigurations: fix for release and debug libs being the same
Stephen Kelly (5):
BasicConfigVersion: Make docs refer to the macro, not the module name
Document LOCATION undefined behavior with use of LINKER_LANGUAGE.
GenEx: Add an accessor for imported targets in a makefile.
GenEx: Create cmGeneratorTargets for imported targets.
GexEx: Validate Target names and property names differently.
Thomas Arcila (1):
SelectLibraryConfigurations: Fix foreach(x IN LISTS ...) syntax
Changes in CMake 2.8.10-rc2 (since 2.8.10-rc1)
----------------------------------------------
Alex Neundorf (2):
Document CMAKE_FIND_PACKAGE_NAME
Automoc: fix #13572: issue with symbolic links
Brad King (4):
cmCTestSVN: Fix compilation with Sun CC 5.1
if: Document that plain 'NOTFOUND' is a false constant
string: Clarify regex documentation of '-' behavior
FortranCInterface: Pass all flags to VERIFY project (#13579)
David Cole (1):
NSIS: Fix incorrect uninstall registry key name (#13578)
Eric NOULARD (3):
CPACK_XX_ON_ABSOLUTE_INSTALL_DESTINATION is now properly checked for ON/OFF
Document CPACK_COMPONENT_INCLUDE_TOPLEVEL_DIRECTORY and fix some typo.
Make CPACK_SET_DESTDIR work with archive generator + component-based packaging
Jean-Christophe Fillion-Robin (1):
CTest: Ensure CTEST_USE_LAUNCHERS behaves nicely in Superbuild setup
Pere Nubiola i Radigales (1):
Find PostgreSQL headers on Debian
Peter Kümmel (4):
Ninja: also set OBJECT_DIR when compiling
Ninja: don't pollute current dir when using gui (#13495)
Ninja: implicit dependency for custom command files
Fix regression: write compile definitions if any
Philip Lowman (4):
FindGTK2: Rollback lib64 changes which broke header file finding
FindGTK2: #12049 fix detection of header files on multiarch systems
FindGTK2: #12596 Missing paths for FindGTK2 on NetBSD
FindGTK2: Update local changelog
Rolf Eike Beer (6):
CTest: fix usage of memory checker with spaces in path
CTest: fix pre and post test commands with spaces
CTest: add tests that simulate memcheck runs
CTest: improve memory checker type detection
CTest: add a test for CTEST_CUSTOM_MEMCHECK_IGNORE
CTest: add a check with a quoted memory checker
Stephen Kelly (18):
GenEx: It is not an error to specify an empty parameter
GenEx: Return after error reported.
GenEx: Report actual target name not found, not "0" each time.
GenEx: Parse comma after colon tokens specially
GenEx: Validate target and property names.
GenEx: Ensure that the empty CONFIGURATION can be used conditionally.
GenEx: Add test for $<BOOL:> with empty parameter.
GenEx: Add tests for "0" and "1" expressions with literal commas.
GenEx: Don't use std::vector::at(int).
Attempt to fix the compile of cmake on Sun CC.
GenEx: Parse colon after arguments separator colon specially.
GenEx: Test the use of generator expressions to generate lists.
GenEx: Fix termination bugs in generator expression parser.
GenEx: Break if there are no more commas in the container
GenEx: Add some more asserts to verify code-sanity.
GenEx: Replace some failing tests with Borland and NMake makefiles.
GenEx: Fix reporting about not-found include directories and libraries.
Fix config-specific INCLUDE_DIRECTORIES in multi-config generators
Changes in CMake 2.8.10-rc1 (since 2.8.9)
-----------------------------------------
Scripted Changes (3):
Remove trailing whitespace from most CMake and C/C++ code
Convert CMake-language commands to lower case
Remove CMake-language block-end command arguments
Alex Neundorf (27):
Eclipse: add support for the 4.2 Juno release (#13367)
Eclipse: improve (fix ?) version detection on OSX
Eclipse: fix #13358: don't create bad linked resources
Eclipse: fix #13358: don't create bad linked resources
remove non-working KDE4 test
Eclipse on OSX: fix handling of framework include dirs (#13464)
Eclipse on OSX: improve handling of framework include dirs (#13367)
-fix line length
fix #13474: also rescan dependencies if the depender does not exist
-fix line length
-fix Java dependency scanning, broken in previous commit
error out if CTEST_USE_LAUNCHERS is TRUE but RULE_LAUNCH_* are not set
fix #13494: rerun automoc also if include dirs or moc options change
CMakeDetermineFortranCompiler: add support for cross-compiling (#13379)
Automoc: fix #13493, use target properties for include dirs
Automoc: do not use DEFINITIONS, but only COMPILE_DEFINITIONS
Automoc: also the makefile-COMPILE_DEFINITIONS
cmGlobalGenerator.h: some minor coding style fixes
Modules/readme.txt: fix typo
find_package: add support for a <package>_NOT_FOUND_MESSAGE variable
exports: store pointers to all installations of each export set
exports: accept a missing target if it is exported exactly once
exports: first try at error handling if a target is missing
exports: fix build with MSVC6
exports: move the handling of missing targets into subclasses
exports: define a CMAKE_FIND_PACKAGE_NAME var set by find_package()
exports: add a test for exporting dependent targets
Andreas Mohr (1):
FindCURL: Find older MSVC prebuilts
Andy Piper (1):
Do not include directories which are part of the package install prefix.
Benjamin Eikel (21):
Initial version of find module
FindSDL: Add version support for FindSDL_net
FindSDL: Version support for FindSDL_image
FindSDL: Use prefix SDL_NET, because it matches the file name.
FindSDL: Use SDL_IMAGE prefix for varibales
FindSDL: Add "cmake_minimum_required" to "try_compile" project
FindSDL: Format the documentation
FindSDL: Version support for FindSDL_sound
FindSDL: Use same capitalization for FPHSA as file name
FindSDL: Pass SDL_SOUND_LIBRARY to FIND_PACKAGE_HANDLE_STANDARD_ARGS
FindSDL: Use SDL_MIXER prefix for variables
FindSDL: Add version support for FindSDL_mixer
FindSDL: Update documentation
FindSDL: Use SDL_TTF prefix for variables
FindSDL: Add version support for FindSDL_ttf
FindSDL: Update documentation
FindSDL: Format documentation
FindSDL: Add version support
FindSDL: Add my copyright tag to all FindSDL_* modules
FindSDL: Remove from find_... calls PATHS that are set by default
FindSDL: Stay compatible with old input variables
Bill Hoffman (8):
Use OUTPUT_NORMAL instead of OUTPUT_MERGE for cmake -E chdir.
curl: Use find_package(OpenSSL)
curl: Make OpenSSL DLLs available to CMake on Windows
file(DOWNLOAD): Generalize EXPECTED_MD5 to EXPECTED_HASH
file(DOWNLOAD): Add options for SSL
Utilities/Release: Enable CMAKE_USE_OPENSSL in nightly binaries
Add SSL_VERIFYPEER and CAINFO file options to ExternalProject_Add.
Revert "Ninja: don't expand any rsp files"
Brad King (83):
find_library: Add test covering lib->lib64 cases
find_library: Refactor lib->lib64 conversion
find_library: Simplify lib->lib<arch> expansion
find_library: Fix mixed lib->lib64 (non-)conversion cases (#13419)
CMakeDetermine(C|CXX)Compiler: Consider Clang compilers
Factor common code out of CMakeDetermine(ASM|C|CXX|Fortran)Compiler
Prefer generic system compilers by default for C, C++, and Fortran
Xcode: Fix object library references in multi-project trees (#13452)
Xcode: Run xcode-select to find Xcode version file (#13463)
Watcom: Simplify compiler version detection (#11866)
Remove trailing TAB from NSIS.template.in
Fix WarnUnusedUnusedViaUnset test pass/fail regex
CMakeVersion.bash: Update sed expression for lower-case 'set'
GetPrerequisites: Mark file_cmd as advanced cache entry
Add boolean generator expressions
Add $<CONFIG:...> boolean query generator expression
Recognize Clang ASM support (#13473)
Xcode: Set ASM source language in project file (#13472)
Tests/Assembler: Do not use assembler in universal binaries
Add FindHg module to find Mercurial
ExternalProject: Add Mercurial (hg) repository support
Qt4Macros: Fix recently broken resource file parsing
Tests/ObjectLibrary: Do not enable CXX in subdirectories
VS11: Rename 'Immersive' to 'WindowsAppContainer' (#12930)
VS: Disable precompiled headers unless enabled by project (#12930)
VS11: Generate flag tables from MSBuild V110 tool files
Detect Compaq compiler version with its id
Detect PathScale compiler version with its id
Detect TI compiler version with its id
Detect Comeau compiler version with its id
Detect SDCC compiler version with its id
Detect Cray compiler version with its id
Detect Analog VisualDSP++ compiler version with its id
Re-order C/C++/Fortran compiler determination logic
CMakeDetermineCompilerId: Prepare to detect IDE compiler id
Xcode: Detect the compiler id and tool location
VS10: Define CMAKE_VS_PLATFORM_TOOLSET variable
VS: Detect the compiler id and tool location
Cleanly enable a language in multiple subdirectories
Test variables CMAKE_(C|CXX|Fortran)_COMPILER(|_ID|_VERSION)
Document CMAKE_<LANG>_COMPILER_(ID|VERSION) values
Make platform information files specific to the CMake version
Move CMAKE_<LANG>_COMPILER_WORKS to compiler information files
Store ABI detection results in compiler information files
VS: Remove support for "free" version 2003 tools
VS: Simplify MSVC version reporting
Modernize MSVC compiler information files
VS: Fix MSVC_IDE definition recently broken by refactoring
add_library: Document POSITION_INDEPENDENT_CODE default (#13479)
magrathea: Tell cmELF about DT_RUNPATH (#13497)
Utilities/Release: Link AIX binary with large maxdata
Utilities/xml: Add .gitattributes to disable whitespace checks
Utilities/xml: Add docbook-4.5 DTD (#13508)
docbook: Fix formatter naming convention to avoid shadow
docbook: Fix Sun CC warning on ptr_fun(isalnum)
curl: Honor OPENSSL_NO_SSL2
if: Compare up to 8 components in VERSION tests
ExternalProject: Generalize URL_MD5 option to URL_HASH
Rename SSL terminology to TLS
file(DOWNLOAD): Make TLS options behave as documented
OS X: Add platform-specific Clang compiler info files (#13536)
VS11: Detect VS 2012 Express for default generator (#13348)
VS11: Add VS 2012 Express support (#13348)
file(DOWNLOAD): Add HTTP User-Agent string
ExternalProject: Add DOWNLOAD_NAME option
file(DOWNLOAD): Change EXPECTED_HASH to take ALGO=value
VS8: Remove '.NET' from generator description (#10158)
Clang: Split Compiler/Clang* modules out from GNU (#13550)
Clang: All versions know about -fPIE (#13550)
Xcode: Remove unused code reading CMAKE_OSX_SYSROOT_DEFAULT
OS X: Always generate -isysroot if any SDK is in use
OS X: Improve default CMAKE_OSX_SYSROOT selection
bootstrap: Suppress CMAKE_OSX_SYSROOT if CFLAGS have -isysroot
Tests/Assembler: Use CMAKE_OSX_SYSROOT to generate .s file
OS X: Allow CMAKE_OSX_SYSROOT to be a logical SDK name
OS X: Simplify selection of CMAKE_OSX_ARCHITECTURES
OS X: If CMAKE_OSX_SYSROOT is already set do not compute default
OS X: Further improve default CMAKE_OSX_SYSROOT selection
OS X: Teach deployment target sanity check about SDK names
OS X: Ignore MACOSX_DEPLOYMENT_TARGET during Xcode compiler id
Verify that PDB_(NAME|OUTPUT_DIRECTORY) are honored in test
Document that PDB_(NAME|OUTPUT_DIRECTORY) are ignored for VS 6
Run PDBDirectoryAndName test on MSVC and Intel
Clinton Stimpson (8):
fphsa: clarify message about minimum required version found.
DeployQt4: Include DESTDIR for some cpack generators.
Add -DNDEBUG to RelWithDebInfo flags where where Release flags had it.
Fix regex for qt minor version.
FindQt4: Give precedence to QTDIR environment variable, if set.
FindQt4: Give precedence to QTDIR environment variable, if set.
Fix errors detecting Qt4 on Windows 8.
cmake-gui: Fix error status when interrupted.
Daniel Pfeifer (8):
Simplify CMake.HTML documentation test command line
docbook: Remove table of contents
docbook: Factor out code to write valid DocBook IDs
docbook: Fix the DocBook section output
docbook: Cleanup formatter and generated DocBook
docbook: Add support for <abstract> at section level 1
docbook: Add CMake.DocBook test to validate xml (#13508)
docbook: Remove redundant docs that cause invalid DocBook
David Cole (9):
Begin post-2.8.9 development
Release: Temporarily exclude ExternalProject test on cygwin
Add ability to run as a ctest -S script also
CMake: Clarify the documentation for if(f1 IS_NEWER_THAN f2)
Convert the CPACK_CYGWIN_PATCH_NUMBER variable to a cache variable
InstallRequiredSystemLibraries: Use correct file names (#13315)
ProcessorCount: Mark find_program vars as advanced (#13236)
FindQt4: Avoid "finding" non-existent library in a .framework
FindMPI: Set correct variables for calls to FPHSA
Eric NOULARD (2):
Enhance DESTDIR documentation. Fixes #0012374.
Handles %attr(nnn,-,-) /path/to/file in CPACK_RPM_USER_FILELIST properly.
James Bigler (3):
Replace -g3 with -g for CUDA 4.1 and 4.2 in addition to CUDA < 3.0.
Added CUDA_SOURCE_PROPERTY_FORMAT. Allows setting per file format (OBJ or PTX)
FindCUDA: Added CUDA_HOST_COMPILER variable.
Marcin Wojdyr (1):
Remove CMake multiline block-end command arguments
Nils Gladitz (1):
ctest_update: Tell svn not to prompt interactively (#13024)
Patrick Gansterer (4):
VS: Cleanup AddPlatformDefinitions() of Visual Studio generators
Add additional architectures to CMakePlatformId.h.in
Add WindowsCE platform information files
VS: Remove duplicated implementations of CreateLocalGenerator()
Peter Kuemmel (1):
Ninja: don't expand any rsp files
Peter Kümmel (15):
Ninja: cmcldeps needs a compiler
Ninja: don't crash on returned 0 pointer
Ninja: prepare msvc pdb cleanup
Ninja:split out setting of msvc TARGET_PDB
Ninja: remove GetTargetPDB because it is used only once
Ninja: also detect /showInclude prefix for icl
Find mingw's windres also when Unix Makefiles are used
Ninja: don't suppress warning about compiler options
Ninja: suppress cmcldeps only for source file signature try_compiles
Ninja: filter target specific compile flags with language specific regex
Ninja: OBJECT_DEPENDS should set an implicit dependency
Ninja: don't confuse ninja's rsp files with nmake's
Ninja: move -LIBPATH behind -link option
Ninja: move <OBJECTS> in front of the first linker option
Ninja: add option to enforce usage of response files
Philip Lowman (3):
FindOpenSceneGraph: CMake variable OSG_DIR influences detection now too
FindGTK2: Add GTK2_CAIROMMCONFIG_INCLUDE_DIR for cairommconfig.h
CMakeDetermineVSServicePack: Visual Studio 2012 added
Rolf Eike Beer (25):
remove lib64 Unix paths if the respective lib path is also given
FindOpenSSL: find cross-compiled OpenSSL from MinGW (#13431)
FindOpenSSL: use SelectLibraryConfigurations
FindOpenSSL: let CMake handle environment variable HINTS
FindOpenSSL: cleanup path hints
FindOpenSSL: remove leftover comment
SelectLibraryConfiguration: generate correct output when input vars are lists
Fix typo direcotry -> directory (and similar) [#13444]
FindSelfPackers: fix typo (#13456)
CheckTypeSize: show in documentation how to get struct member size (#10579)
CheckTypeSize: add a test for size of struct members
FindX11: remove duplicates from X11 include path list (#13316)
FindX11: avoid calling list(REMOVE_DUPLICATES) on an empty list
list command: error on too many arguments
CMake.List test: explicitely test with lists containing only an empty string
use the find_* functions ENV parameter
use PATH_SUFFIXES to simplify find_* calls
do not escape spaces in regular expressions
read less from version headers into variables
FindFLEX: fix version extraction on Apple
FindGettext: remove code duplicating FPHSA checks
include FPHSA from current directory in all modules
FindOpenSceneGraph: simplify by using more features of FPHSA
FindSDL: add SDLMAIN_LIBRARY only once (#13262)
add documentation for all MSVCxxx version variables (#12567)
Sergei Nikulov (1):
fix for discovering ft2build.h using FREETYPE_DIR environment var (#13502)
Stephen Kelly (60):
Add new qt4_use_modules function.
Add missing whitespace to docs.
Fix some typos in the docs.
Remove incorrect doc string for link type enum
Remove duplicate 'of' from docs.
Fix unfortunate documentation error for PIC feature.
Don't duplicate -D defines sent to the compiler.
Fix CompileDefinitions test on Visual Studio.
Fix the test setting COMPILE_DEFINITIONS target property
Rename files from main.cpp to more meaningful names.
Fix casing of 'Qt' in docs, comments and user-visible strings.
Read entire Qt4 qrc file when parsing for depends info.
Add a return-after-error if an old Qt is found.
Use CMake platform variables instead of Qt ones.
Move variable setting down to where it relates to.
Remove an if which is always true.
Use add_subdirectory instead of the obsolete subdirs.
Replace two include_directories with a setting.
Compile with both Qt4 and Qt5.
Build with Qt5 if it is found.
cmGeneratorExpression: Re-write for multi-stage evaluation
cmGeneratorExpression: Port users to two-stage processing
Fix the regular expression validator for target names.
Handle colons as a special case in the generator expression parser.
Enable deprecated API when using Qt 5.
Add more forwarding API to cmGeneratorTarget.
Store cmGeneratorTargets with the makefile.
Move GenerateTargetManifest to cmGeneratorTarget.
Move GetLinkInformation to cmGeneratorTarget
Make cmLocalGenerator::AddArchitectureFlags take a cmGeneratorTarget.
Move GetCreateRuleVariable to cmGeneratorTarget.
Port cmLocalGenerator::GetTargetFlags to cmGeneratorTarget.
Move GetIncludeDirectories to cmGeneratorTarget.
Append the COMPILE_DEFINITIONS from the Makefile to all targets.
Add a wrapper for accessing config-specific compile-definitions.
Add convenience for getting a cmGeneratorTarget to use.
Fix compiler warning with initialization order.
Revert "Move GenerateTargetManifest to cmGeneratorTarget."
Use the cmGeneratorTarget for the include directories API.
Fix indentation in the code blocks generator.
Port remaining code to GetCompileDefinitions().
Add include guard for cmGeneratorExpression.
Don't prepend a path before generator expressions in include_directories.
Convert paths in INCLUDE_DIRECTORIES property to Unix slashes.
Add an AppendDefines std::string overload.
Return a std::string from GetCompileDefinitions.
Refactor GetCompileDefinitions a bit.
Extend the generator expression language with more logic.
Add a generator expression for target properties.
Add API to check that dependent target properties form a DAG.
Add a self-reference check for target properties.
Early return if there is no target.
Process generator expressions in the INCLUDE_DIRECTORIES property.
Process generator expressions in the COMPILE_DEFINITIONS target property.
Fix the layout of the generator expression documentation.
Fix punctuation in some variables documentation.
Document that generator expressions can be used in target properties.
Remove unused parameter marker and the unused parameter.
Fix minor typos.
Remove period at the end of the check message.
Tom Schutter (2):
cmake-mode.el: Use more readable regex and case-fold-search
cmake-mode.el: add local keybindings
Xavier Besseron (7):
cmCTestSVN: Add the new SVNInfo structure
cmCTestSVN: Extend Revision struct with SVN repo information
cmCTestSVN: Add the Repositories list and the RootInfo pointer
cmCTestSVN: Create the SVNInfo for the root repository
cmCTestSVN: Use the SVNInfo structure
cmCTestSVN: Add a LoadExternal() function and an ExternalParser class
cmCTestSVN: Load and process information from externals
Yuchen Deng (1):
Add PDB_OUTPUT_DIRECTORY and PDB_NAME target properties (#10830)
Yury G. Kudryashov (7):
exports: Move cmTargetExport to a dedicated header file
exports: Remove cmTargetExport constructor
exports: Rename cmGlobalGenerator::AddTargetToExport{s,}
exports: Create class cmExportSet
exports: Add cmExportSetMap class
exports: Hold an ExportSet pointer in cm*Export*Generator
exports: cmGlobalGenerator::ExportSets destructor will clear it
Zack Galbreath (2):
Clean up documentation formatting so that it is rendered properly in HTML.
cmparseMSBuildXML: Include DisplayName in the output
Changes in CMake 2.8.9 (since 2.8.9-rc3)
----------------------------------------
None
Changes in CMake 2.8.9-rc3 (since 2.8.9-rc2)
--------------------------------------------
Alexey Ozeritsky (1):
Fixed: FindLAPACK does not find MKL 10.3 when using gcc 4.x
Brad King (3):
pre-commit: Reject C++ code with lines too long
Tests/X11: Add missing include <stdlib.h> for 'rand'
Tests/ObjC++: Use standard <iostream> header
David Cole (1):
CPack: Use bin subdir when looking for dpkg and rpmbuild
Eric NOULARD (2):
Do not run cpack at CMake time it is not available.
Find dpkg and rpmbuild in usual Fink and MacPort paths
Nicolas Despres (17):
Ninja: Cannot pass a reference to an anonymous object.
Ninja: Add support for OS X app bundles.
Ninja: Add support for OX X library framework.
Ensure 3rd party libraries are writable.
Remove trailing white-spaces.
Re-factor OS X bundle and framework generation.
Ninja: Copy resource files in the bundle.
Ninja: Add support for CFBundle.
Enable BundleTest with CLang too.
Re-factor CFBundle generation.
Ninja: Use same echo message as makefiles.
Re-factor bundle content copying rules generation.
Re-factor Mac OS X content directory computation.
Re-factor framework directory computation.
Re-factor OS X content generator start up.
Fix memory leak in Makefile generator.
Add missing this->.
Peter Kuemmel (1):
Ninja: dep files and multiple -arch flags not possible on mac
Peter Kümmel (24):
Ninja: windres is also used for cross-compiling
Ninja: search for windres with prefix
Ninja: there could be null pointers
Ninja: more searching for windres
Ninja: path is already declared
Ninja: fix GCC 4.7 warning -Wconversion
Ninja: fix sytle
Ninja: also stop when .rc's .d file couldn't be generated
Ninja: readd quotes to src file path before patching it
Ninja: cmcldeps needs absolute paths for RCs
Ninja: on Mac no multiple -arch because of -M
Ninja: fix mis-matching endif() argument
Ninja: also mingw needs TARGET_PDB
Ninja: line length
Ninja: make TARGET_PDB a real .gdb file name
Ninja: make debug symbol suffix configurable by CMAKE_DEBUG_SYMBOL_SUFFIX
Ninja: remove 'friend' in ninja code
Ninja: remove warnings
Ninja: remove 'this' from member initializer list
Ninja: fixes for bcc
Ninja: enable ninja on Mac so all Mac CDash-builds are tested, cleanup later
Ninja: void function can't return a value
Ninja: enable ninja support everywhere
Ninja: also bootstrap ninja files
Changes in CMake 2.8.9-rc2 (since 2.8.9-rc1)
--------------------------------------------
Alex Neundorf (4):
-remove trailing whitespace
documentation: preparation for making the man section configurable
man documentation: detect man section from the given filename
Eclipse: fix #13313, always set LANG to C, also if unset
Bill Hoffman (1):
Remove process execution code from cmcldeps and have it use cmake code.
Brad King (12):
KWIML: Generalize interface to report broken integer literal macros
KWIML: Teach ABI.h about 'long long' and 'char' on old HP
KWIML: Teach INT.h that no HP platform implements SCN*8 formats
KWIML: Teach INT about broken UINT32_C on old HP
Fix project command documentation typo (#13384)
CTestUpdateSVN: Do not create repo directory first (#13349)
Tests/CustomCommand: Do not use 'main' in a library
AIX-GNU: Link shared libs with -brtl,-bnoipath (#13352)
include: Ignore empty string as file name (#13388)
Add ASM platform information for GNU compiler on AIX (#13390)
if: Document that macro arguments are not variables (#13393)
install: Fix COMPONENT option
Clinton Stimpson (3):
GetPrerequisites.cmake: detect executables built with the -pie linker flag.
cmake-gui: Fix code to respect current locale.
DeployQt4: workaround bug 13258 where ARGV1 is leaked into a sub function.
David Cole (7):
STYLE: Fix line length, remove extra blank line
CTest: Refactor error output into ErrorMessageUnknownDashDValue
CTest: Rename local variable for clarity
CTest: Extend -D command line arg handling for variable definitions
CTest: Allow -Dvar=value with no space between the D and the var
CTest: Add test to verify -D variable definitions work
Ninja: Fix typo: tagets -> targets
Eric NOULARD (3):
Enhance documentation of install command w.r.t. the "Undefined" component.
CPack fix regression between 2.8.7 and 2.8.8 when running cpack with no arg.
Do not provide defaul value for CPACK_PACKAGE_DIRECTORY if found in config.
Nicolas Despres (1):
Ninja: Clean all symlink created for libraries.
Peter Kuemmel (6):
Ninja: print error message when command failed
Ninja: also consider variables when checking command line length
Ninja: also consider rule command length for rsp file
Ninja: remove int/size_t warning
Ninja: add soname test case
Ninja: don't shadow 'outputs' variable
Peter Kümmel (6):
Ninja: also write link libraries to rsp file
Ninja: remove some unused default arguments
Ninja: error on missing rspfile_content
Ninja: disable work around when linking with mingw
Ninja: enable response file support on Mac (length 262144)
Ninja: sysconf() is declared in unistd.h
Philip Lowman (2):
FindBoost: Fix bug where Boost_FOUND could be false when version specified
FindBoost: Future proof to 1.56
Rolf Eike Beer (2):
FindJava: improve version matching (#12878)
fix 2 space bugs in variable documentation
Stephen Kelly (3):
Use full paths in compile_commands.json for out of source builds.
Construct the full path before escaping it.
Fix PositionIndependentTargets test with clang trunk.
Changes in CMake 2.8.9-rc1 (since 2.8.8)
----------------------------------------
Alex Neundorf (12):
-fix #13081: support OBJECT libraries in CodeBlocks/QtCreator projects
CodeBlocks: improve support for OBJECT libraries
fix #13195: avoid multiple mentions of found packages
FeatureSummary.cmake: nicer formatting
-strip trailing whitespace
make default install component name configurable
-add docs for ${CMAKE_INSTALL_DEFAULT_COMPONENT_NAME}
write_basic_package_version_file() now works with unset CMAKE_SIZEOF_VOID_P
add test for #13241: empty SIZEOF_VOIDP in write_basic_package_version_file
ASM compiler detection: remove debug output (#13270)
Eclipse: parallel build also for "Build project" #13287
automoc: better error handling (#13299)
Anthony J. Bentley (1):
FindwxWidgets: Do not use -isystem on OpenBSD (#13219)
Ben Boeckel (2):
Don't put legacy variables back into the cache
Search for other ABIFLAGS builds of Python
Bill Hoffman (15):
Add support to ctest for GTM mumps coverage.
Fix warning about char* instead of const char*.
Fix line length.
Add test for mumps coverage. Also refactor code to prepare for cache coverage.
Add virutal destructor to silence warning.
Add support for Cache coverage.
Fix some warnings and a bug where it went past the length of a vector.
Use a script to run the test because WORKING_DIRECTORY is not in 2.8.2.
Use <TARGET_FILE> expression to run ctest so it works with Xcode and VS IDE.
Add ability to specify more than one package directory or coverage directory.
Remove uncovered files from cache coverage data.
Disable bullseye coverage for mumps coverage test.
Update test data to match new coverage format.
Do not try to run bullseye coverage if COVFILE env is empty.
CDash now supports lots of files in coverage. So, show all files.
Brad King (59):
Add LICENSE and NOTICE
Add 'tips' script to suggest local configuration
Add 'setup-user' script to configure authorship information
Add 'setup-hooks' script to install local hooks
Add 'setup-gerrit' script to configure Gerrit access
Add 'setup-stage' script to configure topic stage remote
Add 'setup-ssh' script to configure ssh push access
Add README instructions and sample configuration
Add and configure developer setup helper scripts
Exclude from source archives files specific to Git work tree
Exclude from CMake source archives files specific to Git work tree
Refactor CMake version handling
Document behavior of multiple target_link_libraries calls (#13113)
ctest_coverage: Save/restore LC_ALL around gcov (#13136)
Cleanup custom command .rule file internal handling
Factor out custom command .rule file path generation
VS10: Avoid creating .rule files next to outputs (#13141)
find_package: Document <package>_FIND_* variables (#13142)
find_package: Fix components signature documentation (#13142)
Teach RunCMake tests to allow custom checks
list: Handle errors on empty lists more gracefully (#13138)
include_external_msproject: Test TYPE, GUID, PLATFORM options (#13120)
VS: Fix line-too-long style errors
libarchive: Avoid 'inline' keyword on XL C v6 (#13148)
Intel: On Windows use /EHsc instead of deprecated /GX (#13163)
KWSys: Remove DateStamp
try_compile: Cleanup temporary directories (#13160)
setup-stage: Optionally reconfigure topic stage
CTest: Escape MemCheck test output for XML (#13124)
Documentation: Fix HTML anchor ranges
Require CMake 2.8.2 or higher to build CMake
CTest: Simplify environment save/restore
KWSys: Fix SystemTools environment memory handling (#13156)
VS10: Refactor custom commands to use WriteSource
VS10: Simplify vcxproj.filter file generation
VS10: Convert paths normally unless forced to relative
VS11: Do not use source path conversion workaround specific to VS 10
VS10: Generate relative source paths when possible (#12570)
Intel: On Windows use /RTC1 instead of deprecated /GZ (#13174)
Test NO_SONAME property (#13155)
KWSys: Remove dependencies on FundamentalType
Documentation: Improve HTML section index format
VS: Restore header files marked as OS X Framework content (#13196)
VS11: Fix ARM architecture hint typo (#13077)
Fortran: Follow <>-style includes (#13239)
bootstrap: Port back to old shells (#13199)
KWSys: Remove unused environ declaration from SystemTools
FindBZip2: Search locations in GnuWin32 registry
cmArchiveWrite: Clear fflags from archive entries
Makefile: Support directory names containing '=' (#12934)
libarchive: Avoid 'inline' on SunPro < 5.9 (#13277)
Avoid direct use of std::(o|)stringstream (#13272)
KWIML: Add interface to report broken integer format macros
KWIML: Report broken integer format macros on AIX 4.3
add_library: Allow OBJECT library without dynamic linking (#13289)
install: Fix FILES_MATCHING on case-sensitive Mac filesystems (#13177)
Make CTest.UpdateGIT robust to Git safecrlf on Windows
Do not crash on SHARED library without language (#13324)
CMakeDetermineCCompiler: Fix typo "_CXX_" -> "_C_" (#13330)
Brian Helba (1):
Print any evaluated 'elseif'/'else' commands in trace mode (#13220)
Charlie Sharpsteen (1):
Mac: Add guards to CMAKE_FIND_FRAMEWORK and CMAKE_FIND_APPBUNDLE defaults
Clinton Stimpson (1):
cmake-gui: Wait for configure/generate thread to complete before exiting.
Daniel R. Gomez (6):
KWSys: Fix hashtable prime list on g++ 2.9 (#13273)
Tests/IncludeDirectories: Files must end in a newline (#13314)
Tests/VSGNUFortran: Avoid C++ comment in C code (#13314)
Tests/Assembler: Assemble and link with same flags (#13314)
Fix FindPackageMode test Makefile (#13314)
Avoid string.clear and string.push_back (#13319)
David Cole (12):
Begin post-2.8.8 development
CPack/NSIS: Add CPACK_NSIS_EXTRA_PREINSTALL_COMMANDS (#13085)
ExternalProject: Add missing COMMAND keyword
ExternalProject: Avoid unnecessary git clones (#12564)
ExternalProject: Refactor repeated code into function (#12564)
ExternalProject: Avoid repeated git clone operations (#12564)
CTest: Modify reg ex so it also works with gcov 4.7 output (#13121)
BZip2: Remove unnecessary *.bz2 files from CMake source tree
Ninja: Enable the ninja generator by default on Windows.
Revert "Millenium update: 79 * (16/9)/(4/3) = 105"
Ninja: Restructure code to work with the Borland compilers
Remove unused ivars to eliminate compiler warnings
David Faure (1):
Abort FindQt4.cmake if Qt 5 is found.
Eric NOULARD (12):
Use fakeroot for control.tar.gz as well
Enhancement of bash completion scripts given by Igor Murzov.
Install editors helper files
CPack - preserve timestamp for CPACK_INSTALLED_DIRECTORIES. fixes: #0013193
CPack add easy possibility to warn about CPACK_SET_DESTDIR
CPack add necessary check to detect/warns/error on ABSOLUTE DESTINATION
Fix KWStyle warning
Use CPACK_xxx and CMAKE_xxx in a consistent way.
CPack allow RPM and DEB generator to be used on OSX.
Calm down Borland compiler warning about "always true"
CPackRPM: avoid leakage of RPM directive from one component to another.
CPackDeb add missing documentation for some CPACK_DEBIAN_xx variables.
Fraser Hutchison (1):
CPack: Fixed incorrect error log for CPACK_NSIS_MENU_LINKS.
Jan Schaffmeister (1):
Xcode: Recognize storyboard source files (#13214)
Jim Hague (2):
libarchive: Avoid trailing , in enum for XL v6 (#13148)
Workaround IBM XL v6 streams seekg bug (#13149)
Jonathan Klein (1):
FindBullet: Add missing math library name (#13309)
Joseph Snyder (1):
Change GT.M Coverage Parser global
Konstantin Tokarev (1):
[OSX] Fixed undefined symbol when linking CMakeLib into shared library
Kurtis Nusbaum (1):
Added conditional for the phonon backend plugin.
Leonid Yurchenko (1):
include_external_msproject: Add TYPE, GUID, PLATFORM options (#13120)
Mario Bensi (1):
Add FindLibLZMA Module
Mariusz Plucinski (1):
Do not crash on unknown source language (#13323)
Matt McCormick (1):
ExternalProject: Fix 'make' builds with Ninja (#13159)
Minmin Gong (1):
VS11: Add ARM architecture generator (#13077)
Modestas Vainius (3):
Fix CPack RPM man page typo detected by lintian.
Support building shared libraries or modules without soname (#13155)
Fix a few typos in NO_SONAME property description.
Nicolas Despres (2):
Ninja: Add a convenient 'clean' target.
Ninja: Add a convenient 'help' target.
Patrick Gansterer (1):
Added CPACK_NSIS_ENABLE_UNINSTALL_BEFORE_INSTALL
Peter Collingbourne (2):
Ninja: apply CMAKE_<LANG>_FLAGS_<TYPE> to executable targets (#13069)
Ninja: mark rules/build file streams failed if error occurred (#13067, #13105)
Peter Kuemmel (61):
Ninja: ensure output directories exist
Ninja: no 16:9 screens for the cmake team ;)
Ninja: add option to enable ninja where it is not enabled by default
Ninja: remove GCC -Wshadow warning
Ninja: enable Ninja for CodeBlocks
Ninja: no additional variable needed to enable ninja
Ninja: CMAKE_USE_NINJA is the name of the macro
VC Express doesn't support folders, ignore USE_FOLDER property
Ninja: add response file support on Windows
Ninja: 30000 is too long for windows cmd
Ninja: check for valid pointer
Ninja: also create rspfile rules
Ninja: don't break because of empty commands
Ninja: find mingw's resource compiler
Ninja: add dependency tracking for msvc with cldeps
Ninja: add wrapper for cl to extract dependencies
Ninja: allow spaces in source path
Ninja: assume cmcldeps in the same dir as cmake
Ninja: add copyright and description
Ninja: don't set cmcldeps vars to empty string when they are not defined
Ninja: fix ModuleNoticies test
Ninja: don't use cmcldeps for try_compile
Ninja: allow spaces in cldeps's .d file
Ninja: fix line length
Ninja: don't pollute the rules file with useless comments
Ninja: use slahes in .d files
Line Length: <79
Millenium update: 79 * (16/9)/(4/3) = 105
Ninja: complete MinGW support
Ninja: use slashes for include dirs, so also slahes are in the .d files
Ninja: ninja can't read dep. pathes with parentheses
Ninja: work with ninja/master, don't compile rc files with cl
Ninja: extract dependencies for .rc files with msvc tools
Ninja: remove unused CommentStream
Ninja: onyl use pre processor for rc file parsing
Ninja: suppress startup logos
Ninja: cmcldeps
Ninja: don't use shell when cmake is called directly
Ninja: ninja now also could read parentheses in .d files
Ninja: fix Linux build
Ninja: sh needs something befor and after &&
Ninja: build with old vc versions
Ninja: remove nop line
Ninja: undo all the NOSHELL patches
Ninja: be more accurate when estimating the command line length
Ninja: don't pollute build dir with preprocessed rc files
Ninja: Eclipse and KDevelop fixes for ninja
Ninja: no /nologo option in old rc.exe
Ninja: but cl supports /nologo ...
Ninja: try to make GetProcessId visible
Ninja: build cmcldeps with mingw
Ninja: don't remove space between command and parameters
Ninja: some bytes of the rc files couldn't be piped correctly
Ninja: build server fixes
Ninja: build with old msvc versions
Ninja: msvc6 for-scoping
Ninja: maybe this fixes the bcc32 build
remove warning about unused parameter
Ninja: build server fixes
Ninja: try work around for bcc32 bug
Ninja: disable cldeps for bcc32, it's too old, and ninja would also not build
Rolf Eike Beer (12):
FindPkgConfig.cmake: fix documented output variable not set (#13125,#13132)
UseJava: fix typo in variable name (#13135)
Check{C,CXX}CompilerFlag: catch more Intel warning types (#12576)
FindPythonLibs: honor EXACT version specification (#13216)
UseJava: fix find_jar() called with multiple files (#13281)
fix some typos
do not explicitely specify /usr and /usr/local as search paths
replace open coded versions of file(TO_CMAKE_PATH)
FindDevIL: clean up documentation formatting
FindQt4: extend documentation
Qt4Macros: improve basename extraction in QT4_ADD_DBUS_INTERFACES
Qt4Macros: add some quotes to prevent damage from spaces in the paths
Sean McBride (1):
Remove unused ivars to eliminate compiler warnings
Sebastian Leske (1):
Improve documentation of set command (#13269)
Stephen Kelly (10):
Fix the number variable comparison when Qt is not found.
Update the docs of IMPORTED_LOCATION_CONFIG to match the code.
Move the EscapeJSON method to a sharable location.
Add newline to the output.
Make the CMAKE_EXPORT_COMPILE_COMMANDS option work with Ninja.
Escape the source file to be compiled if required.
Exclude the CompileCommandOutput test on WIN32.
Add platform variables for position independent code flags
Add platform variable for flags specific to shared libraries
Refactor generation of shared library flags
Tobias Bieniek (1):
Qt4Macros: Added support for generated resource files
Zack Galbreath (1):
FindPythonLibs: Document cache variables (#13240)
Zaheer Chothia (1):
VS: Set Intel Fortran 13 project version
Changes in CMake 2.8.8 (since 2.8.8-rc2)
----------------------------------------
Brad King (1):
CheckIncludeFiles: Shorten check description message
David Cole (3):
CPackNSIS: Rewrite variable documentation to make it more readable.
OS X: Use correct extra path when searching for applicaton bundles (#13066)
OS X: Mark find_program results as advanced
Eric NOULARD (1):
Fix some doc typo and add an undocumented var.
Kashif Rasul (1):
OS X: Use OSX_DEVELOPER_ROOT for app search path (#13066)
Rolf Eike Beer (1):
FindBoost: add support for 1.49 and 1.50
Changes in CMake 2.8.8-rc2 (since 2.8.8-rc1)
--------------------------------------------
Alex Neundorf (4):
make cmLocalGenerator::EscapeForCMake() static
automoc: fix #13018, proper cmake escaping to avoid false rebuilds
automoc: add define to test which caused bug #13018
fix #13054: support OBJECT libraries in Eclipse
Ben Boeckel (1):
Create granular targets for Ninja generators too
Brad King (6):
CTest.UpdateHG: Fix repo URL for leading slash
Always compile sources with known language
Classify known header file extensions as headers
VS: Add CMakeLists.txt re-run rules at start of generation
Test generated module .def files
Ninja: Fix module .def file path conversion
David Cole (2):
CMake: Clarify SUFFIX target property documentation.
Xcode: Pay attention to custom configuration types (#13082)
Peter Collingbourne (1):
Ninja: Substitute <OBJECT> and <CMAKE_C_COMPILER> in depfile flags
Rolf Eike Beer (2):
FILE: mention that TO_CMAKE_PATH also handles list delimiters
FIND_LIBRARY: document FIND_LIBRARY_USE_LIB64_PATHS
Sean McBride (1):
automoc: include <unistd.h> on Apple to get pathconf
Tom Hughes (1):
Override topdir from rpm command line seems necessary on Amazon linux.
Changes in CMake 2.8.8-rc1 (since 2.8.7)
----------------------------------------
Aaron C. Meadows (1):
Visual Studio: Allow setting Single Byte Character Set (#12189)
Alex Neundorf (34):
GNUInstallDirs: add support for Debian multiarch
FindRuby: fix usage of RUBY_VERSION_MAJOR (#12172)
FindRuby: add more possible library names (for ubuntu, #12172)
FindRuby.cmake: add more debug output
fix FeatureSummary for REQUIRED packages, they were reported as OPTIONAL
FindGetText: fix multiple targets with the same name problem (CMP0002)
fix #6976: FindX11 also searches for X11_Xxf86vm_LIB
GenerateExportHeader: use double quotes around _gcc_version
-remove trailing whitespace
-don't pull in CheckTypeSize.cmake from the cmake which is being built
bootstrap: move while() and endwhile() into the bootstrap build
Check*.cmake: Expand imported targets in CMAKE_REQUIRED_LIBRARIES
find_package: print error if an invalid CONFIGS name is used
find_package: rename NoModule to UseFindModules