ChangeLog.manual 163 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522
  1. Changes in CMake 2.8.9 (since 2.8.9-rc3)
  2. ----------------------------------------
  3. None
  4. Changes in CMake 2.8.9-rc3 (since 2.8.9-rc2)
  5. --------------------------------------------
  6. Alexey Ozeritsky (1):
  7. Fixed: FindLAPACK does not find MKL 10.3 when using gcc 4.x
  8. Brad King (3):
  9. pre-commit: Reject C++ code with lines too long
  10. Tests/X11: Add missing include <stdlib.h> for 'rand'
  11. Tests/ObjC++: Use standard <iostream> header
  12. David Cole (1):
  13. CPack: Use bin subdir when looking for dpkg and rpmbuild
  14. Eric NOULARD (2):
  15. Do not run cpack at CMake time it is not available.
  16. Find dpkg and rpmbuild in usual Fink and MacPort paths
  17. Nicolas Despres (17):
  18. Ninja: Cannot pass a reference to an anonymous object.
  19. Ninja: Add support for OS X app bundles.
  20. Ninja: Add support for OX X library framework.
  21. Ensure 3rd party libraries are writable.
  22. Remove trailing white-spaces.
  23. Re-factor OS X bundle and framework generation.
  24. Ninja: Copy resource files in the bundle.
  25. Ninja: Add support for CFBundle.
  26. Enable BundleTest with CLang too.
  27. Re-factor CFBundle generation.
  28. Ninja: Use same echo message as makefiles.
  29. Re-factor bundle content copying rules generation.
  30. Re-factor Mac OS X content directory computation.
  31. Re-factor framework directory computation.
  32. Re-factor OS X content generator start up.
  33. Fix memory leak in Makefile generator.
  34. Add missing this->.
  35. Peter Kuemmel (1):
  36. Ninja: dep files and multiple -arch flags not possible on mac
  37. Peter Kümmel (24):
  38. Ninja: windres is also used for cross-compiling
  39. Ninja: search for windres with prefix
  40. Ninja: there could be null pointers
  41. Ninja: more searching for windres
  42. Ninja: path is already declared
  43. Ninja: fix GCC 4.7 warning -Wconversion
  44. Ninja: fix sytle
  45. Ninja: also stop when .rc's .d file couldn't be generated
  46. Ninja: readd quotes to src file path before patching it
  47. Ninja: cmcldeps needs absolute paths for RCs
  48. Ninja: on Mac no multiple -arch because of -M
  49. Ninja: fix mis-matching endif() argument
  50. Ninja: also mingw needs TARGET_PDB
  51. Ninja: line length
  52. Ninja: make TARGET_PDB a real .gdb file name
  53. Ninja: make debug symbol suffix configurable by CMAKE_DEBUG_SYMBOL_SUFFIX
  54. Ninja: remove 'friend' in ninja code
  55. Ninja: remove warnings
  56. Ninja: remove 'this' from member initializer list
  57. Ninja: fixes for bcc
  58. Ninja: enable ninja on Mac so all Mac CDash-builds are tested, cleanup later
  59. Ninja: void function can't return a value
  60. Ninja: enable ninja support everywhere
  61. Ninja: also bootstrap ninja files
  62. Changes in CMake 2.8.9-rc2 (since 2.8.9-rc1)
  63. --------------------------------------------
  64. Alex Neundorf (4):
  65. -remove trailing whitespace
  66. documentation: preparation for making the man section configurable
  67. man documentation: detect man section from the given filename
  68. Eclipse: fix #13313, always set LANG to C, also if unset
  69. Bill Hoffman (1):
  70. Remove process execution code from cmcldeps and have it use cmake code.
  71. Brad King (12):
  72. KWIML: Generalize interface to report broken integer literal macros
  73. KWIML: Teach ABI.h about 'long long' and 'char' on old HP
  74. KWIML: Teach INT.h that no HP platform implements SCN*8 formats
  75. KWIML: Teach INT about broken UINT32_C on old HP
  76. Fix project command documentation typo (#13384)
  77. CTestUpdateSVN: Do not create repo directory first (#13349)
  78. Tests/CustomCommand: Do not use 'main' in a library
  79. AIX-GNU: Link shared libs with -brtl,-bnoipath (#13352)
  80. include: Ignore empty string as file name (#13388)
  81. Add ASM platform information for GNU compiler on AIX (#13390)
  82. if: Document that macro arguments are not variables (#13393)
  83. install: Fix COMPONENT option
  84. Clinton Stimpson (3):
  85. GetPrerequisites.cmake: detect executables built with the -pie linker flag.
  86. cmake-gui: Fix code to respect current locale.
  87. DeployQt4: workaround bug 13258 where ARGV1 is leaked into a sub function.
  88. David Cole (7):
  89. STYLE: Fix line length, remove extra blank line
  90. CTest: Refactor error output into ErrorMessageUnknownDashDValue
  91. CTest: Rename local variable for clarity
  92. CTest: Extend -D command line arg handling for variable definitions
  93. CTest: Allow -Dvar=value with no space between the D and the var
  94. CTest: Add test to verify -D variable definitions work
  95. Ninja: Fix typo: tagets -> targets
  96. Eric NOULARD (3):
  97. Enhance documentation of install command w.r.t. the "Undefined" component.
  98. CPack fix regression between 2.8.7 and 2.8.8 when running cpack with no arg.
  99. Do not provide defaul value for CPACK_PACKAGE_DIRECTORY if found in config.
  100. Nicolas Despres (1):
  101. Ninja: Clean all symlink created for libraries.
  102. Peter Kuemmel (6):
  103. Ninja: print error message when command failed
  104. Ninja: also consider variables when checking command line length
  105. Ninja: also consider rule command length for rsp file
  106. Ninja: remove int/size_t warning
  107. Ninja: add soname test case
  108. Ninja: don't shadow 'outputs' variable
  109. Peter Kümmel (6):
  110. Ninja: also write link libraries to rsp file
  111. Ninja: remove some unused default arguments
  112. Ninja: error on missing rspfile_content
  113. Ninja: disable work around when linking with mingw
  114. Ninja: enable response file support on Mac (length 262144)
  115. Ninja: sysconf() is declared in unistd.h
  116. Philip Lowman (2):
  117. FindBoost: Fix bug where Boost_FOUND could be false when version specified
  118. FindBoost: Future proof to 1.56
  119. Rolf Eike Beer (2):
  120. FindJava: improve version matching (#12878)
  121. fix 2 space bugs in variable documentation
  122. Stephen Kelly (3):
  123. Use full paths in compile_commands.json for out of source builds.
  124. Construct the full path before escaping it.
  125. Fix PositionIndependentTargets test with clang trunk.
  126. Changes in CMake 2.8.9-rc1 (since 2.8.8)
  127. ----------------------------------------
  128. Alex Neundorf (12):
  129. -fix #13081: support OBJECT libraries in CodeBlocks/QtCreator projects
  130. CodeBlocks: improve support for OBJECT libraries
  131. fix #13195: avoid multiple mentions of found packages
  132. FeatureSummary.cmake: nicer formatting
  133. -strip trailing whitespace
  134. make default install component name configurable
  135. -add docs for ${CMAKE_INSTALL_DEFAULT_COMPONENT_NAME}
  136. write_basic_package_version_file() now works with unset CMAKE_SIZEOF_VOID_P
  137. add test for #13241: empty SIZEOF_VOIDP in write_basic_package_version_file
  138. ASM compiler detection: remove debug output (#13270)
  139. Eclipse: parallel build also for "Build project" #13287
  140. automoc: better error handling (#13299)
  141. Anthony J. Bentley (1):
  142. FindwxWidgets: Do not use -isystem on OpenBSD (#13219)
  143. Ben Boeckel (2):
  144. Don't put legacy variables back into the cache
  145. Search for other ABIFLAGS builds of Python
  146. Bill Hoffman (15):
  147. Add support to ctest for GTM mumps coverage.
  148. Fix warning about char* instead of const char*.
  149. Fix line length.
  150. Add test for mumps coverage. Also refactor code to prepare for cache coverage.
  151. Add virutal destructor to silence warning.
  152. Add support for Cache coverage.
  153. Fix some warnings and a bug where it went past the length of a vector.
  154. Use a script to run the test because WORKING_DIRECTORY is not in 2.8.2.
  155. Use <TARGET_FILE> expression to run ctest so it works with Xcode and VS IDE.
  156. Add ability to specify more than one package directory or coverage directory.
  157. Remove uncovered files from cache coverage data.
  158. Disable bullseye coverage for mumps coverage test.
  159. Update test data to match new coverage format.
  160. Do not try to run bullseye coverage if COVFILE env is empty.
  161. CDash now supports lots of files in coverage. So, show all files.
  162. Brad King (59):
  163. Add LICENSE and NOTICE
  164. Add 'tips' script to suggest local configuration
  165. Add 'setup-user' script to configure authorship information
  166. Add 'setup-hooks' script to install local hooks
  167. Add 'setup-gerrit' script to configure Gerrit access
  168. Add 'setup-stage' script to configure topic stage remote
  169. Add 'setup-ssh' script to configure ssh push access
  170. Add README instructions and sample configuration
  171. Add and configure developer setup helper scripts
  172. Exclude from source archives files specific to Git work tree
  173. Exclude from CMake source archives files specific to Git work tree
  174. Refactor CMake version handling
  175. Document behavior of multiple target_link_libraries calls (#13113)
  176. ctest_coverage: Save/restore LC_ALL around gcov (#13136)
  177. Cleanup custom command .rule file internal handling
  178. Factor out custom command .rule file path generation
  179. VS10: Avoid creating .rule files next to outputs (#13141)
  180. find_package: Document <package>_FIND_* variables (#13142)
  181. find_package: Fix components signature documentation (#13142)
  182. Teach RunCMake tests to allow custom checks
  183. list: Handle errors on empty lists more gracefully (#13138)
  184. include_external_msproject: Test TYPE, GUID, PLATFORM options (#13120)
  185. VS: Fix line-too-long style errors
  186. libarchive: Avoid 'inline' keyword on XL C v6 (#13148)
  187. Intel: On Windows use /EHsc instead of deprecated /GX (#13163)
  188. KWSys: Remove DateStamp
  189. try_compile: Cleanup temporary directories (#13160)
  190. setup-stage: Optionally reconfigure topic stage
  191. CTest: Escape MemCheck test output for XML (#13124)
  192. Documentation: Fix HTML anchor ranges
  193. Require CMake 2.8.2 or higher to build CMake
  194. CTest: Simplify environment save/restore
  195. KWSys: Fix SystemTools environment memory handling (#13156)
  196. VS10: Refactor custom commands to use WriteSource
  197. VS10: Simplify vcxproj.filter file generation
  198. VS10: Convert paths normally unless forced to relative
  199. VS11: Do not use source path conversion workaround specific to VS 10
  200. VS10: Generate relative source paths when possible (#12570)
  201. Intel: On Windows use /RTC1 instead of deprecated /GZ (#13174)
  202. Test NO_SONAME property (#13155)
  203. KWSys: Remove dependencies on FundamentalType
  204. Documentation: Improve HTML section index format
  205. VS: Restore header files marked as OS X Framework content (#13196)
  206. VS11: Fix ARM architecture hint typo (#13077)
  207. Fortran: Follow <>-style includes (#13239)
  208. bootstrap: Port back to old shells (#13199)
  209. KWSys: Remove unused environ declaration from SystemTools
  210. FindBZip2: Search locations in GnuWin32 registry
  211. cmArchiveWrite: Clear fflags from archive entries
  212. Makefile: Support directory names containing '=' (#12934)
  213. libarchive: Avoid 'inline' on SunPro < 5.9 (#13277)
  214. Avoid direct use of std::(o|)stringstream (#13272)
  215. KWIML: Add interface to report broken integer format macros
  216. KWIML: Report broken integer format macros on AIX 4.3
  217. add_library: Allow OBJECT library without dynamic linking (#13289)
  218. install: Fix FILES_MATCHING on case-sensitive Mac filesystems (#13177)
  219. Make CTest.UpdateGIT robust to Git safecrlf on Windows
  220. Do not crash on SHARED library without language (#13324)
  221. CMakeDetermineCCompiler: Fix typo "_CXX_" -> "_C_" (#13330)
  222. Brian Helba (1):
  223. Print any evaluated 'elseif'/'else' commands in trace mode (#13220)
  224. Charlie Sharpsteen (1):
  225. Mac: Add guards to CMAKE_FIND_FRAMEWORK and CMAKE_FIND_APPBUNDLE defaults
  226. Clinton Stimpson (1):
  227. cmake-gui: Wait for configure/generate thread to complete before exiting.
  228. Daniel R. Gomez (6):
  229. KWSys: Fix hashtable prime list on g++ 2.9 (#13273)
  230. Tests/IncludeDirectories: Files must end in a newline (#13314)
  231. Tests/VSGNUFortran: Avoid C++ comment in C code (#13314)
  232. Tests/Assembler: Assemble and link with same flags (#13314)
  233. Fix FindPackageMode test Makefile (#13314)
  234. Avoid string.clear and string.push_back (#13319)
  235. David Cole (12):
  236. Begin post-2.8.8 development
  237. CPack/NSIS: Add CPACK_NSIS_EXTRA_PREINSTALL_COMMANDS (#13085)
  238. ExternalProject: Add missing COMMAND keyword
  239. ExternalProject: Avoid unnecessary git clones (#12564)
  240. ExternalProject: Refactor repeated code into function (#12564)
  241. ExternalProject: Avoid repeated git clone operations (#12564)
  242. CTest: Modify reg ex so it also works with gcov 4.7 output (#13121)
  243. BZip2: Remove unnecessary *.bz2 files from CMake source tree
  244. Ninja: Enable the ninja generator by default on Windows.
  245. Revert "Millenium update: 79 * (16/9)/(4/3) = 105"
  246. Ninja: Restructure code to work with the Borland compilers
  247. Remove unused ivars to eliminate compiler warnings
  248. David Faure (1):
  249. Abort FindQt4.cmake if Qt 5 is found.
  250. Eric NOULARD (12):
  251. Use fakeroot for control.tar.gz as well
  252. Enhancement of bash completion scripts given by Igor Murzov.
  253. Install editors helper files
  254. CPack - preserve timestamp for CPACK_INSTALLED_DIRECTORIES. fixes: #0013193
  255. CPack add easy possibility to warn about CPACK_SET_DESTDIR
  256. CPack add necessary check to detect/warns/error on ABSOLUTE DESTINATION
  257. Fix KWStyle warning
  258. Use CPACK_xxx and CMAKE_xxx in a consistent way.
  259. CPack allow RPM and DEB generator to be used on OSX.
  260. Calm down Borland compiler warning about "always true"
  261. CPackRPM: avoid leakage of RPM directive from one component to another.
  262. CPackDeb add missing documentation for some CPACK_DEBIAN_xx variables.
  263. Fraser Hutchison (1):
  264. CPack: Fixed incorrect error log for CPACK_NSIS_MENU_LINKS.
  265. Jan Schaffmeister (1):
  266. Xcode: Recognize storyboard source files (#13214)
  267. Jim Hague (2):
  268. libarchive: Avoid trailing , in enum for XL v6 (#13148)
  269. Workaround IBM XL v6 streams seekg bug (#13149)
  270. Jonathan Klein (1):
  271. FindBullet: Add missing math library name (#13309)
  272. Joseph Snyder (1):
  273. Change GT.M Coverage Parser global
  274. Konstantin Tokarev (1):
  275. [OSX] Fixed undefined symbol when linking CMakeLib into shared library
  276. Kurtis Nusbaum (1):
  277. Added conditional for the phonon backend plugin.
  278. Leonid Yurchenko (1):
  279. include_external_msproject: Add TYPE, GUID, PLATFORM options (#13120)
  280. Mario Bensi (1):
  281. Add FindLibLZMA Module
  282. Mariusz Plucinski (1):
  283. Do not crash on unknown source language (#13323)
  284. Matt McCormick (1):
  285. ExternalProject: Fix 'make' builds with Ninja (#13159)
  286. Minmin Gong (1):
  287. VS11: Add ARM architecture generator (#13077)
  288. Modestas Vainius (3):
  289. Fix CPack RPM man page typo detected by lintian.
  290. Support building shared libraries or modules without soname (#13155)
  291. Fix a few typos in NO_SONAME property description.
  292. Nicolas Despres (2):
  293. Ninja: Add a convenient 'clean' target.
  294. Ninja: Add a convenient 'help' target.
  295. Patrick Gansterer (1):
  296. Added CPACK_NSIS_ENABLE_UNINSTALL_BEFORE_INSTALL
  297. Peter Collingbourne (2):
  298. Ninja: apply CMAKE_<LANG>_FLAGS_<TYPE> to executable targets (#13069)
  299. Ninja: mark rules/build file streams failed if error occurred (#13067, #13105)
  300. Peter Kuemmel (61):
  301. Ninja: ensure output directories exist
  302. Ninja: no 16:9 screens for the cmake team ;)
  303. Ninja: add option to enable ninja where it is not enabled by default
  304. Ninja: remove GCC -Wshadow warning
  305. Ninja: enable Ninja for CodeBlocks
  306. Ninja: no additional variable needed to enable ninja
  307. Ninja: CMAKE_USE_NINJA is the name of the macro
  308. VC Express doesn't support folders, ignore USE_FOLDER property
  309. Ninja: add response file support on Windows
  310. Ninja: 30000 is too long for windows cmd
  311. Ninja: check for valid pointer
  312. Ninja: also create rspfile rules
  313. Ninja: don't break because of empty commands
  314. Ninja: find mingw's resource compiler
  315. Ninja: add dependency tracking for msvc with cldeps
  316. Ninja: add wrapper for cl to extract dependencies
  317. Ninja: allow spaces in source path
  318. Ninja: assume cmcldeps in the same dir as cmake
  319. Ninja: add copyright and description
  320. Ninja: don't set cmcldeps vars to empty string when they are not defined
  321. Ninja: fix ModuleNoticies test
  322. Ninja: don't use cmcldeps for try_compile
  323. Ninja: allow spaces in cldeps's .d file
  324. Ninja: fix line length
  325. Ninja: don't pollute the rules file with useless comments
  326. Ninja: use slahes in .d files
  327. Line Length: <79
  328. Millenium update: 79 * (16/9)/(4/3) = 105
  329. Ninja: complete MinGW support
  330. Ninja: use slashes for include dirs, so also slahes are in the .d files
  331. Ninja: ninja can't read dep. pathes with parentheses
  332. Ninja: work with ninja/master, don't compile rc files with cl
  333. Ninja: extract dependencies for .rc files with msvc tools
  334. Ninja: remove unused CommentStream
  335. Ninja: onyl use pre processor for rc file parsing
  336. Ninja: suppress startup logos
  337. Ninja: cmcldeps
  338. Ninja: don't use shell when cmake is called directly
  339. Ninja: ninja now also could read parentheses in .d files
  340. Ninja: fix Linux build
  341. Ninja: sh needs something befor and after &&
  342. Ninja: build with old vc versions
  343. Ninja: remove nop line
  344. Ninja: undo all the NOSHELL patches
  345. Ninja: be more accurate when estimating the command line length
  346. Ninja: don't pollute build dir with preprocessed rc files
  347. Ninja: Eclipse and KDevelop fixes for ninja
  348. Ninja: no /nologo option in old rc.exe
  349. Ninja: but cl supports /nologo ...
  350. Ninja: try to make GetProcessId visible
  351. Ninja: build cmcldeps with mingw
  352. Ninja: don't remove space between command and parameters
  353. Ninja: some bytes of the rc files couldn't be piped correctly
  354. Ninja: build server fixes
  355. Ninja: build with old msvc versions
  356. Ninja: msvc6 for-scoping
  357. Ninja: maybe this fixes the bcc32 build
  358. remove warning about unused parameter
  359. Ninja: build server fixes
  360. Ninja: try work around for bcc32 bug
  361. Ninja: disable cldeps for bcc32, it's too old, and ninja would also not build
  362. Rolf Eike Beer (12):
  363. FindPkgConfig.cmake: fix documented output variable not set (#13125,#13132)
  364. UseJava: fix typo in variable name (#13135)
  365. Check{C,CXX}CompilerFlag: catch more Intel warning types (#12576)
  366. FindPythonLibs: honor EXACT version specification (#13216)
  367. UseJava: fix find_jar() called with multiple files (#13281)
  368. fix some typos
  369. do not explicitely specify /usr and /usr/local as search paths
  370. replace open coded versions of file(TO_CMAKE_PATH)
  371. FindDevIL: clean up documentation formatting
  372. FindQt4: extend documentation
  373. Qt4Macros: improve basename extraction in QT4_ADD_DBUS_INTERFACES
  374. Qt4Macros: add some quotes to prevent damage from spaces in the paths
  375. Sean McBride (1):
  376. Remove unused ivars to eliminate compiler warnings
  377. Sebastian Leske (1):
  378. Improve documentation of set command (#13269)
  379. Stephen Kelly (10):
  380. Fix the number variable comparison when Qt is not found.
  381. Update the docs of IMPORTED_LOCATION_CONFIG to match the code.
  382. Move the EscapeJSON method to a sharable location.
  383. Add newline to the output.
  384. Make the CMAKE_EXPORT_COMPILE_COMMANDS option work with Ninja.
  385. Escape the source file to be compiled if required.
  386. Exclude the CompileCommandOutput test on WIN32.
  387. Add platform variables for position independent code flags
  388. Add platform variable for flags specific to shared libraries
  389. Refactor generation of shared library flags
  390. Tobias Bieniek (1):
  391. Qt4Macros: Added support for generated resource files
  392. Zack Galbreath (1):
  393. FindPythonLibs: Document cache variables (#13240)
  394. Zaheer Chothia (1):
  395. VS: Set Intel Fortran 13 project version
  396. Changes in CMake 2.8.8 (since 2.8.8-rc2)
  397. ----------------------------------------
  398. Brad King (1):
  399. CheckIncludeFiles: Shorten check description message
  400. David Cole (3):
  401. CPackNSIS: Rewrite variable documentation to make it more readable.
  402. OS X: Use correct extra path when searching for applicaton bundles (#13066)
  403. OS X: Mark find_program results as advanced
  404. Eric NOULARD (1):
  405. Fix some doc typo and add an undocumented var.
  406. Kashif Rasul (1):
  407. OS X: Use OSX_DEVELOPER_ROOT for app search path (#13066)
  408. Rolf Eike Beer (1):
  409. FindBoost: add support for 1.49 and 1.50
  410. Changes in CMake 2.8.8-rc2 (since 2.8.8-rc1)
  411. --------------------------------------------
  412. Alex Neundorf (4):
  413. make cmLocalGenerator::EscapeForCMake() static
  414. automoc: fix #13018, proper cmake escaping to avoid false rebuilds
  415. automoc: add define to test which caused bug #13018
  416. fix #13054: support OBJECT libraries in Eclipse
  417. Ben Boeckel (1):
  418. Create granular targets for Ninja generators too
  419. Brad King (6):
  420. CTest.UpdateHG: Fix repo URL for leading slash
  421. Always compile sources with known language
  422. Classify known header file extensions as headers
  423. VS: Add CMakeLists.txt re-run rules at start of generation
  424. Test generated module .def files
  425. Ninja: Fix module .def file path conversion
  426. David Cole (2):
  427. CMake: Clarify SUFFIX target property documentation.
  428. Xcode: Pay attention to custom configuration types (#13082)
  429. Peter Collingbourne (1):
  430. Ninja: Substitute <OBJECT> and <CMAKE_C_COMPILER> in depfile flags
  431. Rolf Eike Beer (2):
  432. FILE: mention that TO_CMAKE_PATH also handles list delimiters
  433. FIND_LIBRARY: document FIND_LIBRARY_USE_LIB64_PATHS
  434. Sean McBride (1):
  435. automoc: include <unistd.h> on Apple to get pathconf
  436. Tom Hughes (1):
  437. Override topdir from rpm command line seems necessary on Amazon linux.
  438. Changes in CMake 2.8.8-rc1 (since 2.8.7)
  439. ----------------------------------------
  440. Aaron C. Meadows (1):
  441. Visual Studio: Allow setting Single Byte Character Set (#12189)
  442. Alex Neundorf (34):
  443. GNUInstallDirs: add support for Debian multiarch
  444. FindRuby: fix usage of RUBY_VERSION_MAJOR (#12172)
  445. FindRuby: add more possible library names (for ubuntu, #12172)
  446. FindRuby.cmake: add more debug output
  447. fix FeatureSummary for REQUIRED packages, they were reported as OPTIONAL
  448. FindGetText: fix multiple targets with the same name problem (CMP0002)
  449. fix #6976: FindX11 also searches for X11_Xxf86vm_LIB
  450. GenerateExportHeader: use double quotes around _gcc_version
  451. -remove trailing whitespace
  452. -don't pull in CheckTypeSize.cmake from the cmake which is being built
  453. bootstrap: move while() and endwhile() into the bootstrap build
  454. Check*.cmake: Expand imported targets in CMAKE_REQUIRED_LIBRARIES
  455. find_package: print error if an invalid CONFIGS name is used
  456. find_package: rename NoModule to UseFindModules
  457. find_package: improve error message when no Find module is present
  458. find_package: add MODULE mode to use only Find-modules
  459. find_package: add CONFIG mode keyword alias for NO_MODULE
  460. find_package: mention requested version number in error message
  461. add CMakePackageConfigHelpers: configure_package_config_file()
  462. wrap write_basic_config_version_file as write_basic_package_version_file()
  463. find_package: error out if REQUIRED Config has not been found
  464. write_basic_package_version_file(): improve documentation
  465. write_basic_package_version_file: add ExactVersion mode
  466. WriteBasicConfigVersionFile: add test for ExactVersion mode
  467. find_package: allow <pkg>Config.cmake to set <pkg>_FOUND to FALSE
  468. find_package: add test for setting Foo_FOUND to FALSE in a Config file
  469. find_package: additional test for checking the error message
  470. find_package: add OPTIONAL_COMPONENTS keyword
  471. FPHSA(): add missing "]" to documentation
  472. find_package: add documentation for OPTIONAL_COMPONENTS
  473. FPHSA(): add HANDLE_COMPONENTS option
  474. add macro check_required_components() to configure_package_config_file()
  475. Eclipse: fix #13036, make version detection work with symlinks
  476. guard eCos.cmake against multiple inclusion (#12987)
  477. Alexandru Ciobanu (2):
  478. CTest: Detect Xcode error "Command ... failed with exit code"
  479. CTest: Match valgrind errors with "points to" (#12922)
  480. Alexey Ozeritsky (1):
  481. FindBLAS/FindLAPACK: Work with MKL version 10.3 (#12924, #12925)
  482. Artur Kedzierski (1):
  483. Add CURL_CA_BUNDLE option for SSL support (#12946)
  484. Bill Hoffman (12):
  485. Add CMakeAddFortranSubdirectory to use MinGW gfortran in VS
  486. VSGNUFortran: Add special case for SunPro Fortran runtime library
  487. VSGNUFortran: Disable test in special cases
  488. CMakeAddFortranSubdirectory: Make IMPORTED targets GLOBAL
  489. Use upgraded qt on linux build machine.
  490. Teach CTest what a ninja error looks like.
  491. Allow two cmake_add_fortran_subdirectory calls in the same project.
  492. Add ability to include a file in a project via a cache variable.
  493. Fix typo in error message, and remove redundent test.
  494. Ninja: Add a cache option CMAKE_ENABLE_NINJA to enable the ninja generator.
  495. Ninja: Fix for PDB files with spaces in the path.
  496. Fix FindMPI for the intel compiler on linux by looking in implict directories.
  497. Bjoern Ricks (1):
  498. Fix crash if app bundle executeable couldn't be found
  499. Brad King (138):
  500. CheckCCompilerFlag: Generalize "but not for C" case (#12633)
  501. complex: Remove ancient unused ComplexRelativePaths test
  502. complex: Sync Tests/ComplexOneConfig with Tests/Complex
  503. complex: Remove dynamic loader tests
  504. complex: Move GeneratedFileStream test to CMakeLibTests
  505. complex: Simplify test for single-character exe name
  506. complex: Move cmSystemTools::UpperCase test to CMakeLibTests
  507. complex: Remove test dependence on cmSystemTools
  508. complex: Remove unused option to test CMakeLib
  509. Intel: Fix Windows per-config Fortran flags (#12642)
  510. libarchive: Remove our copy to make room for new import
  511. libarchive: Add .gitattributes for indentation with tab
  512. libarchive: Add README-CMake.txt
  513. libarchive: Do not build subdirectories not in reduced snapshot
  514. libarchive: Remove -Wall -Werror from build with GNU
  515. libarchive: Build one static cmlibarchive for CMake
  516. libarchive: Include cm_zlib.h to get zlib used by CMake
  517. Handle libarchive API change in archive_read_data_block
  518. Configure libarchive build within CMake
  519. libarchive: Install COPYING with CMake documentation
  520. libarchive: Port to OSF operating system
  521. libarchive: Fix typo in CheckFileOffsetBits
  522. libarchive: Implement custom lseek for Borland
  523. libarchive: Declare mbstate_t and wcrtomb for Borland
  524. libarchive: Cast constants to int64_t instead of using LL suffix
  525. libarchive: Workaround case-insensitive symbols on Borland
  526. libarchive: Clean up configuration within CMake build
  527. libarchive: Cast mode constants to mode_t in case it is signed
  528. libarchive: Fix Windows NT API usage in VS 6
  529. libarchive: Suppress compiler warnings
  530. libarchive: Fix var decl after statement in archive_string.c
  531. libarchive: Do not use ST_NOATIME if not defined
  532. libarchive: Check for 'struct statvfs' member 'f_iosize'
  533. libarchive: Do not use MNT_NOATIME if not defined
  534. libarchive: Use Apple copyfile.h API only if available
  535. libarchive: Remove hard-coded build configuration
  536. libarchive: Cleanup after ZLIB_WINAPI check
  537. libarchive: Define _XOPEN_SOURCE=500 on HP-UX
  538. libarchive: Include linux/types.h before linux/fiemap.h
  539. libarchive: Rename isoent_rr_move_dir parameter isoent => curent
  540. libarchive: Suppress PathScale compiler warnings
  541. libarchive: Avoid bogus conversion warning from PGI compiler
  542. libarchive: Set .gitattributes to allow trailing whitespace
  543. libarchive: Update README-CMake.txt for new snapshot
  544. libarchive: Restore CMake 2.6.3 as minimum version
  545. bootstrap: Update copyright year in version report
  546. bootstrap: Re-implement command line option processing
  547. bootstrap: Forward options after '--' to cmake
  548. VS10: Fix /pdb option vcxproj element name (#12328)
  549. Add framework to detect compiler version with its id (#12408)
  550. Detect GNU compiler version with its id (#6251)
  551. Detect MSVC compiler version with its id
  552. Detect Intel compiler version with its id (#11937)
  553. Detect Borland compiler version with its id
  554. Detect IBM XL compiler version with its id
  555. Detect PGI compiler version with its id
  556. Detect Clang compiler version with its id
  557. Detect Watcom compiler version with its id
  558. Detect SunPro compiler version with its id
  559. Detect HP compiler version with its id
  560. Document compiler version macro formats used for detection
  561. Detect SGI MIPSpro compiler version with its id
  562. ExternalProject: Fix git.cmd version detection
  563. ExternalProject: Update copyright year
  564. Include bzlib.h consistently across CMake build (#10950)
  565. FindMPI: Append MPI C++ library correctly in non-compiler case (#12874)
  566. Add infrastructure for CMake-only tests
  567. Tolerate cycles in shared library link interfaces (#12647)
  568. cmInstallCommand: Fix line length for style
  569. cmake-mode.el: Indent after multiline argument (#12908)
  570. Clarify IMPORTED_ target property documentation
  571. Optionally allow IMPORTED targets to be globally visible
  572. Add test covering imported target scope rules
  573. VS: Simplify ;-separated attribute value parsing
  574. Fix CXX/Fortran MODULE flags when enabled before C (#12929)
  575. Remove unused test code
  576. Allow directory names containing '=' and warn if necessary (#12934)
  577. Add CheckLanguage module
  578. CMakeAddFortranSubdirectory: Allow full paths to directories
  579. CMakeAddFortranSubdirectory: Fix documentation format and typos
  580. CMakeAddFortranSubdirectory: Find gfortran in PATH
  581. CMakeAddFortranSubdirectory: Validate gfortran architecture
  582. CMakeAddFortranSubdirectory: Always parse arguments
  583. CMakeAddFortranSubdirectory: Add NO_EXTERNAL_INSTALL option
  584. libarchive: Workaround mbsnrtowcs assertion failure on old glibc
  585. Recognize OpenBSD versioned .so names (#12954)
  586. try_compile: Use random executable file name (#12957)
  587. Rename Modules/Platform/Windows-{Borland => Embarcadero}.cmake
  588. Recognize Embarcadero compiler (#12604)
  589. Factor cmInstallType out of cmTarget::TargetType
  590. Add infrastructure for CMakeCommands tests
  591. find_package: Reject mixed use of MODULE- and CONFIG-only options
  592. find_package: Optionally warn when implicitly using Config mode
  593. find_package: Test error and warning messages in failure cases
  594. bootstrap: Convert MSYS paths to Windows format (#13001)
  595. CTest.UpdateHG: Fix repo URL for local filesystem (#13001)
  596. cmcurl: Do not hard-coded Windows check results for MinGW (#13001)
  597. CheckSourceTree: Remove CVS checkout support (#13001)
  598. Fix MSYS CVS local test repo path format (#13001)
  599. find_package: Test that REQUIRED aborts processing correctly
  600. Remove unused partial OBJECT_FILES property implementation
  601. VS: Simplify object name computation
  602. Hide Makefile local object info inside local generator
  603. KWIML: Make test_INT robust to #define-d int#_t and INT#_C
  604. Add stronger infrastructure for CMake-only tests
  605. Use generalized RunCMake test infrastrucure for find_package test
  606. Use generalized RunCMake test infrastrucure for build_command test
  607. Document Fortran_MODULE_DIRECTORY as OUTPUT only (#13034)
  608. Ninja: Constify use of cmCustomCommand
  609. Ninja: Avoid using 'this' in member initializers
  610. Write CMakeCache.txt atomically (#13040)
  611. Add cmGeneratorTarget to represent a target during generation
  612. Create a cmGeneratorTarget for each cmTarget during generation
  613. Simplify cmMakefileTargetGenerator using cmGeneratorTarget
  614. Simplify cmVisualStudio10TargetGenerator using cmGeneratorTarget
  615. Pre-compute object file names before Makefile generation
  616. Pre-compute object file names before VS project generation
  617. Remove unused cmSourceGroup method
  618. Rename/constify build-time config placeholder lookup
  619. Pre-compute and store target object directory in cmGeneratorTarget
  620. Add OBJECT_LIBRARY target type
  621. Build object library targets in Makefiles
  622. Build object library targets in VS
  623. Add $<TARGET_OBJECTS:...> expression to use an object library
  624. Test OBJECT library success cases
  625. Test OBJECT library failure cases
  626. Test OBJECT library language propagation
  627. Test OBJECT library use without other sources
  628. Document OBJECT library type in add_library command
  629. Simplify cmNinjaTargetGenerator using cmGeneratorTarget
  630. Pre-compute object file names before Ninja generation
  631. Build object library targets in Ninja
  632. Ninja: Honor $<TARGET_OBJECTS:...> source expressions
  633. find_package: Test rejection of required+optional components
  634. Simplify cmVisualStudio10TargetGenerator source classification
  635. VS10: Fix external objects generated outside target (#13047)
  636. Fix ObjectLibrary test on Watcom
  637. KWIML: Avoid conflict with C++11 user-defined literals
  638. Christian Andersson (1):
  639. FindPythonLibs: Search for single-user installs on Windows
  640. Christopher Sean Morrison (1):
  641. cmake-mode.el: Make indentation case-insensitive (#12995)
  642. Clinton Stimpson (14):
  643. GetPrerequisites: Add support for @rpath on Mac OS X.
  644. GetPrerequisites: Add support for @rpath on Mac OS X.
  645. GetPrerequisites: Add test for @rpath support.
  646. Fix new BundleUtilities test failure on Mac 10.4.x
  647. Fix BundleUtilities test failure with space in build path.
  648. cmake-gui: Improve interrupt granularity to fix bug 12649.
  649. FindQt4: clarify warning message about incorrect Qt installation.
  650. FindQt4: Add include directories for lupdate.
  651. Fix paths/hints for finding qtmain.
  652. DragNDrop: Fix problem with relocated files in Xcode 4.3
  653. Add test for DeployQt4.cmake
  654. Fix for Qt4Deploy on some test machines.
  655. Remove QtGui dependency in Qt4Deploy test and verify QtSql existance.
  656. DeployQt4: Add path to Qt dlls on Windows.
  657. Daniel Nelson (1):
  658. CPack Add top level directory in component install for Archive Generators
  659. David Cole (33):
  660. Begin post-2.8.7 development
  661. Release: Increase timeout for slow-testing cygwin build
  662. Update dashmacmini2 release script to use Qt 4.6.3
  663. Update dashmacmini2 release script to use Qt 4.8.0
  664. Tests: Update drop site value for the Trilinos contract test
  665. Update version of Qt for dashmacmini5 produced release binaries
  666. CTestCustom: Suppress clang warning on the dashboard
  667. CMake: Eliminate cmMakefile::IncludeDirectories
  668. Remove cmMakefile::GetIncludeDirectories
  669. Make search paths ordered and unique
  670. Call ExpandVariablesInString for each target's INCLUDE_DIRECTORIES
  671. Update the documentation regarding INCLUDE_DIRECTORIES.
  672. Fix compiler error reported on older Borland dashboard.
  673. Fix compiler warning reported on older Borland dashboard.
  674. Fix shadowed variable warning on dashboard results
  675. Remove trailing white space
  676. Use correct "requires" line in cygwin setup hint file
  677. VS6: Avoid _MBCS define when _SBCS is defined (#12189)
  678. VS6: Avoid SBCS test on VS6 (#12189)
  679. Suppress warnings occurring on the dashboards using the PGI compiler.
  680. CPack: Fix retry logic when calls to hdiutil fail
  681. Ninja: CMake: Adapt Ninja generator for per-target include dirs
  682. Ninja: Add friend struct so it can access the private ConvertToNinjaPath.
  683. Xcode: Detect new default locations of Xcode 4.3 bits and pieces (#12621)
  684. CPack: Use real path to PackageMaker to find its version file (#12621)
  685. Xcode: Re-factor code into GetObjectsNormalDirectory method
  686. Xcode: Re-factor some existing methods into "FromPath" variants
  687. Add a default source group for object files.
  688. Allow txt files as ExtraSources in object library targets
  689. Pre-compute object file names before Xcode generation
  690. Build object library targets in Xcode
  691. Xcode: Honor $<TARGET_OBJECTS:...> source expressions
  692. Tests: Relax restrictions on version variable contents
  693. Deborah Pickett (1):
  694. CPackRPM flag direcories with %dir in the generated spec file
  695. Droscy (1):
  696. FindCxxTest: Add support for CxxTest 4 (#13022)
  697. Eric NOULARD (41):
  698. Document undocumented (but existing) cpack options (fix #0010134)
  699. Enhance bash completion file for cmake and ctest
  700. Do not add the content of a file if it's a symlink.
  701. CPackArchive restore default behavior and provide new variable.
  702. CPackNSIS fix #0012935 switch from LOG_WARNING to avoid final error.
  703. CPack begin the implementation of --help-command* and --help-variables*
  704. Implement simple CMake script comment markup language.
  705. CPack Documentation extraction from CMake script begins to work
  706. Update bash completion file in order to handle new CPack doc options.
  707. Suppress unused var, beautify code, avoid 1 extra newline.
  708. Fix potential bad memory access, thanks to Eike
  709. Calm down compiler warning about unused var
  710. Really avoid compiler warning about unused vars
  711. Fix another compiler warning due to a typo
  712. Make the load of script documentation more efficient and dynamic.
  713. Example of builtin variable documentation (i.e. only used in C++ source code).
  714. Add missing section markup for CPackComponent
  715. Create getDocumentedModulesListInDir which may be used in other context.
  716. Fix non existent std::string::clear on VS6
  717. Avoid discovering system infos for documentation. Adding some path is enough.
  718. Dynamically add documentation section specified in documented script.
  719. Add structured documentation for NSIS
  720. Add structure documentation for CPack Bundle generator
  721. Suppress unecessary (now empty) doc sections
  722. Correct copy/paste section name mistake
  723. Put CPack DMG and PackageMaker doc in separate files
  724. More documentation concerning CPack Components
  725. Fix typo in end markup
  726. Try to fix compile error on Win32-vs70
  727. Do not build RPM if path of the build tree contains space
  728. Fix layout of the CPack Bundle documentation
  729. Fix CPack Drag and Drop generator documentation layout.
  730. Review and update CPack variable documentation.
  731. Update CPackConfig template.
  732. Provide template for CPack Cygwin generator specific variables.
  733. Update CPack PackageMaker variable doc layout
  734. Typo: Add missing ##end for ##module
  735. Fix some typos in CPACK_SET_DESTDIR doc
  736. Add some missing CPACK_NSIS_xxx doc and move some to common CPack section.
  737. CPack STGZ put execute permission on all packages files (component case)
  738. Handle CPACK_MONOLITHIC_INSTALL in some rare use cases.
  739. Eugene Golushkov (1):
  740. VS: Add support for WinRT project properties (#12930)
  741. James Bigler (1):
  742. Added support for curand, cusparse, npp, nvcuenc and nvcuvid libraries.
  743. Jason Erb (1):
  744. FindwxWidgets: Add webview library (#12636)
  745. LibArchive Upstream (2):
  746. libarchive 3.0.1-r3950 (reduced)
  747. libarchive 3.0.2-r4051 (reduced)
  748. Matthias Kretz (1):
  749. Improve checks for Open64 and g++ incompatible flags (#12119)
  750. Mattias Helsing (1):
  751. CPack: Fix NSIS handling of privileged users (#12923)
  752. Michael Wild (1):
  753. GenerateExportHeader: Fix wrong use of IS_ABSOLUTE (#12645)
  754. Mike McQuaid (5):
  755. Don't use QT_LIBRARIES_PLUGINS by default.
  756. Fix mismatched arguments.
  757. Fix bad plugin paths.
  758. Ensure libs are passed to BundleUtilities.
  759. Fix plugin installation issues.
  760. Modestas Vainius (3):
  761. various typo and formatting fixes in manual pages (#12975)
  762. KWIML: Teach ABI.h that MIPS is biendian
  763. Tests: Escape metachars before embedding paths into the regex (#12999)
  764. Nicolas Despres (5):
  765. ccmake: Factor clear line.
  766. ccmake: Extend clear line.
  767. java: Factor jar output path.
  768. java: Add CMAKE_JAVA_TARGET_OUTPUT_DIR optional variable.
  769. java: Add CMAKE_JAVA_JAR_ENTRY_POINT optional variable.
  770. Peter Collingbourne (19):
  771. Add cmSystemTools::TrimWhitespace function
  772. Add executable with exports flag support to cmLocalGenerator::GetTargetFlags
  773. Provide dependency file flags to generator
  774. Ninja: Add the Ninja generator
  775. Ninja: Fix a 79-col violation
  776. Ninja: Remove some default arguments
  777. Ninja: Appease various compilers
  778. Ninja: Partially revert "win fixes: escape back slash/colon, use cd. as cmd.exe nop"
  779. Ninja: Identifier encoding rules for ' ' and ':'
  780. Ninja: Backslash rules for Windows
  781. Ninja: Shell encode paths used in "cd" commands
  782. Ninja: Shell encode various CMake invocations
  783. Ninja: Shell encode the command used in custom commands
  784. Ninja: Import library support for Windows
  785. Ninja: Add a missed license header
  786. Ninja: Use cmSystemTools::ExpandListArgument to split compile/link commands
  787. Ninja: Remove an unnecessary variable
  788. Ninja: add support for OBJECT_OUTPUTS, fix PrecompiledHeader test case
  789. Ninja: shell escape $(CMAKE_SOURCE_DIR) and $(CMAKE_BINARY_DIR)
  790. Peter Kuemmel (12):
  791. Find VC Express during default generator selection (#12917)
  792. Ninja: win fixes: escape back slash/colon, use cd. as cmd.exe nop
  793. Ninja: don't define MSVC_IDE when using the ninja generator
  794. Ninja: also build ninja support on Windows
  795. Ninja: add some hacks for Windows
  796. Ninja: disable unfinished Windows ninja support
  797. Ninja: mark the Windows specific hacks with a comment only
  798. Ninja: windows msvc: create for each target a .pdb file
  799. Ninja: ensure the output dir exists at compile time
  800. Ninja: add .def file support
  801. Ninja: add /DEF: flag to linker call
  802. Ninja: Fix <OBJECT_DIR> substitution
  803. Philip Lowman (5):
  804. FindProtobuf: Merge patch that allows extra import dirs
  805. FindProtobuf: Update documentation comment for 2.8.8
  806. Findosg: New modules for osgQt and osgPresentation
  807. FindALSA: Fix incorrect include path detection
  808. FindALSA: Fix version detection after last commit
  809. Rolf Eike Beer (95):
  810. remove reference to CVS directory when installing files
  811. CheckSymbolExists: force the compiler to keep the referenced symbol
  812. add a test for Check{,CXX}SymbolExists
  813. FindOpenSSL: improve version number handling
  814. FindOpenSSL: only try to parse opensslv.h if it exists
  815. FindOpenSSL: also parse version number define with uppercase letters
  816. GenerateExportHeader test: add newlines before end of file
  817. add a test that loops through most Find* modules
  818. AllFindModules test: keep complete output
  819. AllFindModules test: also check Qt3 modules if Qt4 is not found
  820. FindPythonInterp: make version selectable
  821. FindPythonInterp: fix version parsing
  822. LoadCommand test: cleanup
  823. FindThreads: Try pthreads with no special option first (#11333)
  824. fix uninitialized var in if(NOT foo bar STREQUAL "foo bar")
  825. use pkg_check_modules() quiet in other modules
  826. FindLibXml2: support version selection
  827. FindGnuTLS: partly support version selection
  828. FindGit: support version number
  829. FindCups: major overhaul
  830. FindEXPAT: support version number
  831. FindCURL: support version selection
  832. FindFLEX: fix version parsing for old flex versions
  833. FindFLEX: fix version parsing when the executable is quoted
  834. FindJasper: find debug libraries
  835. FindJasper: support version number
  836. FindBZip2: add support for version checking
  837. FindBZip2: add support for debug libraries (#12867)
  838. FindImageMagick: make use of more FPHSA features
  839. FindPNG: support version selection
  840. FindRuby: do not blindly set version to 1.8.0
  841. FindTclsh: support version selection
  842. SelectLibraryConfigurations: do not output identical configurations
  843. FindLua51: add version support
  844. FindTIFF: support version selection
  845. FindCURL: detect version number also for older versions
  846. FindLibXml2: detect version when PkgConfig is not used
  847. FindPostgreSQL: support version selection
  848. FindOpenSSL: properly parse the hex version components
  849. FindBISON: add a version expression for GNU Bison 1.x
  850. FindPythonInterp: try harder to get a version number
  851. FindJasper: fix library name
  852. FindGnuplot: add version selection
  853. FindALSA: support version selection
  854. FindGettext: support version selection
  855. CheckCXXCompilerFlag test: make it a CMakeOnly test
  856. CMakeOnly.AllFindModules: clean up the Qt3/Qt4 code
  857. CMakeOnly.AllFindModules: always check FindQt
  858. CMakeOnly.AllFindModules: suppress two modules from testing
  859. CMakeOnly.AllFindModules: require version for some modules
  860. CheckIncludeFiles: fix status output
  861. FindPerl{,Libs}: move version detection into FindPerl
  862. FindLibArchive: support version selection
  863. FindX11: also search for Xmu (#12447)
  864. detect "pgfortran" as PGI Fortran compiler (#12425)
  865. FindSDL*: use FPHSA (#12467)
  866. AllFindModules test: do not enforce GNUPLOT version
  867. FindPerlLibs: properly detect libperl on Windows (#12224)
  868. CTest: mark all gcov covered files as covered
  869. FindGLUT: honor REQUIRED (#12466)
  870. FindRuby: clean up querying variables from Ruby
  871. FindLibXslt: support version selection
  872. Tests: document where to put tests
  873. FindPkgConfig: support version selection of pkg-config itself
  874. fix the same typos as found by Debian in other places, too
  875. Find_library(): allow searching for versioned shared objects
  876. FindFreetype: support version selection
  877. AllFindModules test: expect more modules to have a version number available
  878. FindOpenMP: do not fail if only C or CXX is enabled (#11910)
  879. FindOpenMP: try the most likely flags first
  880. FindOpenMP: simplify check for enabled languages
  881. UseSWIG: clean up string compares
  882. FindPython{Interp,Libs}: document Python_ADDITIONAL_VERSIONS as input
  883. FindPythonLibs: make the version selection work as for PythonInterp
  884. FindPythonLibs: get the exact version of the found library (#3080)
  885. FindPythonLibs: put debug libraries into PYTHON_LIBRARIES
  886. FindPythonLibs: stop scanning when libraries are found
  887. Check{C,CXX}CompilerFlag: detect ICC error messages
  888. GenerateExportHeader: remove unneeded code
  889. GenerateExportHeader: improve compiler identification
  890. FindOpenSceneGraph: give every message() with an explicit level
  891. FindHSPELL: set HSPELL_VERSION_STRING
  892. FindImageMagick: fix fail if no components were given
  893. FindPythonInterp: rework the version detection
  894. document when version detection will not work
  895. AllFindModules test: once again expand version checking
  896. improve error message on a stray "endwhile()"
  897. add testcases for while()/endwhile() errors
  898. reflect that the QtAutomoc depends on QtGui
  899. FindQt3: fix warning when Qt3 is not found
  900. FindQt3: fix version extraction for versions with letters
  901. FindQt3: let FPHSA handle the version selection
  902. FindQt3: fix detection of Qt3 include directory
  903. AllFindModules test: do not require TCLSH version
  904. add test for get_property() errors
  905. Stephen Kelly (13):
  906. Fix typos arguement -> argument.
  907. Exit the loop when we have determined the language.
  908. Add whitespace after '.' in CMAKE_SKIP_RPATH docs.
  909. Fix documented function signature to match reality.
  910. Add default initializers for WIN32_EXECUTABLE and MACOSX_BUNDLE
  911. Add an option to skip RPATH during installation.
  912. Refactor GetIncludeFlags to take includes instead of fetching them
  913. Make it safe to call this method without creating duplicates.
  914. Remove include flags memoization.
  915. Add API to get the ordered includes for a target.
  916. Keep the INCLUDE_DIRECTORIES target property up to date.
  917. Extract and use the INCLUDE_DIRECTORIES target properties.
  918. Fix some typos in the docs comments.
  919. Yury G. Kudryashov (23):
  920. FindDoxygen: add DOXYGEN_VERSION variable
  921. cmInstallCommand: Fix indentation error
  922. cmInstallCommand: Remove duplicated sentence from docs
  923. FindPkgConfig: respect REQUIRED (#12620)
  924. FindPackageHandleStandardArgs: fix documentation
  925. Remove unused file cmake.1
  926. Fix typo in documentation
  927. Drop if(...) check because condition is always true
  928. CMakeFindPackageMode: fix 32/64bit detection if 'file' is a symlink
  929. Run vim spellcheck on some files
  930. cmPropertyDefinition::IsChained is const
  931. Add 'const' qualifier to some cmCommand members
  932. doxygen: cmPropertyDefinition
  933. doxygen: Improve API docs of GetRealDependency
  934. doxygen: Use proper syntax to document enum
  935. doxygen: Small fixes in cmake.h apidocs
  936. doxygen: fix some comments in cmPolicies.h
  937. doxygen: remove a few comments
  938. doxygen: review cmake.h
  939. doxygen: MathCommand is not about string operators
  940. Rename UsedCommands to FinalPassCommands
  941. Remove UnionsAvailable member from 2 classes
  942. Remove cmExprParserHelper::SetLineFile()
  943. Changes in CMake 2.8.7 (since 2.8.7-rc2)
  944. --------------------------------------------
  945. None
  946. Changes in CMake 2.8.7-rc2 (since 2.8.7-rc1)
  947. --------------------------------------------
  948. Alex Neundorf (5):
  949. automoc: default to strict mode, use CMAKE_AUTOMOC_RELAXED_MODE
  950. automoc: improved warning message in relaxed mode
  951. Remove trailing whitespace
  952. Add comment about one more problem of the C depency scanner.
  953. fix #12262: dependency scanning for ASM files
  954. Bill Hoffman (1):
  955. Fix the case where cmake --build failed with two project cmds in one file.
  956. Brad King (11):
  957. KWSys: Correctly handle empty environment variables
  958. FortranCInterface: Work around mingw32-make trouble with parens
  959. Xcode: Create separate rerun dependencies for subprojects (#12616)
  960. Fix Intel Fortran .vfproj files for VS 10
  961. HP: Drive shared library linking with compiler front end
  962. Follow all dependencies of shared library private dependencies
  963. Do not link private dependent shared libraries on OS X > 10.4
  964. Avoid clobbering variable 'OUTPUT' in compiler tests (#12628)
  965. Fix and simplify Fortran test compiler compatibility check
  966. CTest: Recognize Intel errors without space before colon (#12627)
  967. Windows-GNU: Remove extra quotes in GNUtoMS rule variable
  968. David Cole (4):
  969. Release: Increase timeout for slow-testing cygwin build
  970. Modules: Use "windres" as rc compiler base name for cross-compiles (#12480)
  971. Tests: Only really run MFC test if we can build MFC apps (#11213)
  972. FindBoost: Quote possibly empty string argument (#12273)
  973. Eric NOULARD (1):
  974. CPackRPM fix #0012608 and unoticed related bug
  975. Johan Fänge (1):
  976. CMake: Fix progress reporting for custom targets (#12441)
  977. Mike McQuaid (2):
  978. Unset configurations variable when no build type.
  979. Improve component support and output indentation.
  980. Raphael Kubo da Costa (2):
  981. Remove the apparently outdated README in Source/QtDialog.
  982. QtDialog: Set Ctrl+Q as the shortcut for quitting the program.
  983. Tim Gallagher (2):
  984. FindLAPACK: Correct CMAKE_FIND_LIBRARY_SUFFIXES spelling (#12624)
  985. FindLAPACK: List thread libs to avoid link errors (#12625)
  986. Valat Sébastien (1):
  987. CTest: Do not get CDash version without drop site (#12618)
  988. Changes in CMake 2.8.7-rc1 (since 2.8.6)
  989. ----------------------------------------
  990. Aaron Ten Clay (1):
  991. VS: Add support for three new project properties (#12586)
  992. Alex Neundorf (60):
  993. fix #12392: handle CMAKE_CXX_COMPILER_ARG1 for Eclipse projects
  994. fix #12262: use the C dependency scanner also for ASM files
  995. fix #12465: detect the masm compiler ID ("MSVC")
  996. Silence make on OpenBSD in FindPackageModeTest(#12508)
  997. Remove trailing whitespace
  998. Find Ruby on OpenBSD when installed from ports (#12507)
  999. Eclipse generator: detect Eclipse version
  1000. Detect whether the current Eclipse version supports VirtualFolders
  1001. Eclipse: don't create VirtualFolders if not supported
  1002. Eclipse: better message when Eclipse version could not be determined
  1003. automoc:run moc on the header if the source file contains include "foo.moc"
  1004. Add copyright notices
  1005. automoc: always run moc on the cpp file if there is a foo.moc included
  1006. Eclipse: add virtual folder for each target
  1007. Eclipse: move code for generating links to projects into separate function
  1008. Eclipse: move code for generating links to targets into separate function
  1009. Eclipse: add Build and Clean targets to targets
  1010. Eclipse: detect number of CPUs, set CMAKE_ECLIPSE_MAKE_ARGUMENTS accordigly
  1011. Eclipse: fix #12417, don't create wrong src pathentries
  1012. FindLibXslt: also search libexslt and xsltproc
  1013. don't crash in automoc with empty COMPILE_DEFINITIONS property
  1014. Automoc: fix the fix, need to use std::string, not just char* pointer
  1015. automoc: fix #12541, support moc options
  1016. add documentation for the AUTOMOC_MOC_OPTIONS property
  1017. Eclipse: warn if CMAKE_BINARY_DIR is subdir of CMAKE_SOURCE_DIR
  1018. Eclipse: make targets work from any directory
  1019. Eclipse: quote the build dir (to make it work with spaces)
  1020. make automoc work when using ccmake via PATH (#12551)
  1021. Strip trailing whitespace
  1022. -make GETTEXT_PROCESS_PO_FILES() work with files with multiple dots
  1023. FindGettext: two more fixes for files with multiple dots
  1024. FindPNG: provide PNG_INCLUDE_DIRS, as the readme.txt says (#11312)
  1025. Eclipse: create links to subprojects also in the source-project (#12579)
  1026. Eclipse: use new variable CMAKE_ECLIPSE_GENERATE_SOURCE_PROJECT
  1027. install(EXPORT): Enforce existence of imported target files
  1028. Remove trailing whitespace
  1029. cmake-gui: add completion for the names when adding cache entries
  1030. automoc: stricter checking for what file is included
  1031. automoc: rework the checking for the matching header, to give better warnings
  1032. automoc: handle the case when the developer includes the wrong mocfile
  1033. automoc: add more test cases
  1034. automoc: improved diagnostics
  1035. automoc: minor optimization
  1036. automoc: another runtime optimization
  1037. Automoc: modified handling of included .moc files
  1038. automoc: add a test for including both abc.moc and moc_abc.cpp
  1039. automoc: add test for including the moc file from another header
  1040. automoc: add test for including a moc_abc_p.cpp file
  1041. automoc: move some code from the big parsing loop into separate functions
  1042. automoc: add special handling for including basename_p.moc, with test
  1043. automoc: add extra check whether the header contains Q_PRIVATE_SLOT
  1044. automoc: some more linebreaks for the warnings for better readability
  1045. automoc: fix handling of included _p.moc files
  1046. automoc: move the code for finding headers into separate function
  1047. automoc: add a StrictParseCppFile(), which is only qmake-compatible
  1048. automoc: also accept other files when .moc is included in non-strict mode
  1049. automoc: accept even more .moc files in non-strict mode
  1050. automoc: add variable CMAKE_AUTOMOC_STRICT_MODE, to enable strict parsing
  1051. automoc: fix line length
  1052. automoc: add documentation for CMAKE_AUTOMOC_STRICT_MODE
  1053. Alexey Ozeritsky (1):
  1054. FindLAPACK: Fix linking to static LAPACK on Unix (#12477)
  1055. Bernhard Walle (1):
  1056. Source/cmCTest.cxx: Add missing newline (#12538)
  1057. Brad King (65):
  1058. Refactor find_* command final path list computation
  1059. Constify XCode generator getters to match cmGlobalGenerator
  1060. Fix line-too-long style violations
  1061. KWSys: Fix Doxygen warnings
  1062. Add pre-commit|commit-msg|prepare-commit-msg hook placeholders
  1063. pre-commit: Reject changes to KWSys through Git
  1064. Fix CTest.UpdateSVN with Subversion 1.7 (#12535)
  1065. Teach CTest.UpdateSVN to detect svn add --depth before using it
  1066. KWSys: Address Intel compiler remarks
  1067. Fix linking to OS X Frameworks named with spaces (#12550)
  1068. Watcom: Use shortpath to CMake if full path has parens (#12548)
  1069. KWSys: Remove trailing whitespace in SystemTools.cxx
  1070. KWSys: Fix wrong spelling of __INTEL_COMPILER
  1071. Update main Copyright.txt year range for 2011
  1072. KWIML: The Kitware Information Macro Library
  1073. Configure KWIML inside CMake as cmIML
  1074. KWIML: Avoid redefining _CRT_SECURE_NO_DEPRECATE in test.h
  1075. KWIML: Suppress printf/scanf format warnings in test
  1076. KWIML: No INT_SCN*8 on SunPro compiler
  1077. KWIML: No INT_SCN*8 on Intel for Windows
  1078. KWIML: Create test output dir for Xcode
  1079. Order VS local generator Version ivar values consistently
  1080. Enumerate VS11 version explicitly in local generators
  1081. KWIML: Test header inclusion after system headers
  1082. KWIML: Ignore _LONGLONG on MS compiler
  1083. KWIML: Teach ABI.h about PGI compiler
  1084. KWIML: Avoid MSVC linker warning about not using C++ runtime
  1085. Factor Compute(File|String)MD5 into cmCryptoHash helper
  1086. Add file(MD5) command to compute cryptographic hash
  1087. Import sha2 implementation 1.0 from Aaron D. Gifford
  1088. Import sha2 implementation 1.1 from Aaron D. Gifford
  1089. sha2: Use KWIML fixed-size integer types and endian-ness
  1090. sha2: Build as part of CMakeLib
  1091. Add file(SHA*) commands to compute cryptographic hashes
  1092. sha2: Use "static const" instead of "const static" declarations
  1093. cmCryptoHash: Provide factory "New" method
  1094. Add string(MD5) and string(SHA*) commands to compute hashes
  1095. sha2: Use KWIML fixed-size integer constant macros
  1096. sha2: Suppress Borland warnings in third-party code
  1097. Disable file() and string() hash commands during bootstrap
  1098. sha2: Wrap long lines in third-party declarations
  1099. Fix CMake.File hash test for CRLF checkouts
  1100. cmCryptoHash: Add virtual destructor
  1101. sha2: Cast safe conversions to smaller integer types
  1102. sha2: Suppress -Wcast-align warning from Clang
  1103. sha2: Zero entire SHA_CTX structure during cleanup
  1104. target_link_libraries: Add missing space in documentation
  1105. target_link_libraries: Simplify argument processing state tests
  1106. install(EXPORT): Improve target import failure message format
  1107. Remove trailing whitespace from cmLocalGenerator
  1108. bootstrap: Include cmNewLineStyle in build
  1109. cmNewLineStyle: Remove trailing comma in enum
  1110. cmNewLineStyle: Use cmStandardIncludes.h
  1111. Provide std::ios_base typedef on GCC < 3
  1112. FindZLIB: Search under ZLIB_ROOT if it is set
  1113. Factor out target location undefined behavior helper macro
  1114. export(): Document undefined behavior of location properties
  1115. Recognize the Tiny C Compiler (#12605)
  1116. TinyCC: Add compiler info for shared libs on Linux (#12605)
  1117. Fortran: Detect pointer size in gfortran on MinGW
  1118. Load platform files that need to know the ABI when possible
  1119. Factor makefile generator link rule lookup into helper function
  1120. Add CMAKE_GNUtoMS option to convert GNU .dll.a to MS .lib
  1121. Test CMAKE_GNUtoMS option in ExportImport on MinGW and MSys
  1122. cmTarget: Create helper method for versioned library names
  1123. Clinton Stimpson (2):
  1124. Fix XML safety issue with adding preprocessor defines in CodeBlocks project.
  1125. Qt4: Fix dependencies of QtDeclartive.
  1126. Dan Kegel (1):
  1127. Modules: Add XRes to FindX11.cmake
  1128. David Cole (17):
  1129. Begin post-2.8.6 development
  1130. CTest: Fix crash when variables are not defined
  1131. VS11: Fix comment generated at the top of *.sln files
  1132. CTest: Add COVERAGE_EXTRA_FLAGS cache variable (#12490)
  1133. CTest: Clear custom vectors before populating (#12383)
  1134. Tests: Add the MFC test (#11213)
  1135. Tests: Avoid MFC test automatically for VCExpress builds (#11213)
  1136. Tests: Fix MFC test w/ Make-based generators (#11213)
  1137. Tests: Fix MFC test for old vs6 dashboards (#11213)
  1138. Tests: Avoid MFC test automatically for Watcom WMake builds (#11213)
  1139. Tests: Fix MFC test to work with VS 10 and later (#11213)
  1140. VS10: Use expected values for UseOfMfc (#11213)
  1141. Tests: Add environment logging to the MFC test (#11213)
  1142. VS11: Update InstallRequiredSystemLibraries.cmake for VS11 (#11213)
  1143. Tests: Nudge MFC test to pass on VS 6 dashboards (#11213)
  1144. VS: Use "call " keyword with .cmd and .bat file custom commands (#12445)
  1145. CTest: Disallow problem chars in build and site names (#11792)
  1146. Eric NOULARD (3):
  1147. CPackRPM support component specific variables for spec files
  1148. Fix old reference to CMAKE_MAKE_PROGRAM inside CMAKE_BUILD_TOOL doc.
  1149. CPackRPM fix #12556 and enhance documentation
  1150. James Bigler (6):
  1151. Added support for CUDA_PATH which is present in the CUDA toolkit 3.2 onward.
  1152. Reset dependency file list when a dependency disappeared.
  1153. Add work around for CUDA in UNC paths.
  1154. Fixes for handling quotes in args and other places (Fix Bug 11726 and 12099).
  1155. Make CUDA working directory unique for each target.
  1156. Miscellaneous fixes.
  1157. Jean-Christophe Fillion-Robin (1):
  1158. CTest: Look for CTestConfig.cmake in build dir first, then source dir
  1159. Johan Bjork (1):
  1160. Xcode: Avoid spewing the environment on every script run (#12522)
  1161. Mateusz Loskot (1):
  1162. FindBoost: Use MSVC11 to find Boost on Windows (#12568)
  1163. Mathieu Malaterre (1):
  1164. TinyCC: Add default compilation flags (#12605)
  1165. Mike McQuaid (6):
  1166. Add QT_LIBRARIES_PLUGINS variable to UseQt4.
  1167. Add DeployQt4 module.
  1168. Match fixup_qt4_executable with documentation.
  1169. Don't resolve directories; are never relative.
  1170. Check plugin variables are defined before warning.
  1171. Check QtCore without warning.
  1172. Nicolas Despres (17):
  1173. Refactor TargetTypeNames.
  1174. Add const versions of some getters.
  1175. Constify many getters of cmGlobalGenerator.
  1176. Remove trailing white-spaces.
  1177. Fix typo.
  1178. Doxygen: Improve code documentation.
  1179. Doxygen: Generate call graph and relationships.
  1180. Doxygen: Fix warnings.
  1181. Doxygen: Remove dependency on VTK when building doxygen.
  1182. Usage: Document -j|--parallel option in help message.
  1183. Usage: Document all options printing usage information.
  1184. Usage: Document all options printing the version number.
  1185. Usage: Print help, version and copyright options in usage information.
  1186. Usage: Add missing exepath argument in get_prerequisites documentation.
  1187. ccmake: Align 'g' and 'q' key instructions.
  1188. ccmake: Document '/' key.
  1189. ccmake: Factor toggle key help instructions.
  1190. Niels Dekker (1):
  1191. Fix CMAKE_VERBOSE_MAKEFILE for VS10 vcxproj files (#12504)
  1192. Ondrej Balaz (1):
  1193. FindBISON: Fix bison++ version parsing to avoid "Offending entry"
  1194. Peter Collingbourne (4):
  1195. Make cmLocalGenerator::ConvertToLinkReference virtual
  1196. Introduce a cmLocalGenerator::ConvertToIncludeReference function
  1197. Introduce a cmGlobalGenerator::ResolveLanguageCompiler function
  1198. Fix configuration-dependent flag lookup in cmLocalGenerator::GetTargetFlags
  1199. Peter Kuemmel (1):
  1200. Add NEWLINE_STYLE option to configure_file (#3957)
  1201. Philip Lowman (1):
  1202. FindProtoBuf: Documented limitation of the public macro
  1203. Pierre-Francois Laquerre (1):
  1204. Fix path quoting in Qt4 macros
  1205. Robert Dailey (1):
  1206. VS: Add VS_SCC_AUXPATH target property (#12549)
  1207. Rolf Eike Beer (4):
  1208. libarchive: fix typo in CheckFileOffsetBits.cmake
  1209. Tell people that link_directories() is not what they are searching for
  1210. FindBISON: Fix matching output of "bison --version"
  1211. Tests: ExternalProject: Remove unnecessary 'svn --version' call
  1212. Stephen Kelly (13):
  1213. Add features from KDE for arguments to qdbusxml2cpp.
  1214. Remove unused define.
  1215. Build each library only once instead of once for each test.
  1216. Initialize LINK_INTERFACE_LIBRARIES target property with a variable
  1217. Also run moc automatically with Qt5.
  1218. Fix typo.
  1219. Don't assume the existence of QT_MAJOR_VERSION.
  1220. Update comments and method names to not be Qt4 specific.
  1221. Fix style.
  1222. target_link_libraries: Trim trailing whitespace
  1223. target_link_libraries: Add LINK_(PUBLIC|PRIVATE) options
  1224. moc is now part of the Qt5Core module
  1225. Add a test case for the use of Q_PRIVATE_SLOT.
  1226. Changes in CMake 2.8.6 (since 2.8.6-rc4)
  1227. ----------------------------------------
  1228. Alex Neundorf (5):
  1229. Remove trailing whitespace
  1230. Minor improvements to the UsePkgConfig.cmake docs
  1231. Remove trailing whitespace
  1232. Improve behaviour of --find-package mode with try_run/try_compile
  1233. Use makefile->IssueMessage() for better error messages
  1234. Bill Hoffman (2):
  1235. Use version 11.0 for 12.x and 9.10 for 10.x intel versions to fix 12.1 vsIDE.
  1236. Also, check for 11.x as an intel fortran version.
  1237. Brad King (2):
  1238. Add Visual Studio 11 generator for x86 and x64 tools
  1239. Teach our tests about special cases for VS 11
  1240. David Cole (1):
  1241. CTestCustom.cmake: Ignore clang's summary warning
  1242. Philip Lowman (1):
  1243. FindBullet: Also search for _Debug postfixed library names
  1244. Raphael Kubo da Costa (1):
  1245. Fix typo in set_target_properties' documentation.
  1246. Rolf Eike Beer (1):
  1247. Fix typo in UsePkgConfig.cmake
  1248. Changes in CMake 2.8.6-rc4 (since 2.8.6-rc3)
  1249. --------------------------------------------
  1250. Alex Neundorf (3):
  1251. FindFLEX.cmake: also search the include dir
  1252. Fix typos in FeatureSummary.cmake (#12462)
  1253. Don't warn when setting a property multiple times to the same value #12464
  1254. Bill Hoffman (2):
  1255. For VS Intel Fortran IDE builds, add a check to find the Fortran library PATH.
  1256. Enable Fortran tests for IDE builds.
  1257. Brad King (5):
  1258. FortranCInterface: Compile separate Fortran lib in VerifyC[XX]
  1259. Move IntelVSImplicitPath project to better location
  1260. Simplify IntelVSImplicitPath detection project
  1261. libarchive: Fix ssize_t detection with mingwrt 3.20
  1262. Make file(DOWNLOAD) fail on http error
  1263. David Cole (8):
  1264. Tests: Add a KWStyle test, equivalent to the make StyleCheck target
  1265. KWStyle Test: Activate by default if KWStyle is found
  1266. Xcode: Use EFFECTIVE_PLATFORM_NAME reference in ComputeOutputDir
  1267. Xcode: Add test to demonstrate iOS project in Xcode
  1268. CMake: Reference test targets only when BUILD_TESTING is ON
  1269. Tests: Add the more modern Mac64 nightly build
  1270. Release Scripts: Use Qt 4.7.4 on dashmacmini5 (#12460)
  1271. Revert "FindThreads: Try pthreads with no special option first (#11333)"
  1272. Eric NOULARD (4):
  1273. CPack fix #12449 doc mispelled
  1274. CPack fix template too
  1275. CPackDeb fix #10325 automagically use fakeroot for DEB if fakeroot is found
  1276. CPackRPM authorize per-component pre/post-[un]install scripts (#0012063)
  1277. Marcus D. Hanwell (4):
  1278. Just code style changes.
  1279. Don't warn when nothing to do in visibility function.
  1280. Made ADD_COMPILER_EXPORT_FLAGS into a macro.
  1281. Make add_compiler_export_flags a function again.
  1282. Rolf Eike Beer (1):
  1283. remove stray brace in CPackDeb documentation
  1284. Changes in CMake 2.8.6-rc3 (since 2.8.6-rc2)
  1285. --------------------------------------------
  1286. Alexey Ozeritsky (2):
  1287. FindBLAS/LAPACK fixes
  1288. FindBLAS/LAPACK fixes
  1289. Andreas Schneider (1):
  1290. Modules: Add support for more java archives in add_jar().
  1291. Björn Ricks (4):
  1292. Search for the installed python interpreter first
  1293. Determine python version
  1294. Update documentation of FindPythonInterp.cmake
  1295. Use FIND_PACKAGE_HANDLE_STANDARD_ARGS second mode
  1296. Brad King (5):
  1297. VS: Map per-source Fortran flags to IDE options
  1298. VS: Map Fortran free- and fixed-format flags to IDE options
  1299. Fortran: Add support for free- and fixed-form flags
  1300. Xcode: Honor Fortran_FORMAT target and source file property
  1301. Set CMAKE_<lang>_COMPILER_ID for VS generators
  1302. David Cole (8):
  1303. KWSys: Remove always-true dir_only parameter
  1304. KWSys: Add symlinks to directories as files (#12284)
  1305. FindPackageMessage: Eliminate new lines in cache entries
  1306. FindPackageMessage: Eliminate new lines using REGEX REPLACE
  1307. CMake: Add SaveCache at the end of successful Generate calls
  1308. Suppress Qt warning for dashmacmini5 builds
  1309. Suppress Qt warning for dashmacmini5 builds
  1310. Tests: Look for "Illegal" or "SegFault" in the output
  1311. Eric NOULARD (2):
  1312. CPack fix #12366 components RPM packages have the same package name
  1313. CPackRPM fix #12305, include directories in RPM package
  1314. Johan Björk (5):
  1315. Xcode: No spaces in makefile target names (#12370)
  1316. CMake: Write symlinks to directories as files in archives (#12284)
  1317. CPack: Do not recurse through directory symlinks (#12284)
  1318. Xcode: Do not emit the ZERO_CHECK target more than once
  1319. Xcode: Honor -g0 to disable debugging (#12377)
  1320. Johannes Stallkamp (1):
  1321. CTest: Fixed valgrind output parsing (#12260)
  1322. Matt McCormick (1):
  1323. CMake: Remove documentation for -E build (#12446)
  1324. Stephen Kelly (2):
  1325. Add some more unit tests.
  1326. Don't put what some compilers consider junk at the end of the line.
  1327. Thomas Jarosch (3):
  1328. CTest: Fix memory leaks on error
  1329. Fix file() command descriptor leak on error
  1330. ccmake: Fix off-by-one memory access error
  1331. Changes in CMake 2.8.6-rc2 (since 2.8.6-rc1)
  1332. --------------------------------------------
  1333. Brad King (2):
  1334. KWSys: Add hash function for std::string
  1335. KWSys: Fix std::string hash function for Borland
  1336. Clinton Stimpson (1):
  1337. qt4: also find QtUiTools when cross compiling with mingw.
  1338. David Cole (3):
  1339. Xcode4: Requires more quoting of single quote char
  1340. cmake.m4: Use modern signature of install(FILES ...)
  1341. CMake Release Scripts: Changes for next release candidate...
  1342. David Faure (1):
  1343. Don't use a variable name that might be used in other files.
  1344. Stephen Kelly (73):
  1345. Create moc files in the current binary dir, not the top level.
  1346. Make the formatting of feature_summary output a little better.
  1347. Add the GenerateExportMacro with unit tests.
  1348. Handle the case where the user changes the DEFINE_SYMBOL property.
  1349. Add a newline at the end of the file.
  1350. Add a newline at the end of the file.
  1351. Add missing licence header.
  1352. Remove the fatal_warnings option which is no longer used.
  1353. Test for features, not specific compilers.
  1354. Simplify. We already know we have hidden visibility at this point.
  1355. Simplify the compiler feature check
  1356. Add some debug output.
  1357. Short-circuit the tests on unsupported compilers.
  1358. Test expected no-op instead of aborting the build.
  1359. Fix tests with clang.
  1360. Fix typo and tests failing as a result.
  1361. Only run the failure tests with gcc >= 4.2
  1362. Set the CMAKE_RUNTIME_OUTPUT_DIRECTORY for windows builds.
  1363. Only set the COMPILER_HAS_HIDDEN_VISIBILITY if GCC >= 4.2
  1364. Disable all export macros on Borland.
  1365. Another attempt to fix the tests on Borland.
  1366. Use the correct project name compiletest not compilefail
  1367. Fix off-by-not in test for Borland.
  1368. Another attempt at fixing Borland.
  1369. Add some debug output to narrow down deprecation test issues
  1370. Export deprecated free methods too.
  1371. Remember to surround the other deprecated test in the Borland check.
  1372. Only set the deprecated attribute if hidden visibilty is enabled.
  1373. Make sure the hidden visibility variables never get set on MINGW.
  1374. Don't use hidden visibility on non-mingw windows either.
  1375. Don't export methods on already exported classes.
  1376. Split the deprecated available check from setting macro values.
  1377. Test for compiler features, instead of for specific platforms.
  1378. Exclude the XL compiler from the hidden-visibility test.
  1379. Add the COMPILER_HAS_DEPRECATED only if it has a declspec variant
  1380. Don't change the expected build result based on the platform.
  1381. Expect the tests to pass if hidden visibilty is not enabled.
  1382. Test -Werror instead of enabling it per compiler.
  1383. Add some messaging output to make remaining issues findable.
  1384. Perform the -Werror test only once.
  1385. Test for deprecated attribute before declspec.
  1386. Try to error on deprecated on Intel and SunCC.
  1387. Borland can't do deprecated.
  1388. Fixup forgotten part of aed84517c942a4c40f493fcf997cdf6a047349f8
  1389. Disable testing of deprecated macros.
  1390. Don't enable deprecated on HP.
  1391. Don't enable deprecated on old GCC
  1392. Exclude cygwin from the hidden visibility feature.
  1393. Exclude PGI from exports and deprecated.
  1394. Start testing expected values for compiler flags.
  1395. Exclude win32 from hidden visibility checks.
  1396. Comment the test assertion for now
  1397. Test the correct cxx variable.
  1398. Fix the version extraction regex for clang.
  1399. Hopefully add version extraction for Intel.
  1400. Add some settings for non-truncation of test output.
  1401. Fix up the regex command for Intel.
  1402. Test for too-old-intel compilers.
  1403. Possibly fix test on HPUX.
  1404. Possibly fix configuration test on AIX.
  1405. Try to make the macros do almost nothing for Watcom.
  1406. More consistency in the macro options.
  1407. Add missing NO_EXPORT macro variant.
  1408. Look for errors reported by PGI too.
  1409. Quote paths in case there is a space in one of them.
  1410. Disable the tests for Watcom.
  1411. Fix Compiler id variable name.
  1412. Add quotes in case cmake is installed in a prefix with a space.
  1413. Fix the feature of using a specific prefix for macros.
  1414. Add documentation about the prefix and no_deprecated options.
  1415. Remove blank line at the start of the file.
  1416. Don't start a line with a dash(-)
  1417. Fix up verbatim code sections of the dox.
  1418. Todd Gamblin (3):
  1419. FindBoost: Call find_package with NO_MODULE first
  1420. Fix XL compilers on non-AIX machines.
  1421. Fixed link bugs in BlueGeneP build.
  1422. Changes in CMake 2.8.6-rc1 (since 2.8.5)
  1423. --------------------------------------------
  1424. Aaron C. Meadows (1):
  1425. FindSubversion: Invoke svn non-interactively (#12304)
  1426. Alex Neundorf (92):
  1427. Add a switch to disable a find_package() call completely
  1428. Add documentation for the CMAKE_DISABLE_FIND_PACKAGE_<Name> switch
  1429. Add a basic test for CMAKE_DISABLE_FIND_PACKAGE_<package>
  1430. Add macros cmake_push/pop_check_state() as discussed on the list.
  1431. Fix copyright notice test
  1432. Add CheckCXXSymbolExists.cmake, so this can be used also for C++
  1433. Minor fix to try_compile() docs (#12333)
  1434. Fix #12342: Add APPEND_STRING option to set_property()
  1435. Extend FeatureSummary: add PURPOSE of package and TYPE
  1436. FeatureSummary.cmake: remove "comment" field
  1437. FeatureSummary.cmake: add INCLUDE_QUIET_PACKAGES keyword
  1438. FeatureSummary.cmake: error out when a REQUIRED package is missing
  1439. FeatureSummary.cmake: only higher TYPEs can override previous TYPEs
  1440. FeatureSummary.cmake: cosmetics
  1441. FeatureSummary.cmake: update documentation
  1442. Remove debug output from CheckSymbolExists
  1443. Don't put files from CMAKE_ROOT into CodeBlocks projects (#12110)
  1444. More PATH_SUFFIXES for finding Postgresql and also search catalog/pg_type.h
  1445. Use FPHSA(), remove unnecessary stuff and don't recommend link_directories()
  1446. Mark the results from find() as advanced
  1447. FindPostgreSQL: fix PATH_SUFFIXES, better output for FPHSA
  1448. Strip trailing whitespace
  1449. FindGIF/FindFreetype.cmake: remove standard search paths from find-calls
  1450. FindGif: add giflib4 as one more name for the library under Windows
  1451. Add basic version check for giflib
  1452. Patch by Campbell Barton: puts definitions into C::B project file
  1453. Remove useless line of code
  1454. Also put builtin include dirs into CodeBlocks project file
  1455. Remove trailing whitespace
  1456. Also search for libxkbfile, XSync and SM include dir
  1457. Provide macro write_basic_config_version_file()
  1458. Add example to documentation
  1459. Add some tests for write_basic_config_version_file()
  1460. Fix copyright notice
  1461. Really fix copyright notice
  1462. Set UNSUITABLE instead of not COMPATIBLE
  1463. Improve documentation for WriteBasicConfigVersionFile.cmake
  1464. Add macros GETTEXT_PROCESS_POT() and GETTEXT_PROCESS_PO_FILES()
  1465. Support REQUIRED in FindGettext.cmake (using FPHSA.cmake)
  1466. Fix #12358: make optionally enabling ASM work again
  1467. Start work on automoc: add empty cmQtAutomoc class
  1468. Start implementing skeleton for automoc in cmake
  1469. Add actual automoc code from automoc
  1470. Remove the need to check for .h/.cxx during buildtime
  1471. Add the cmake module required currently for automoc
  1472. Add AUTOMOC to the add_library() command
  1473. Fix line lengths
  1474. Move code for parsing a cpp-file from the big loop to separate function
  1475. Initialize verbose based onb the env.var.
  1476. Color output when running moc
  1477. Add the generated automoc.cpp file to the cleaned files
  1478. Use cout instead of printf()
  1479. Remove trailing whitespace
  1480. Refactor SetupAutomocTarget() so it can be run after creating the target
  1481. Remove trailing whitespace
  1482. Move automoc processing from add_executable/library to cmGlobalGenerator
  1483. Nicer progress message for the automoc target
  1484. Add a test for automoc
  1485. Add documentation for AUTOMOC, add initialization via CMAKE_AUTOMOC
  1486. Fix logic which decides when to execute automoc test
  1487. Automoc.cmake is not needed anymore
  1488. Fix build: non-void function must return a value
  1489. Fix warnings
  1490. Fix bootstrap test with automoc
  1491. Only enable the automoc test after checking that Qt4 works
  1492. Fix build: use std::ios::out|ios::trunc instead of std::ios_base::out
  1493. Silence warning in automoc: use long instead of int
  1494. Fix automoc with VS builds: apply patch from Bill
  1495. Make clLocalGenerator::GetTargetFlags() public
  1496. Add find-package mode, which does nothing yet
  1497. Implement find-package mode of cmake
  1498. Replace cmake::GetScriptMode() with GetWorkingMode()
  1499. Fix copyright notice in new CMakeFindPackageMode.cmake
  1500. Better support for lib64 and Debian multiarch
  1501. Use the file-utility to test for 64bit if there is no /usr/lib64
  1502. Add a cmake.m4 for using cmake in autoconf projects instead of pkgconfig
  1503. Improve documentation for --find-package mode
  1504. Add a test for the new --find-package mode
  1505. Only run the test if we are using a makefile generator under UNIX
  1506. The makefile for the test was kindof wrong
  1507. Fix test on OpenBSD with BSD make
  1508. Rename helper macros print_compile_flags() to set_compile_flags_var()
  1509. Dont check for -isysroot and -mmacosx-version on OSX in --find-package mode
  1510. Disable any STATUS output in --find-package mode
  1511. Much improved test, should now be executed on all UNIXes
  1512. Make the --find-package test harder
  1513. Make the test harder by always having a space in the include dirs
  1514. Only enable the test when using GNU make
  1515. Fix line length
  1516. Use $(CXXFLAGS) and $(LDFLAGS) in the --find-package test Makefile
  1517. Require the current cmake version in --find-package mode
  1518. Fix --find-package mode on Cygwin, where enable_language(RC) is called
  1519. Alexey Ozeritsky (5):
  1520. fixed: search of acml libraries
  1521. gotoblas supported
  1522. ACML-GPU supported
  1523. ACML-GPU supportede
  1524. fixed: search of ATLAS library for C/C++-only projects
  1525. Andreas Schneider (6):
  1526. FindJava: Find missing java development executables.
  1527. Modules: Added CMake Java support.
  1528. Tests: Java tests should test UseJava.cmake
  1529. Tests: Check for the new Java exeutable variables.
  1530. Java: Use set_property/get_property for target variables.
  1531. Java: Fix documentation format and indentation
  1532. Arnaud Gelas (1):
  1533. Search for the ASPELL executable
  1534. Bill Hoffman (5):
  1535. Only pay for unused variable checking if it is on.
  1536. Initial support for Intel Fortran VS2010.
  1537. Fix custom commands in VS2010 Fortran projects using CFG_INTDIR and test.
  1538. Use MSBuild when devenv is not around, since VCExpress seems broken.
  1539. Fix for bug #12413, nmake did not handle targets with + in the name.
  1540. Brad King (13):
  1541. MinGW: Remove old workaround and use native echo (#12283)
  1542. Document caveat of custom commands in multiple targets (#12311)
  1543. cmSystemTools: Remove trailing whitespace
  1544. RunSingleCommand: Fix indentation
  1545. RunSingleCommand: Avoid assignment in condition
  1546. Documentation: WIN32 not defined on Cygwin (#12334)
  1547. KWSys: Simplify SystemTools::GetTime implementation (#12261)
  1548. KWSys: Avoid conversion warning in SystemTools::GetTime
  1549. KWSys: Fix using long long and __int64 with hash_(set|map)
  1550. KWSys: __int64 and long long may be same type in specialization
  1551. XL: Fix old VisualAge branding of Fortran compiler
  1552. Do not crash when an imported target depends on a missing target
  1553. Fix CHECK_(C|CXX)_COMPILER_FLAG for Clang (#12394)
  1554. Clinton Stimpson (5):
  1555. Add -DQT_NO_DEBUG if no build type is specified so Qt plugins will work.
  1556. Add qt4/QtCore to help find Qt headers when cross-compiling.
  1557. Qt4: Fix reference of undefined variable when detecting frameworks on Mac OS X
  1558. Remove C compiler requirement from FindQt4.cmake
  1559. CPack/NSIS: Fix reinstall and multiple install issues when using components.
  1560. David Cole (26):
  1561. Begin post-2.8.5 development
  1562. Fix Architecture test to work with Xcode 4
  1563. Fix BuildDepends test to work with Xcode 4
  1564. Base architecture choice logic on Xcode version
  1565. Use correct default multiple architecture values in test
  1566. Add use of EFFECTIVE_PLATFORM_NAME to generated Xcode projects.
  1567. Correct KWStyle line too long error
  1568. Add fail regex to detect supported warning flags correctly.
  1569. Add support for Visual Studio project-specific globals (#8707)
  1570. Fix machine-specific UpdateGIT test failures
  1571. Ensure libgmp-10.dll is in the PATH for CMakeTestAllGenerators
  1572. Watcom: Add -c flag to wlib calls (#12245)
  1573. Add Watcom support to InstallRequiredSystemLibraries (#11866)
  1574. Watcom: Use correct args for execute_process call (#11866)
  1575. CTest: print failed tests in index order (#11746)
  1576. Fix line too long style violation
  1577. Documentation: Fix comments in the source code (#10941)
  1578. Add more find_path locations for DCMTK header files (#12323)
  1579. VS9: Add include_directories to midl command lines
  1580. KWSys: Remove translation path for "/tmp_mnt/" (#10595)
  1581. VS10: Avoid unnecessary rebuilds for custom commands
  1582. QtAutomoc test: Pass QT_QMAKE_EXECUTABLE
  1583. QtAutomoc: Eliminate compiler warning
  1584. CheckSymbolExists: Use IMMEDIATE flag for configure_file (#11333)
  1585. Xcode: Suppress same-old warning again.
  1586. Xcode: Save object id values in CMakeCache.txt (#11690)
  1587. Johan Björk (5):
  1588. Xcode: Remove PREBINDING attribute for Xcode 4 and above
  1589. RunSingleCommand: Replace verbose boolean with enum
  1590. RunSingleCommand: Add a OUTPUT_NORMAL flag.
  1591. Xcode: Quote ',' in Xcode string values (#12259)
  1592. Xcode: Rearrange CMakeReRun to enable parallel builds
  1593. Matej Hribernik (2):
  1594. VS: Factor Find64BitTools out of Win64 generator to parent
  1595. Add VisualStudio 9 and 10 generators for Itanium platform
  1596. Modestas Vainius (1):
  1597. multiarch: Treat lib/<arch> as implicit link dir (#12326)
  1598. Oliver Buchtala (3):
  1599. Java: Create java_class_filelist only if it does't exist.
  1600. Java: Added some dependency magic to avoid recompilations.
  1601. Java: Create correct jar archive dependencies.
  1602. Rolf Eike Beer (2):
  1603. remove extra output message from FindJava.cmake
  1604. FindThreads: Try pthreads with no special option first (#11333)
  1605. Steven Velez (1):
  1606. VS10: Add SCC support
  1607. Todd Gamblin (2):
  1608. Try regular compiler when no MPI compiler.
  1609. Fix issues with removing try_compile input file.
  1610. Will Dicharry (1):
  1611. Added HDF5 high level Fortran bindings to available components.
  1612. Changes in CMake 2.8.5 (since 2.8.5-rc3)
  1613. --------------------------------------------
  1614. Brad King (1):
  1615. Revert "Add a new function SWIG_GET_WRAPPER_DEPENDENCIES to UseSWIG.cmake"
  1616. (this revert means that issue #4147 has been re-opened)
  1617. Changes in CMake 2.8.5-rc3 (since 2.8.5-rc2)
  1618. --------------------------------------------
  1619. Bill Hoffman (4):
  1620. Use devenv instead of msbuild for vs2010.
  1621. Revert "With very long file names, VS 2010 was unable to compile files."
  1622. Use relative paths for custom command inputs.
  1623. Look for VCExpress as a possible build tool as well as devenv.
  1624. Brad King (3):
  1625. KWSys: Recognize color TERM=screen-256color-bce (#12287)
  1626. find_library: Use lib->lib64 conversion in CXX-only projects (#12247,#12248)
  1627. libarchive: Install COPYING with CMake documentation
  1628. Christoph Höger (1):
  1629. FindJNI: Search in Fedora arch-specific JVM location (#12276)
  1630. Julien Malik (1):
  1631. FindSWIG: Use NAMES in find_program directives (#12280)
  1632. Modestas Vainius (1):
  1633. Documentation: Fix spelling / formatting errors (#12287)
  1634. Philip Lowman (3):
  1635. FindBoost: Fixes #12188
  1636. FindBoost: Also search for 1.46.1
  1637. Detect VS 2010 SP1, faster and more robust detection
  1638. Changes in CMake 2.8.5-rc2 (since 2.8.5-rc1)
  1639. --------------------------------------------
  1640. Bill Hoffman (6):
  1641. Fix a memory leak.
  1642. Fix for bug#10798. VS10 did not append -I flags with COMPILE_FLAGS prop.
  1643. Append and do not clobber CMAKE_CXX_FLAGS in the test.
  1644. Use bin tree for inclues to avoid -I with spaces in the path.
  1645. One more try. Use full path by default, and relative on broken compilers.
  1646. Fix for bug #11927, external project git clone step always runs vs10.
  1647. Brad King (9):
  1648. XL: Place Fortran modules with -qmoddir= flag (#12246)
  1649. Teach file(DOWNLOAD|UPLOAD) to timeout after inactivity
  1650. Xcode: Fix parallel build depends with universal binaries (#11844)
  1651. Fix style errors added by parent and grandparent
  1652. Use cascading-if for per-config test and install code
  1653. CTest: Report tests not run due to unknown configuration
  1654. GNU: Fix CMAKE_INCLUDE_SYSTEM_FLAG_<lang> value (#12258)
  1655. Teach find_(library|package) about Linux multiarch (#12037)
  1656. Test find_package multiarch support (#12037)
  1657. Clinton Stimpson (11):
  1658. BundleUtilities: Work w/ non .app exes on Mac (#12034)
  1659. BundleUtilities: Fix regex to extract dependents from ldd (#12034)
  1660. BundleUtilities: Fix test when using xcode (#12034)
  1661. BundleUtilities: Fix issues with custom target DEPENDS in test (#12034)
  1662. BundleUtilities: Disable running test on Windows unless using MSVC.
  1663. BundleUtilities: Run test on Windows if either MSVC or dumpbin was found.
  1664. BundleUtilities: Print reason for not loading module.so
  1665. BundleUtilities: Add rpath to loadable modules in test.
  1666. Revert "BundleUtilities: Run test on Windows if either MSVC or dumpbin was found."
  1667. Qt4: complete module dependencies in UseQt4.cmake
  1668. Add imported targets support for frameworks on Mac.
  1669. Daniel R. Gomez (1):
  1670. Fix plugin API for gcc 2.9-aix51-020209 (#12233)
  1671. David Cole (3):
  1672. BundleUtilities: Avoid a cryptic and unhelpful error message
  1673. BundleUtilities: Avoid test on Watcom dashboards (#12034)
  1674. CMake: eliminate use of cvs in the Release scripts
  1675. Eric NOULARD (2):
  1676. CPackRPM: Enhance documentation
  1677. Add some more Specs file tag handling.
  1678. Johan Björk (3):
  1679. CMake: Move tokenize to cmSystemTools
  1680. Xcode: Support multiple level nesting of XCode folders (#10039)
  1681. XCode: Support target folders on XCode.
  1682. Modestas Vainius (1):
  1683. multiarch: Set CMAKE_LIBRARY_ARCHITECTURE_REGEX for Linux|Hurd|kFreeBSD
  1684. Philip Lowman (3):
  1685. FindProtobuf: Better MSVC support, Searching for protobuf lite
  1686. Fix , to - in Copyright message so it passes CMake.ModuleNotices test
  1687. 10997: PROTOBUF_GENERATE_CPP now supports proto files outside current dir
  1688. Rolf Eike Beer (1):
  1689. CMake: Update documentation of STRING(SUBSTRING) for length -1 (#10740)
  1690. Sean McBride (1):
  1691. Fix XCode -> Xcode typos, notably in man page (#12231)
  1692. Tim Gallagher (1):
  1693. Modified the FindHDF5.cmake file to locate the Fortran bindings.
  1694. Will Dicharry (7):
  1695. HDF5 high level library is a find COMPONENT now.
  1696. Add logic for CMake built HDF5 install.
  1697. Use CMAKE_CURRENT_LIST_DIR to locate FindPackageHandleStandardArgs.
  1698. Use HDF5_FOUND to control autoconf and CMake built FindHDF5.
  1699. Fix for bug 11752, mixed debug and release libraries.
  1700. FindHDF5 ensures good link lines when libraries are duplicated.
  1701. Remove unnecessary mark_as_advanced from FindHDF5.
  1702. Zach Mullen (3):
  1703. Dynamic analysis test output should not be compressed.
  1704. We will actually compress memcheck output if the server supports it.
  1705. Fix type conversion warning
  1706. Changes in CMake 2.8.5-rc1 (since 2.8.4)
  1707. ----------------------------------------
  1708. Alex Neundorf (33):
  1709. Rework the way assembler is handled, use the C/CXX compiler by default
  1710. Make it possible to exlude external libs from dot files
  1711. GRAPHVIZ_IGNORE_TARGETS is now a list of regular expressions
  1712. Also generate dependers-graphviz files.
  1713. Fix XML escaping for the project() name in Eclipse projects (#11658)
  1714. Fix XML escaping for target names in Eclipse project files (#11658)
  1715. Add XML escaping for directory name in Eclipse projects (#11658)
  1716. Eclipse projects: created one linked resource for each subproject
  1717. Also add the SOURCES from add_custom_target() to CodeBlocks projects (#11736)
  1718. Add ASM support for the Intel compiler
  1719. Actually use CMAKE_ASM_COMPILER for asm, instead of CMAKE_C_COMPILER
  1720. Add support for ASM for the SunPro compiler
  1721. Add suport for ASM for the IBM XL compiler
  1722. Add support for ASm for the HP compiler.
  1723. Set the HP asm file suffix
  1724. Change the default rules so they fit better to the new ASM handling
  1725. Fix the default CMAKE_ASM_COMPILE_OBJECT, make XL-ASM use it
  1726. Add assemble- and preprocess commands for HP
  1727. The Assembler test now tests ASM for GNU, Intel, HP, XL and SunPro
  1728. Use a regexp instead a lot of ORs for checking the compiler ID
  1729. Only try assembler support for Makefile-based generators
  1730. Fix bad comparison in the detect assembler-code
  1731. It's ELSEIF(), not ELSIF()
  1732. Add temporary debug output for compiler ID detection for ASM
  1733. Add more regex for gcc, always print the ASM compiler ID
  1734. Add support for the Intel compiler used for ASM under Windows
  1735. -use CMAKE_C_FLAGS when generating the assembler file
  1736. -only enable the asm test for the Intel compiler if we are under UNIX
  1737. Remove trailing whitespace
  1738. Make use_mangled_mesa() available in cmake script mode (#11926)
  1739. Fix parsing include dirs and builtin macros for CXX-only projects
  1740. Don't skip the last builtin include dir for the Eclipse project file
  1741. -fix VirtualFolders in Eclipse under Windows
  1742. Alexey Ozeritsky (1):
  1743. ACML search improvement
  1744. Andreas Schneider (6):
  1745. Modules: Added CheckPrototypeDefinition module.
  1746. Tests: Added test for check_prototype_definition.
  1747. FindOpenSSL: Added support for pkg-config.
  1748. FindOpenSSL: We should only use hints to find OpenSSL.
  1749. FindOpenSSL: Fixed crypto und ssl variable names.
  1750. FindOpenSSL: Use find_package_handle_standard_args for version check.
  1751. Bill Hoffman (2):
  1752. With very long file names, VS 2010 was unable to compile files.
  1753. Fix for bug where VS2010 did not use .obj files as part of the build.
  1754. Brad King (94):
  1755. Reject directory names containing '=' (#11689)
  1756. FindQt4: Include builtin FindPackageHandleStandardArgs directly
  1757. Handle trailing slashes on add_custom_command DEPENDS
  1758. Handle relative WORKING_DIRECTORY in add_custom_(command|target)
  1759. Pass -o after -c for Fortran to avoid mpif77 ordering bug
  1760. Add link flag table entries for VS 7,8,9
  1761. VS: Create a Fortran DLL's import library directory
  1762. Fix linker flag initialization from LDFLAGS (#11840)
  1763. ccmake: Remove extra parens around comparison
  1764. Avoid direct use of std::stringstream
  1765. Honor module .def files with MinGW tools (#9997)
  1766. CTest: Update Git submodules with --recursive
  1767. libarchive: Remove unused build/windows directory (#11885)
  1768. Pass .def files directly to MinGW tools (#9997)
  1769. Fix Fortran test .def file symbol mangling
  1770. Require at least CMake 2.6.3 to build current CMake
  1771. GNUInstallDirs: Simplify and clarify documentation
  1772. KWSys: Require at least CMake 2.6.3
  1773. Remove unused CMAKE_BACKWARDS_COMPATIBILITY mark
  1774. Factor AIX and XL compiler flags into common module
  1775. Move RPATH flags to AIX per-compiler information files
  1776. Initialize ASM rpath flags for executables with those for shared libs
  1777. Add ASM platform information for XL compiler on AIX
  1778. Factor HP compiler flags into per-platform/per-compiler files
  1779. Add ASM platform information for HP compiler on HP
  1780. Add target property LINK_SEARCH_START_STATIC to aid static linking
  1781. Test static linking with LINK_SEARCH_START_STATIC
  1782. Fix Assembler test to parse C flags string before using
  1783. Teach Assembler test to generate main.s at build time
  1784. Do not bother enabling C++ in Assembler test
  1785. The link interface of MODULE libraries is empty (#11945)
  1786. CTest: Do not fail with submodules and Git < 1.6.5.0
  1787. Remove trailing whitespace
  1788. Add parens in cmTarget::ComputeLinkInterface logic
  1789. Validate custom command arguments (#11963)
  1790. Factor old-style -D flags out from -I flag generation
  1791. FindMPI: Fix documentation formatting
  1792. Generate target-wide flags before individual build rules
  1793. Optionally pass include directories with response files
  1794. Pass include directories with response files to GNU on Windows
  1795. Enable Java test more carefully on Apple
  1796. Disable Java test with Xcode generator
  1797. Allow '.' in target names in generator expressions (#12002)
  1798. GNUInstallDirs: Propagate DATAROOTDIR changes to dependent defaults
  1799. KWSys: Do not trust EXECUTABLE_OUTPUT_PATH for ProcessFwd9x encoding
  1800. Refine unused cache variable warning
  1801. Fix unused cache warning after multiple configure iterations
  1802. FortranCInterface: Fix mangling detection with Cray Fortran >= 7.3.2
  1803. Fix typo in include_directories documentation (#12020)
  1804. KWSys: Recognize rxvt-unicode-256color terminal (#12013)
  1805. Normalize slashes of add_custom_(command|target) DEPENDS (#11973)
  1806. COMP: Fix build against non-standard outside libarchive
  1807. Modules: Add comment and copyright notice validation to readme.txt
  1808. cmArchiveWrite: Clear xattr and acl from entries (#11958)
  1809. find_package: Forward component list for recursive calls in modules
  1810. XL: Set C++ and Fortran flags consistently with C
  1811. XL: Consolidate compiler flag information
  1812. XL: Avoid copying archives into shared libraries that link them
  1813. VS10: Fix working directory of consecutive custom commands (#11938)
  1814. Fix working drive of make rules on Windows
  1815. Change working drive only in MinGW Makefiles
  1816. VS: Use setlocal/endlocal only in VS 10 custom commands
  1817. VS10: Fix exit code of custom commands with setlocal/endlocal (#11938)
  1818. KWSys: Remove unused CheckCXXSourceRuns cmake module
  1819. find_package: Rename implementation of user package registry
  1820. find_package: Cleanup user package registry less aggressively
  1821. find_package: Document user package registry locations
  1822. find_package: Search a "system package registry"
  1823. find_package: Check both 32-bit and 64-bit registry views
  1824. find_package: Test system package registry when possible
  1825. find_package: Fix system package registry test path conversion
  1826. FindITK: Use passthru find_package config mode for messages
  1827. OpenBSD: Use 'arch -s' for host processor (#12143)
  1828. Fix case typo in CMAKE_BUILD_TYPE docs (#12148)
  1829. KWSys: Fix leaked FILE in EncodeExecutable error case
  1830. ENH: Fix Intel 12 plugin project generation for VS < 10
  1831. Revert "Honor RULE_MESSAGES property for build target messages" (#12190)
  1832. Fix signed/unsigned comparison in EscapeJSON
  1833. Fix run_compile_commands build on Apple GCC 3.3
  1834. Make std::map usage more portable in language=>flags/defines maps
  1835. Provide std::map<>::at for use in run_compile_commands
  1836. run_compile_commands: Avoid shadow in std::map<>::at workaround
  1837. Improve string(RANDOM) default seed
  1838. run_compile_commands: Avoid extra stl vector conversion
  1839. VS 6: Define _WIN32_WINNT to load wincrypt.h correctly
  1840. run_compile_commands: Cast istream::get() result to char
  1841. Fix CompileCommandOutput test for Make tools not supporting spaces
  1842. Explicitly cast time value in cmSystemTools::RandomSeed
  1843. Fix CompileCommandOutput test build on Windows
  1844. Add Absoft Fortran compiler id and basic flags
  1845. Absoft: Detect implicit link libraries on Linux and Mac
  1846. Absoft: Enable FortranCInterface check in Fortran test
  1847. Document status of output_required_files command (#12214)
  1848. Fix forced-seed argument type in string(RANDOM)
  1849. Clement Creusot (2):
  1850. Add new module Armadillo
  1851. Corrected copyright format in FindArmadillo.cmake
  1852. Clinton Stimpson (8):
  1853. Change to use fphsa to check required variables and version.
  1854. Fix grouping bug where "Ungrouped Entries" showed up as a child.
  1855. When checking find_package() components, special case qtmain.
  1856. Fix issues with find_path() for QtCore include dir on Mac. Fixes 11868.
  1857. Fix regression in 43cb9b8.
  1858. Speed up creation of parameters file for moc custom command.
  1859. Combine component packaging methods into an enum.
  1860. Add component support to DragNDrop generator.
  1861. David Cole (34):
  1862. ExternalProject Test: Increase test timeout value
  1863. CFBundle Test: Add PATHS for finding Rez (#11295)
  1864. CTest: Mark DART_TESTING_TIMEOUT as advanced (#10150)
  1865. Xcode: Allow override of CMAKE_CONFIGURATION_TYPES (#8914)
  1866. Tests: Eliminate unnecessary files and variables.
  1867. VS9: Map enable/disable PREfast flags (#10638)
  1868. Strip trailing space from xcode-select output (#10723)
  1869. CTest: Add alias for make test target (#4564)
  1870. Add CMAKE_SCRIPT_MODE_FILE variable (#2828)
  1871. Add CMAKE_ARGC and CMAKE_ARGV0..N-1 variables (#2828)
  1872. Fix KWStyle line-too-long complaint (#2828)
  1873. Documentation: Sync two differing copies of -E docs (#10446)
  1874. Clarify list subcommand documentation (#8154)
  1875. VS2010: Fixed GenerateManifest flag (#10704)
  1876. VS: Only use /MANIFEST if hasManifest is true (#11216)
  1877. Make file DOWNLOAD less noisy (#11761)
  1878. Begin post-2.8.4 development
  1879. Use stable_sort to preserve test order (#11877)
  1880. Implement file(UPLOAD (#11286)
  1881. Fix KWStyle line too long error (#11286)
  1882. ExternalProject: Extract file names from more urls
  1883. InstallRequiredSystemLibraries: Read reg values with get_filename_component
  1884. Add correct module notice header.
  1885. If getconf returns empty output, try cpuinfo. (#11302)
  1886. Add ProcessorCount support for QNX via pidin. (#11302)
  1887. Compare ProcessorCount to SystemInformation count. (#11302)
  1888. ProcessorCount test: more output, do not fail. (#11302)
  1889. ProcessorCount: Add support for remaining platforms (#11302)
  1890. ProcessorCount: Test fails if count is 0 (#11302)
  1891. ProcessorCount: Use ERROR_QUIET with execute_process (#11302)
  1892. ExternalProject: Add SVN_TRUST_CERT argument
  1893. CMake: Clarify the --debug-trycompile help text
  1894. ExternalProject: Always use --non-interactive with svn
  1895. VS10: Write header-only files in correct xml element (#11925)
  1896. Eric NOULARD (25):
  1897. CPackRPM honors all the different ways of packaging components
  1898. CPackRPM fix IRIX compiler warning (variable never used)
  1899. CPack remove "-ALL" suffix for ALL-IN-ONE packages
  1900. CPack Authorize DISPLAY_NAME usage in component package
  1901. CPack fix KWStyle warning
  1902. CPack remove previously CPack generated files (if any) before running CPack
  1903. CPackRPM Replace space in some CPACK_ vars (Fix bug 9932)
  1904. CPackRPM activate CPackRPM test on Linux systems where rpmbuild is found
  1905. CPackArchive package all components specified in CPACK_COMPONENTS_ALL
  1906. CPack more robust way to collect files belonging to a component
  1907. CPackRPM do not run test if build dir contains space
  1908. CPack fix compile error on VS70 and avoid KWStyle warnings
  1909. CPackRPM add more trace output in order to help failing diagnostics
  1910. CPackRPM even more trace in debug mode or in case of failure
  1911. CPackRPM non matching ENDIF
  1912. CPack try to please SUSE 64 bits and install lib in lib64 and not lib.
  1913. Remove debbuging typo
  1914. CPack fix CPackDeb crash when CPackDeb.cmake ends with a FATAL_ERROR
  1915. CPack fix #11930 and simplifies component packaging options
  1916. Fix #11964 Handle lib64 library on Linux
  1917. Fix KWStyle warnings
  1918. Split CPack.cmake in more manageable parts
  1919. Fix KWStyle warnings
  1920. CPackRPM Fix #12096: handle absolute install path with component install
  1921. CPack make RPM work on AIX. fix #0012183 merge patch from Pasi Valminen
  1922. James Bigler (1):
  1923. Add FloatingPointModel to the list of known VS7 generator flags.
  1924. Johan Björk (1):
  1925. XCode: Also qoute [] as needed to set build-configurations.
  1926. Kovarththanan Rajaratnam (1):
  1927. Documentation: document platform specific -E commands (#10446)
  1928. M. Konrad (1):
  1929. CPackDeb add Component Support to DEB generator fix #0011655
  1930. Manuel Klimek (6):
  1931. refactor flags and defines
  1932. cache flags and defines
  1933. implement cxx command output
  1934. make compile command output optional
  1935. Adds a test for the compile command line output.
  1936. Only offer the compile command output feature on unix systems
  1937. Marco Craveiro (1):
  1938. CTest: Use the gcov --preserve-paths flag (#11717)
  1939. Markus Rathgeb (1):
  1940. When cross compiling, don't double-root paths when using find_*.
  1941. Martin Konrad (2):
  1942. CPackDeb: Fix #12006 broken package names
  1943. CPackDeb: Handle dirs for CONTROL_EXTRA correctly when packaging components
  1944. Mathieu Malaterre (8):
  1945. This commit fixes bug #0010316
  1946. Add a new function SWIG_GET_WRAPPER_DEPENDENCIES to UseSWIG.cmake
  1947. Add support for Java on HP
  1948. Add support for java on fedora
  1949. UseSWIG.cmake does not expand $(OutDir)
  1950. Add support for new swig 2.0 application
  1951. UseSWIG.cmake did not support multiple modules and parallel builds
  1952. Add support for FindJava on HP-UX and alpha
  1953. Michael Wild (1):
  1954. Add module ProcessorCount.cmake (#11302)
  1955. Modestas Vainius (1):
  1956. Documentation: Fix a few typos (#11883)
  1957. Nikita Krupen'ko (1):
  1958. Add GNUInstallDirs module to define GNU layout (#3976)
  1959. Philip Lowman (1):
  1960. VS7/8/9: Map whole program optimization flags (#10263)
  1961. Richard Bateman (1):
  1962. Add support for CFBundle targets on the Mac (#11295)
  1963. Rolf Eike Beer (2):
  1964. CTest: catch warning output of Apache Maven
  1965. FindZLIB: print library instead of include directory
  1966. Sean McBride (1):
  1967. Removed most usage of Carbon in favour of CoreFoundation
  1968. Sebastian Herbst (2):
  1969. VS8/9: Add flag map entries for /Zc:wchar_t (#10397)
  1970. VS7/8/9: Add flag map for string pooling option (#10397)
  1971. Tim Hütz (1):
  1972. Add a string(FIND) sub-command (#11795)
  1973. Todd Gamblin (2):
  1974. FindMPI: Handle multiple languages
  1975. Added backward compatibility for input as well as output vars.
  1976. Wesley Turner (1):
  1977. Ensure executable files have executable permissions.
  1978. Zach Mullen (5):
  1979. Implement ctest_upload command
  1980. Change 'Files' tag to 'Upload' in Upload.xml
  1981. Don't tar/gz ctest_upload() files
  1982. Add the FILES keyword to ctest_upload command
  1983. cmCTestUploadCommand::CheckArgumentKeyword should return false if not FILES
  1984. Changes in CMake 2.8.4 (since 2.8.4-rc2)
  1985. ----------------------------------------
  1986. Alex Neundorf (1):
  1987. Fix crash in GraphVizWriter when GRAPHVIZ_TARGET_IGNORE_REGEX is used
  1988. Andreas Schneider (1):
  1989. FindPerlLibs: Add notice of copyright
  1990. Brad King (3):
  1991. libarchive: Define major/minor/makedev only where needed (#11648)
  1992. libarchive: Use OpenSSL only if CMAKE_USE_OPENSSL (#11815)
  1993. Fix documentation of MSVC_VERSION (#11833)
  1994. David Cole (1):
  1995. Silence the may be used uninitialized warnings: initialize stuff.
  1996. Eric NOULARD (2):
  1997. CPack Tests the different ways of packaging components
  1998. Avoid foreach IN LISTS syntax which is not supported by CMake 2.6
  1999. Changes in CMake 2.8.4-rc2 (since 2.8.4-rc1)
  2000. --------------------------------------------
  2001. Alex Neundorf (3):
  2002. Make cmake build again with cmake < 2.6.3
  2003. Strip trailing whitespace.
  2004. Fix parsing of compiler name with a version number
  2005. Ben Boeckel (86):
  2006. ... 86 commit messages summarized as:
  2007. Fix ADD_TEST regression when WORKING_DIRECTORY not given
  2008. Add new "strict-mode" CMake variable checking
  2009. Activate / avoid using new command line arguments:
  2010. --warn-uninitialized
  2011. --warn-unused-vars
  2012. --no-warn-unused-cli
  2013. --check-system-vars
  2014. Bill Hoffman (3):
  2015. For macros make sure the FilePath points to a valid pointer in the args.
  2016. Add a warning when variables are used uninitialized.
  2017. Make --strict-mode option, and integrate with cmake-gui
  2018. Brad King (34):
  2019. bootstrap: Granular system library selection (#11431)
  2020. bootstrap: Clarify --init flag documentation (#11431)
  2021. bootstrap: --verbose implies verbose Makefiles (#11708)
  2022. Combine duplicate COMPILE_DEFINITIONS disclaimer
  2023. Document COMPILE_DEFINITIONS known limitations (#11660, #11712)
  2024. Document try_compile behavior more clearly (#11688)
  2025. Document Check(C|CXX)SourceCompiles behavior more clearly (#11688)
  2026. Fix get_(cmake|test)_property documentation (#11703)
  2027. Reference get_property() from old get_*_property() commands
  2028. Replace misleading example in the if() documentation (#10773)
  2029. Clarify auto-dereference cases in if() command (#11701)
  2030. Document CheckFunctionExists more clearly (#10044)
  2031. Document CheckSymbolExists more clearly (#11685)
  2032. Update CheckSymbolExists copyright year
  2033. Report directory with missing source file (#11677)
  2034. Test that missing source mentions directory (#11677)
  2035. Teach Simple_Mingw_Linux2Win test to use windres
  2036. Disable SubDirSpaces parens with GNU Make 3.82 (#11654)
  2037. libarchive: Fix major() check for LSB 4.0 (#11648)
  2038. Xcode: Make generation depend on all input directories
  2039. Recognize SCO UnixWare C/C++ compilers (#11700)
  2040. Factor SCO compiler info out of platform file (#11700)
  2041. Honor CMAKE_TRY_COMPILE_CONFIGURATION in Makefile generators (#10809)
  2042. Document CMAKE_TRY_COMPILE_CONFIGURATION variable
  2043. Honor VS_SCC_* properties in Fortran targets (#10237)
  2044. Normalize slashes in scanned #include lines (#10281)
  2045. Improve try_compile and try_run error messages
  2046. Use shortest extension to verify try_compile language (#11731)
  2047. Modules: Include builtin FindPackageHandleStandardArgs directly
  2048. Fix relative CMAKE_USER_MAKE_RULES_OVERRIDE (#11725)
  2049. Clarify CMAKE_USER_MAKE_RULES_OVERRIDE documentation (#11724)
  2050. Always place try_compile executables predictably (#11724)
  2051. try_compile: Allow only languages loaded in caller (#11469)
  2052. Fix ArgumentExpansion test expected results
  2053. Clinton Stimpson (1):
  2054. Replace exec_program with execute_process for qmake queries.
  2055. David Cole (16):
  2056. Update script with new machine name
  2057. VS10: Fix problems with InstallRequiredSystemLibraries.
  2058. Add CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS_NO_WARNINGS variable
  2059. Add CPACK_NSIS_INSTALL_ROOT for CMake's own installer (#9148)
  2060. Xcode: Disable implicit make rules in custom rules makefiles.
  2061. Add freeglut as library name (#10031)
  2062. Add new names for PNG and ZLIB libraries
  2063. Avoid exceptions when ccmake terminal window is too small (#11668)
  2064. VS10: Load projects with obj "source" files (#11147)
  2065. VS10: Enable using devenv as CMAKE_MAKE_PROGRAM (#11459)
  2066. Xcode: Fix crash: avoid strlen call on NULL char *
  2067. CTestTest2: Avoid running purify unless requested
  2068. VS10: Escape double quote chars in defines for rc files (#11695)
  2069. Fix line too long KWStyle issue (#11695)
  2070. Avoid space in rc /D values for VS6 and Cygwin (#11695)
  2071. VSResource: Avoid windres /D with quoted spaces (#11695)
  2072. Marcus D. Hanwell (1):
  2073. Bug #11715 - generate header in the build tree.
  2074. Nicolas Despres (1):
  2075. bootstrap: Add --enable-ccache option (#11707)
  2076. Changes in CMake 2.8.4-rc1 (since 2.8.3)
  2077. ----------------------------------------
  2078. Alex Neundorf (32):
  2079. Add support for nasm assembler, patch by Peter Collingbourne (see #10069)
  2080. Improve misleading comments.
  2081. Add missing copyright headers
  2082. We already have 2010, fix copyright year.
  2083. Make FindBISON work properly with non-C locales (#11326)
  2084. Add support for yasm, a nasm compatible assembler
  2085. Use CMAKE_ASM_NASM_FLAGS for nasm instead of FLAGS
  2086. Remove trailing whitespace and minor formatting changes for the dot-code
  2087. Move the code for collecting targets and libraries into separate functions
  2088. Properly insert all targets, also those which don't link to anything.
  2089. Generate separate dot files for each target, and a big one with everything.
  2090. Move the code for generating dot-files into separate class cmGraphVizWriter
  2091. Fix #11421: FindQt3.cmake doesn't honor the REQUIRED keyword
  2092. Remove trailing whitespace
  2093. Don't enforce VERBOSE makefiles for the CodeBlocks generator
  2094. Remove the "early alpha stage" comments about Eclipse and C::B
  2095. Don't disable colors in the CodeBlocks generator and minor cleanup.
  2096. Some more fixes for nasm support, from Etienne (#10069)
  2097. Enable/disable generating graphs depending on the target type
  2098. Use std::cout instead of fprintf
  2099. Collect targets and libs on demand instead of in the ctor
  2100. Exclude targets from the graphviz file based on a regex
  2101. Include CMakeDetermineCompilerId in CMakeDetermineASMCompiler.cmake (#11467)
  2102. Fix typos in the doc
  2103. Add cache var CMAKE_ECLIPSE_MAKE_ARGUMENTS when using the Eclipse generator
  2104. Add ECLIPSE_CDT4_GENERATE_SOURCE_PROJECT as a ADVANCED cache variable (#9631)
  2105. Fix crash in Eclipse generator with empty project (#11616)
  2106. Fix indentation in cmPolicies::ApplyPolicyVersion()
  2107. Remove trailing whitespace
  2108. Prefer files from CMAKE_ROOT when including from CMAKE_ROOT
  2109. Improve documentation and messages for the new CMP0017
  2110. Remove usage of CMAKE_CURRENT_LIST_DIR now that we have CMP0017
  2111. Alexey Ozeritsky (5):
  2112. FindBLAS works in C/C++ projects without Fortran
  2113. ACML find fixes (issue 0011219)
  2114. find ACML fixes
  2115. fix for Fortran-only projects
  2116. FindLAPACK works with C/C++ only projects (issue 0009976)
  2117. Andrius Štikonas (1):
  2118. Modules: Fix spelling 'becase' -> 'because'.
  2119. Ben Boeckel (25):
  2120. Fix parsing of cache variables without a type
  2121. Use cmCacheManager to load entries from the cache
  2122. Support manual cache entries
  2123. Condense parsing of cache entries
  2124. Use FPHSA in FindOpenGL
  2125. Ignore strerror_r since CMake isn't threaded
  2126. Use _POLL_EMUL_H_ instead of HAVE_POLL_FINE
  2127. Rename WorkingDirectory test
  2128. Add WORKING_DIRECTORY argument to add_test
  2129. Add tests for WORKING_DIRECTORY arg to add_test
  2130. Rename the project to match the test
  2131. Fix header includes for C++ and Visual Studio
  2132. Add ctype.h include for toupper()
  2133. Flip slashes around on Windows
  2134. Use --><-- markers to denote the path
  2135. Simplify the _default_cwd derivation
  2136. Only test the default cwd with Makefiles
  2137. Group adding tests with its properties
  2138. Fully specify the path to old-signature add_test
  2139. Use iostream to make Borland happy
  2140. Check for poll when looking for _POLL_EMUL_H_
  2141. Toss out strerror_r macros
  2142. Fix missed _POLL_EMUL_H_ and HAVE_POLL combo
  2143. Make TestsWorkingDirectory test a C file
  2144. Pass the expected value as the first argument
  2145. Bill Hoffman (17):
  2146. Fixes for the OSF operating system build.
  2147. Add a fix for the inline keyword on the osf os.
  2148. Add a "Contract" test for VTK. The test downloads and builds VTK.
  2149. Fix contract test so it is not hard coded to the vtk542 test.
  2150. Fix incremental linking for VS2010 with nmake or make.
  2151. Change cpack run and verify script to work with multi-config generators.
  2152. Fix vs2010 project generation error when HEADER_FILE_ONLY is set.
  2153. Add more documentation for LANGUAGE property.
  2154. Add flags to resource builds on vs 2010 with a test.
  2155. Disable incremental testing for this test, it crashes vs9 linker.
  2156. Only run resource test for MSVC compilers.
  2157. Add support for windows resources with mingw/msys.
  2158. Add support for windres to cygwin.
  2159. Add testing for windows resources for mingw/msys/cygwin and remove for watcom.
  2160. Enable resource building with the intel compiler on windows.
  2161. Add support for source files in custom targets for VS 10 (Bug#11330).
  2162. Change the nightly tests to build from the nightly branch and not next.
  2163. Brad King (90):
  2164. Store direct dependencies in solutions for VS >= 8
  2165. BUG: Fix compiler flag test for non-English MSVC (#11336)
  2166. Document custom command behavior without DEPENDS (#11407)
  2167. Consolidate duplicate link rule make dependency code
  2168. Define LINK_DEPENDS target property (#11406)
  2169. KWSys: Teach SystemInformation about WinXP Pro and Win7
  2170. Fix Intel .vfproj SubSystem attribute values
  2171. Set Intel .vfproj RuntimeLibrary attribute
  2172. Create Fortran info variables for .mod behavior
  2173. Teach CMake about Cray C, C++, and Fortran compilers
  2174. Speedup find_* commands (#11412)
  2175. Prefer non-empty prefixes when matching lib names (#11468)
  2176. Record edge type in global dependency graph
  2177. Use modern global dependency graph for VS < 8 deps
  2178. Allow add_dependencies() on imported targets (#10395)
  2179. Pass Mac linker flag through PGI compiler using "-Wl,"
  2180. Modernize FindITK module (#11494)
  2181. Fix find_* argument parsing crash (#11513)
  2182. Skip VS <= 7.1 dependency analysis for VS >= 8
  2183. Enable 64-bit tools with VS 2010 Express (#9981, #10722)
  2184. KWSys: Associate installed library with an EXPORT
  2185. Fix try_compile RemoveFile anti-virus loop (#11503)
  2186. Fix Fortran .mod timestamps with Cray compiler
  2187. Make Fortran $obj.provides.build targets not .PHONY
  2188. Honor custom command dependencies on imported targets (#10395)
  2189. Improve signature of cmLocalGenerator::GetRealDependency
  2190. Skip file-level dependencies on custom targets (#11332)
  2191. Simplify VS generator ConstructScript interface
  2192. Factor out common custom command generator
  2193. Remove cmLocalGenerator::GetRealLocation
  2194. KWSys: Remove realpath from SystemTools::GetPath (#10335)
  2195. Fix parallel "make install" of CMake itself
  2196. CTest: Fix ctest_sleep documentation (#11554)
  2197. Fix soname in cross-compiled targets with Mac host (#11547)
  2198. Detect object files in implicit link information
  2199. Allow Fortran platform files to set empty values
  2200. Recognize the NAG Fortran compiler
  2201. Add NAG Fortran compiler information files
  2202. FortranCInterface: Recognize NAG Fortran module symbols
  2203. Remove unused variable "rootdir" in VS generators
  2204. Avoid msbuild idiosyncrasy that builds multiple configs (#11594)
  2205. Remove unused parameter "root" in some VS generator methods
  2206. Fix dependency tracing of INSTALL and PACKAGE (#11598)
  2207. Remove unused GLOBAL_TARGET generation code
  2208. KWSys: Use EXPORT name only if installing library
  2209. Write full version into try_compile CMakeLists
  2210. KWSys: Do not mangle UNC paths in ConvertToUnixOutputPath (#10206)
  2211. Normalize add_custom_command OUTPUT names (#10485)
  2212. Make link rule depend on ".def" file (#11014)
  2213. Document target_link_libraries target scope (#11058)
  2214. Record backtrace in cmCustomCommand
  2215. Factor generator expression docs out of add_test
  2216. Factor per-config sample targets out of 'Testing' test
  2217. Optionally suppress errors in cmGeneratorExpression
  2218. Record set of targets used in cmGeneratorExpression
  2219. Introduce "generator expression" syntax to custom commands (#11209)
  2220. CTest: Fix test DEPEND cycle detection
  2221. Make Intel defines consistent with MSVC on Windows (#9904)
  2222. CTest: Fix line-too-long style in DEPEND cycle error
  2223. Detect Fortran target architecture on Windows
  2224. Modernize Intel compiler info on Windows
  2225. Remove unused old-style g++ info file
  2226. CheckCCompilerFlag: Strict signature of 'main' (#11615)
  2227. Warn in find(GLOB) docs about bad use case (#11617)
  2228. Remove call to SystemTools::GetMaximumFilePathLength
  2229. Xcode: Generate native 3.2 projects
  2230. Declare min CMake version in --system-information project
  2231. Cygwin: Fix tests to check CYGWIN instead of WIN32
  2232. Cygwin: Do not define 'WIN32' (#10122)
  2233. Revert "Remove unused parameter "root" in some VS generator methods"
  2234. Revert "Avoid msbuild idiosyncrasy that builds multiple configs" (#11633)
  2235. Avoid msbuild ".\" idiosyncrasy that builds multiple configs (#11594)
  2236. Mark CustomCommand test perconfig.out as SYMBOLIC
  2237. CTest: Factor out duplicate Git author/committer code
  2238. KWSys: Avoid buffer overflow in SystemInformation (#11018)
  2239. Fix sentence break in add_test documentation
  2240. Pass Mac linker flag through all compilers with -Wl,
  2241. KWSys: Avoid passing string literal as char*
  2242. Avoid passing string literal to char* type
  2243. Fix constness in compiler id detection
  2244. Build enable_language command during bootstrap
  2245. Map multiple /FI flags for VS < 10 (#11649)
  2246. KWSys: Remove useless include <sys/procfs.h> (#11648)
  2247. Allow users to specify defaults for unset policies
  2248. ccmake: Use LSB 4.0 curses API conditionally
  2249. CTest: Do not truncate UTF-8 test output too early (#10656)
  2250. ccmake: Use LSB 4.0 getmaxyx conditionally
  2251. Allow platform files to set large archive rules (#11674)
  2252. Document reading LOCATION early as undefined (#11671)
  2253. Document reading LOCATION_<CONFIG> early as undefined (#11671)
  2254. Brian Bassett (1):
  2255. VS: Fix linking of Fortran-only DLL projects (#10803)
  2256. Campbell Barton (1):
  2257. Honor RULE_MESSAGES property for build target messages
  2258. Chuck Atkins (1):
  2259. CTest: Teach launcher to ignore empty/no-op make commands
  2260. Clinton Stimpson (11):
  2261. Fix regex for moc includes when looking for frameworks.
  2262. cmake-gui: use BundleUtilities in place of custom script.
  2263. Fix regression in 2dae2f1 which added find of Qt imports dir.
  2264. Force cmake to run again when qrc dependency scanning needs to happen.
  2265. Fix regression to allow specifying a CMakeCache.txt file on the command line.
  2266. BundleUtilities: only do rpath strip on copied prerequisites.
  2267. Fix build issues cross compiling with static Qt.
  2268. CTest: multiple ctest_test calls w/LABEL regexs (#11487)
  2269. cmake-gui: always enable generate button.
  2270. allow absolute paths for dbus interface.
  2271. Add support for using static/dynamic Qt plugins.
  2272. Craig Scott (1):
  2273. ccmake: Port for LSB 4.0 (#11648)
  2274. Dave Abrahams (1):
  2275. FindPerlLibs: Fix for Mac locally applied patches
  2276. David Cole (31):
  2277. Add a contract test for building the CSE.
  2278. Enable overriding contract test timeout values.
  2279. Update tag in the Contracts/cse-snapshot test.
  2280. Make HTML test fail when --nonet arg is not available.
  2281. Begin post-2.8.3 development
  2282. No CMake.HTML test if xmllint has no --nonet.
  2283. Suppress "loop was vectorized" "warnings."
  2284. Add contract test for Trilinos 10.6.1 snapshot.
  2285. Honor FOLDER on include_external_msproject targets (#11436)
  2286. Correct misspelling in error message text.
  2287. BundleUtilities: error if fixup_bundle_item called on non-embedded item
  2288. VS10: stop build on custom command error (#11533)
  2289. CPack: look for makensis in the PATH (#8210)
  2290. VS10: avoid warning, no nologo when verbose (#10587)
  2291. Use m prefix in shorttag value to indicate "md5 of tarball"
  2292. Establish pass criteria for the Trilinos contract test.
  2293. Suppress erroneous warnings from Intel compiler
  2294. Avoid running CMake.Install test simultaneously with other tests
  2295. VS10: Finish Midl support (#11461)
  2296. Prohibit space in HOME value for VSMidl test.
  2297. KWSys: Fix CPU speed calculations (#9963)
  2298. KWSys: Retrieve QNX specific memory and processor info (#11329)
  2299. Improve build error detection.
  2300. VSMidl Test: Use correct include_directories with VS6 (#11461)
  2301. Add PATH_SUFFIXES for finding git.
  2302. ExternalProject: Avoid bleed-through output when logging.
  2303. Fix WOW64 registry mode on Windows 2000 (#10759)
  2304. ExternalProject: Replace location tags in CMAKE_CACHE_ARGS
  2305. CPack: Detect more URLs in CPACK_NSIS_MENU_LINKS (#10644)
  2306. KWSys: Fix WOW64 registry mode on Windows 2000 (#10759)
  2307. CPack: Add CPACK_NSIS_INSTALL_ROOT variable (#9148)
  2308. Eric NOULARD (13):
  2309. CPackRPM add basic component support to CPackRPM
  2310. CPack fix kwstyle breakage and make CPackRPM backward compatible
  2311. CPack backward compatibility fix 2.8.3-2.8.2 (bug 11452)
  2312. CPack Fix KWStyle error
  2313. CPack Honor CPACK_MONOLITHIC_INSTALL at CPack time too
  2314. CPack use IsOn when it's better than IsSet
  2315. CPackRPM fix bug 0011595 : Can't generate RPMs (on FC11...)
  2316. CPack new tests for component install
  2317. CPack Default component test for ZIP should be OK
  2318. CPackTest spit out more output in case of failure
  2319. Arrange output in a better way
  2320. Precise the project config type when invoking cpack
  2321. CPackSTGZ quote here-doc, fix bug10518
  2322. Kai Wasserbäch (1):
  2323. FindTCL: Fix TCL and TK version variable references (#11528)
  2324. Marcus D. Hanwell (5):
  2325. BUG 11451 - pass CMAKE_EXTRA_GENERATOR down.
  2326. Added CMAKE_CACHE_ARGS to ExternalProject.
  2327. Escape file write expansion, and build up lists.
  2328. Fixed bug where last entry would be lost.
  2329. Python additional version support, bug #10279.
  2330. Matthias Kretz (1):
  2331. Inline help in vim with vertical split.
  2332. Mike McQuaid (6):
  2333. Fix incorrect variable documentation (#11127)
  2334. Add variable for InstallRequiredSystemLibraries dir (#11140)
  2335. InstallRequiredSystemLibraries debug-only (#11141)
  2336. Allow NSIS package or uninstall icon (#11143)
  2337. Add CPACK_NSIS_EXECUTABLES_DIRECTORY (#7828)
  2338. Add CPack NSIS MUI_FINISHPAGE_RUN support (#11144)
  2339. Philip Lowman (8):
  2340. 11363: FindBoost.cmake fails to find debug libraries in tagged layout install
  2341. 11429: FindGTK2 does not find libraries built for Visual Studio 2010
  2342. 11430: FindBullet doesn't find header files installed by Bullet >= 2.77
  2343. 11384: FindCxxTest now includes test code in VS project
  2344. [patch] Add Boost 1.45 to search, simplify a check removing VERSION_LESS
  2345. Add Boost 1.46
  2346. Fix spelling BOOST_LIBRARYDIR message. Add error for common misspellings.
  2347. Lowercase all function names and improve consistency
  2348. Rolf Eike Beer (2):
  2349. allow STRING(SUBSTRING) work with length -1 as "rest of the string"
  2350. Add the WORKING_DIRECTORY property to tests
  2351. Wojciech Migda (1):
  2352. Recognize the Texas Instruments DSP compiler (#11645)
  2353. Yaakov Selkowitz (2):
  2354. Cygwin: Use 'cyg' prefix for module DLLs (#10122)
  2355. Cygwin: Fix release script libncurses search patterns (#10766)
  2356. Zach Mullen (4):
  2357. Remove debugging message from parallel ctest
  2358. CTest git update should pass the committer as well as the author
  2359. Support explicitly set test costs in non-parallel testing.
  2360. Test TIMEOUT property explicitly set to zero should be honored
  2361. No changes in CMake 2.8.3 since 2.8.3-rc4.
  2362. Changes in CMake 2.8.3-rc4 (since 2.8.3-rc3)
  2363. --------------------------------------------
  2364. Bill Hoffman (1):
  2365. When processing DartMeasurements use the tests working directory.
  2366. David Cole (2):
  2367. ExternalProject: No svn --username if empty (#11173)
  2368. Avoid problem reading jni.h on Macs.
  2369. David Partyka (5):
  2370. Fixed appending PATH to dumpbin tool from growing without bounds.
  2371. Switch to CMAKE_PATH when doing PATH comparisons on Windows.
  2372. Remove unecessary TO_CMAKE_PATH for gp_cmd_dir.
  2373. Append the gp_tool path to the system PATH using native slashes.
  2374. Fixes to GetPrerequisites for cygwin
  2375. Eric NOULARD (1):
  2376. CPackDeb Added several optional debian binary package fields
  2377. Marcus D. Hanwell (2):
  2378. ENH: Added case for Python 2.7.
  2379. Fixed parallel build for generators with EXTRA.
  2380. Changes in CMake 2.8.3-rc3 (since 2.8.3-rc2)
  2381. --------------------------------------------
  2382. Alex Neundorf (4):
  2383. Remove trailing whitespace
  2384. Add automatic variable CMAKE_CURRENT_LIST_DIR(dir of CMAKE_CURRENT_LIST_FILE)
  2385. Use absolute path to FindPackageHandleStandardArgs.cmake everywhere
  2386. CodeBlocks Generator: Do not omit files in the project file listing.
  2387. Brad King (4):
  2388. VS10: Order .vcxproj dependencies deterministically (#10502)
  2389. Document ENABLE_EXPORTS behavior on Mac (#11295)
  2390. FindHDF5: Fix typo in parallel-IO support check (#11291)
  2391. Xcode: Recognize .hh as C++ (#11307)
  2392. Clinton Stimpson (1):
  2393. Find imports dir in Qt 4.7
  2394. David Partyka (1):
  2395. Update module to locate newely released MS MPI HPC Pack R2.
  2396. Philip Lowman (1):
  2397. Remove superfluous variable Boost_COMPAT_STATIC_RUNTIME.
  2398. Rolf Eike Beer (2):
  2399. FindSubversion: Fix for German localized client (#11273)
  2400. FindSubversion: Use C locale to detect version (#11273)
  2401. Changes in CMake 2.8.3-rc2 (since 2.8.3-rc1)
  2402. --------------------------------------------
  2403. Alex Neundorf (5):
  2404. APPEND and not-APPEND mode of feature_summary() were swapped
  2405. Set a default DESCRIPTION if none is given for ALL mode of feature_summary()
  2406. Close ENDFUNCTION() properly with the same name as FUNCTION()
  2407. Make cmake-gui remember whether the "Advanced" checkbox was checked or not
  2408. Also store the required version number in the details message.
  2409. Ben Boeckel (3):
  2410. Add test that CMake errors with empty libs
  2411. Fix which string is checked for in the test
  2412. XCode generation should fail if lang isn't known
  2413. Bill Hoffman (5):
  2414. Fix the name of the variable being tested.
  2415. Fix KWStyle line length issues.
  2416. Add a delay after untar on windows to make external project work on windows 7
  2417. Add a new line to the end of the generated main.cxx for the hpux compiler.
  2418. Fix for bug #11274, VS10 custom commands that create files in INTDIR fix.
  2419. Brad King (12):
  2420. Evaluate <OBJECT_DIR> rule variable for executables
  2421. ccmake: Fix search with '/'
  2422. MinGW: Support long object file lists
  2423. Document IMPORTED_NO_SONAME target property
  2424. FindMPI: Recoginze -f flags from mpicc (#10771)
  2425. Add module-dir flag for Compaq Visual Fortran (#11248)
  2426. FindPythonInterp: Look for python2.7 interpreter
  2427. VS10: Use $(IntDir) for per-source output directory (#11270)
  2428. Reset platform/compiler info status for each language
  2429. Remove trailing whitespace from Xcode generator source
  2430. VS10: Skip targets with no linker language (#11230)
  2431. VS10: Encode custom command comments for echo (#11283)
  2432. Clinton Stimpson (1):
  2433. Fix regression in cross-compile patches with finding Qt libs.
  2434. David Cole (7):
  2435. Enable calling commands with : in argv[1] (#9963)
  2436. No extra spaces in CustomCommand test (#9963)
  2437. Avoid CustomCommand test failure on VS71 (#9963)
  2438. Update release scripts.
  2439. Avoid CustomCommand test failure on VS71 (#9963)
  2440. Honor MAKECOMMAND value saved in cache (#11026)
  2441. New USE_FOLDERS property OFF by default. (#3796)
  2442. David Gobbi (1):
  2443. Set the module prefix, updated Windows suffix.
  2444. Eric NOULARD (2):
  2445. InstallGen/CPack fix handling absolute installed file regression
  2446. CPackRPM Handle parenthesis in CPACK_SYSTEM_NAME (fix bug 10737)
  2447. James Bigler (2):
  2448. Fix for bug 0011263.
  2449. Allow -g3 for CUDA v3.0+.
  2450. Mikkel Krautz (2):
  2451. Xcode: Avoid trailing space in ARCHS list (#11244)
  2452. Xcode: Quote string values containing '$' (#11244)
  2453. Philip Lowman (12):
  2454. FindBoost.cmake fixes for issues 11204 & 8529
  2455. FindBoost.cmake: Miscellaneous changes and refactoring
  2456. FindBoost.cmake: Add Boost_NO_SYSTEM_PATHS option
  2457. FindBoost.cmake: Fix compiling against a boost source tree
  2458. FindBoost.cmake: Fixes 11246
  2459. FindBoost.cmake: Fixes 11121
  2460. FindBoost.cmake: Fixes 10436
  2461. FindBoost.cmake: Implements 11160
  2462. Fix 11136: [patch] FindThreads.cmake documents the wrong variable
  2463. FindBoost.cmake: Fix library search path glitch introduced in earlier commit
  2464. FindFLEX.cmake: Fix issue 11249
  2465. Fixes issue 11279: CMakeDetermineVSServicePack support for VS10
  2466. Yaakov Selkowitz (2):
  2467. FindFLTK*: Use Cygwin fltk on Cygwin (#11290)
  2468. Use 'uname -m' for processor on Cygwin (#10774)
  2469. Changes in CMake 2.8.3-rc1 (since 2.8.2)
  2470. ----------------------------------------
  2471. Alex Neundorf (39):
  2472. fix build on SUSE 11.2 in cmcurl due to ssize_t
  2473. -add an additional name for finding libtiff on Windows
  2474. -fix typo in docs of deprecated MacroAddFileDependencies.cmake
  2475. add 2nd, more powerful mode to find_package_handle_standard_args()
  2476. -fix indentation of the documentation
  2477. Add version checking support to FindFlex and FindPerlLibs
  2478. FindSquish doesn't detect the version, remove that from the documentation
  2479. Improved version checking for FindRuby using the new mode of FPHSA()
  2480. Improved version checking for FindJava using the new FPHSA() mode
  2481. Fix DETAILS string with version number in FHPSA()
  2482. Improved version checking for FindSubversion using the new mode of FPHSA()
  2483. Improved version checking for FindCUDA using the new mode of FPHSA
  2484. Use FPHSA() in FindSWIG, including version checking.
  2485. Change documentation of Subversion_FOUND and SUBVERSION_FOUND.
  2486. Add macro CMakeParseArguments() and use it in FPHSA()
  2487. Fix ZLIB version parsing if no TWEAK version exists
  2488. Fix EclipseCDT include path parsing with spaces (#10868)
  2489. Fix EclipseCDT parsing of builtin macros with spaces (#10868)
  2490. Remove trailing spaces
  2491. Detect a COMPILER_ID also for ASM.
  2492. Add timeout to execute_process() in CMAKE_DETERMINE_COMPILER_ID().
  2493. Fix parsing of builtin macros so Eclipse handles them properly (#10868)
  2494. Log the required package version and major improvement to FeatureSummary
  2495. Improve documentation.
  2496. Improve wording of the documentation.
  2497. Add macro ADD_FEATURE_INFO() and improve docs.
  2498. Remove trailing whitespace
  2499. Make target_link_libraries() complain if bad target name is used
  2500. Just warn in case of a bad target as only argument for t_l_l()
  2501. Remove trailing whitespace
  2502. New CMP0016 for deciding whether an unknown target in TLL() is an error.
  2503. Record all considered Config files and their versions.
  2504. Improve error message in Config-mode when no appropriate version was found
  2505. Replace the two vector<string,string> with one vector<struct{string,string}>
  2506. Small cleanup of FindPackageHandleStandardArgs.cmake
  2507. Don't create an empty element at the end of Foo_CONSIDERED_CONFIGS/VERSIONS
  2508. Add option CONFIG_MODE to FPHSA()
  2509. Improve version notice in the generated message
  2510. Improve wording of the error message of find_package() in config-mode
  2511. Andrew Maclean (3):
  2512. Adding a FindPostgreSQL.cmake module
  2513. Forgot the copyright notice.
  2514. Changed ADDITIONAL_SEARCH_PATHS to PostgreSQL_ADDITIONAL_SEARCH_PATHS.
  2515. Arjen Verweij (1):
  2516. Pass objects to Intel linker using a response file
  2517. Bill Hoffman (9):
  2518. Disable gcc 33 on OpenBSD because it crashes CPack by default.
  2519. Fix for bug#10483, INCLUDE_EXTERNAL_MSPROJECT: ProjectGUID now ProjectGuid
  2520. Remove the ctest submit larget output test.
  2521. Let CMake recognize .CPP .CXX and .C++ as c++ files.
  2522. Fix for bug 10388, fix various default flags.
  2523. Only use .CPP .CXX and .C++ do not work by default with g+++.
  2524. Fix targets with . in the name for VS 10 IDE.
  2525. Only test for .CPP on Microsoft compilers which will handle .CPP as c++.
  2526. Allow testing of .CPP on WIN32 as it is a case insensitive OS and should work.
  2527. Brad King (69):
  2528. ExternalProject: Add LOG_* options to hide step output
  2529. FindMPI: Do not parse -l in middle of library name
  2530. FindMPI: Parse mpicc flags more carefully (#9093)
  2531. Fix or cast integer conversions in cmake
  2532. Begin post-2.8.2 development
  2533. FindMPI: Failure is not an error if not REQUIRED
  2534. FindMPI: Trust mpicc -showme on BlueGene/L
  2535. VS: Always separate preprocessor defs by semicolon (#10902)
  2536. KWSys: Cleanup putenv leak option implementation
  2537. KWSys: Pass ptrdiff_t check result to System.c
  2538. Fix or cast more integer conversions in cmake
  2539. Use same type in both cases of '?:' operator
  2540. FindMPI: Fix parsing of mpicc -Wl,-L link flags (#9093)
  2541. Fix signed/unsigned comparison warnings in ccmake
  2542. Fix integer conversions in cpack
  2543. bootstrap: Detect known C/C++ compiler toolchains
  2544. KWSys: Use short fallback timeout for Process tests
  2545. KWSys: Optionally suppress consistent test failures
  2546. KWSys: Avoid Clang optimizer bug in testProcess-[45]
  2547. Poison GCC 3.3 on OpenBSD a bit later
  2548. KWSys: Avoid undefined behavior in Process crash tests
  2549. Optionally use system bzip2 library (#10932)
  2550. ctest_update: Abort if Git FETCH_HEAD has no candidates
  2551. ctest_update: Support ".git file" work trees
  2552. ctest_update: Run 'git submodule' at top level
  2553. FindBoost: Search for Boost 1.42
  2554. Add FindLibArchive module (#10923)
  2555. Add option CMAKE_USE_SYSTEM_LIBARCHIVE (#10923)
  2556. Refer to self with CMake_(SOURCE|BINARY)_DIR (#10046)
  2557. ExternalProject: Fix $(MAKE) with cygpath on Windows
  2558. FindBoost: Search for Boost 1.43 and 1.44
  2559. Include headers from chosen libarchive (#10923)
  2560. No response files with GNU ld <= 2.16 (#10913)
  2561. Create class cmArchiveWrite to wrap libarchive (#11020)
  2562. Include entries for directories in tarballs (#11020)
  2563. cmArchiveWrite: Fix signed/unsigned compare/convert
  2564. cmArchiveWrite: Fix signed/unsigned again
  2565. CPack: Avoid member shadowing after API refactor
  2566. KWSys: Fix SplitPath for leading '\' on Windows
  2567. KWSys: Fix GetActualCaseForPath for UNC paths
  2568. ModuleNoticesTest: Do not require "Kitware" copyright
  2569. Modules: Fix CMakeParseArguments copyright notice
  2570. FortranCInterface: Fix doc typo FC.h -> FCMangle.h
  2571. CTest: Avoid use of old EscapeSpaces method
  2572. Remove cmSystemTools::EscapeSpaces method
  2573. Clarify install(TARGETS) docs for EXPORT option
  2574. Factor out global generator ComputeTargetDepends method
  2575. Factor out duplicate VS target dependency code
  2576. Refactor VS <= 7.1 utility-depends workaround
  2577. Restore GetTargetDirectDepends const return
  2578. Split notion of node lists and edge lists
  2579. Distinguish "strong" and "weak" target dependency edges
  2580. Honor strong intra-component target dependencies
  2581. libarchive: Remove SCHILY dev,ino,nlink attributes (#11176)
  2582. Fix unused parameter warning in VS 7.1 generator
  2583. KWSys: Avoid empty string dereference in SplitString
  2584. KWSys: Improve SplitPath method documentation
  2585. KWSys: Use SplitPath in GetActualCaseForPath
  2586. Add whitespace=tab-in-indent attribute for sources
  2587. Search MacPorts /opt/local prefix on Mac
  2588. HP-UX: Always add /usr/lib to rpath (#10571)
  2589. No CMAKE_CONFIGURATION_TYPES in single-config generators (#10202)
  2590. KWSys: Suppress -Wcast-align warning in MD5.c
  2591. Suppress -Wcast-align in curl and bzip2
  2592. libarchive: Fix purposeful crash
  2593. bootstrap: Honor CFLAGS during "make" test (#10545)
  2594. file(DOWNLOAD): Fix error message formatting
  2595. Fix line-too-long style errors
  2596. Report missing source files with context of target
  2597. Clinton Stimpson (10):
  2598. Fix performance issue with getting version from zlib.h
  2599. Fix bug 10418 - GetPrerequisites returning "not" as a dependency.
  2600. Fix regression in 5e6634fd77969433a87c150a2fb3f2079131484f for Windows.
  2601. Change Qt4ConfigDependentSettings to use more standard find modules.
  2602. Add cross-compiling support to FindQt4.cmake
  2603. Tweak for cygwin, don't convert : to ;
  2604. Fix some issues with refinding when qmake executable is changed.
  2605. Find correct Qt plugins for cross-compiling.
  2606. Fix mingw/VS warning message with cross compile re-org.
  2607. Make sure moc parameters file goes in binary directory.
  2608. David Cole (20):
  2609. CheckSourceTree test: read UpdateCommand from Update.xml.
  2610. Eliminate -Wconversion warnings.
  2611. Detect CMake warnings and errors in build output.
  2612. Activate retry code on any curl submit failure.
  2613. Add another expected output for the failed submit tests.
  2614. ExternalProject: Use $(MAKE) whenever possible.
  2615. Copy Resources in Frameworks during fixup_bundle (#10020)
  2616. Update path to git. dashmacmini2 was "upgraded."
  2617. ExternalProject: Remove 'unknown keyword' warning (#11034)
  2618. Add documentation for CPACK_PROJECT_CONFIG_FILE.
  2619. Add STEP_TARGETS to ExternalProject module.
  2620. Refine formatting for cmake --help-module output.
  2621. Improve documentation of OPTION command.
  2622. Add FOLDER target property, for IDEs (#3796)
  2623. Avoid adding self as prerequisite. (#10417)
  2624. Correct CMAKE_INSTALL_PREFIX value for Win64 apps (#9992)
  2625. Preserve timestamps on files on tar extract.
  2626. Use QUIET to avoid Java status messages.
  2627. VS2010: Honor PROJECT_LABEL target property (#10611)
  2628. VS2010: Set IntDir for utility and global targets.
  2629. David Genest (1):
  2630. Honor CMAKE_USER_MAKE_RULES_OVERRIDE in try_compile (#10902)
  2631. Eric NOULARD (20):
  2632. CPackRPM:: Replace - with _ in RPM Version (fix bug 0010934)
  2633. Provides default changelog if no file is provided
  2634. CPackRPM:: Quote every filenames in %file section (see bugs 10701,10871,10345)
  2635. CPackRPM:: [partially] support relocatable package
  2636. CPackDEB: merge wrong installed size patch. see bugs 10296 (and 10292)
  2637. CPackDeb optionally generates auto-dependency list part fix of bug 10292
  2638. Proposal for bash-completion support file
  2639. CPack: Refactor API in order to handle multi-file packages
  2640. CPack: Avoid member shadowing after API refactor (part2)
  2641. Improve cmake-completion (install doc, ctest -R completion)
  2642. Add ZIP archive format and LZMA compress support to libarchive-wrapper
  2643. Add XZ compress support to libarchive-wrapper
  2644. Add Compress compress support to libarchive-wrapper
  2645. CPack Backward-compatibly enforce DESTDIR for DEB and RPM
  2646. CPack Enable better handling of absolute installed files
  2647. CPackArchiveGenerator use cmArchiveWrite wrapper
  2648. CPackArchiveGenerator add component supports
  2649. CPackArchiveGenerator improve usability and robustness
  2650. CPack fix broken compilation for CygwinSource generator
  2651. CPack handle symlinks in CPACK_INSTALLED_DIRECTORIES fix for bug5430
  2652. James Bigler (1):
  2653. Added CUDA 3.2 directory changes. Disable emulation mode for CUDA 3.1+.
  2654. Kai Wasserbäch (1):
  2655. Fix spelling errors reported by Lintian.
  2656. Kovarththanan Rajaratnam (4):
  2657. FindZLIB: optimize zlib.h version parsing
  2658. FindCygwin: add new registry entry for Cygwin 1.7 (#10951)
  2659. FindZLIB: use the FPHSA version mode
  2660. FindSubversion: set compatibility variables based on FPHSA()
  2661. Marcel Loose (1):
  2662. Issue 10199: Fixed code documentation and now set <prefix>_WC_ROOT
  2663. Marcus D. Hanwell (1):
  2664. Bug with default library type of Python modules.
  2665. Mathieu Malaterre (3):
  2666. Add missing PATHS to find_path commands to fix openssl searching
  2667. BUG: 0009611 Fix Arch independent FindJNI.cmake on Linux
  2668. Fix 11035 : debug/release library configuration mistake
  2669. Michael Wild (2):
  2670. Improve documentation of BundleUtilities.cmake
  2671. Improve documentation of GetPrerequisites.cmake
  2672. Miguel A. Figueroa-Villanueva (7):
  2673. ENH: #9775 Added support for new wxWidgets 2.9 libraries.
  2674. BUG: #9775 Fixed patch FindwxWidgets-fixed-bug-9775.
  2675. BUG #10658: FindwxWidgets USE_FILE should not include .cmake extension.
  2676. STYLE: Clarified/Fixed documentation of UsewxWidgets.
  2677. BUG #11123: Generic include dir should come after config specific one.
  2678. BUG #8184: Fixed FindwxWidgets wrong order of default libs for MinGW.
  2679. ENH #8993: FindwxWidgets add support for wx-config custom options.
  2680. Mike McQuaid (1):
  2681. Make bundle items writable before fixup (#9284)
  2682. Modestas Vainius (1):
  2683. CTestTestFailedSubmit-xmlrpc: Pass with "Submission problem"
  2684. Patrick Gansterer (4):
  2685. VS: Convert PlatformName member to a virtual method
  2686. VS: Add more TargetMachine option values
  2687. VS: Map /ENTRY linker option to EntryPointSymbol
  2688. VS: Add ArchitectureId to VS 8 and 9 generators
  2689. Philip Lowman (7):
  2690. Fixes problem finding libraries under Boost (#9510)
  2691. Add detection for new pangommconfig.h header file
  2692. Several fixes needed to improve Windows support
  2693. 11041: Improve FindCxxTest to use Python or Perl automatically; custom flags
  2694. 10241: FindBISON.cmake clears wrong variable
  2695. 10688: FindGTK2.cmake doesn't auto-detect macports
  2696. Merge patch for detecting gdk-pixbuf library
  2697. Pino Toscano (1):
  2698. GNU/Hurd platform support fixes (#9873)
  2699. Robert Goulet (1):
  2700. VS2010: Disable PDBs when there is no debug info
  2701. Rolf Eike Beer (2):
  2702. clean up some stuff in CPack RPM script
  2703. Set MSVC_VERSION for MSVC 6, 7, 7.1 (#7944)
  2704. Todd Gamblin (3):
  2705. Modules: Fix spelling 'To distributed' -> 'To distribute'
  2706. Teach find_* commands to ignore some paths
  2707. Add platform files for BlueGene/P systems
  2708. Zach Mullen (12):
  2709. Checksums on CTest submit files, and retry timed out submissions.
  2710. Cross-platform fixes for checksum/retry code
  2711. Fix subscript out of range crash
  2712. CTest should resubmit in the checksum failed case
  2713. Testing for CTest checksum
  2714. Mock checksum failure output for old CDash versions
  2715. Checksum test should use CMAKE_TESTS_CDASH_SERVER
  2716. Fix cycle detection for test dependencies
  2717. More robust cost-based scheduling impl
  2718. Fix hard-coded CDash URI in version query
  2719. Added CTest command --print-labels
  2720. We shouldn't ask CDash for its version info until/unless we actually need it.
  2721. No changes in CMake 2.8.2 since 2.8.2-rc4.
  2722. Changes in CMake 2.8.2-rc4 (since 2.8.2-rc3)
  2723. --------------------------------------------
  2724. Bill Hoffman (1):
  2725. Fix for bug #10859, ctest exit exception incorrectly reported.
  2726. Brad King (3):
  2727. Run CMake.HTML test without net access (#10857)
  2728. Run CMake.HTML test with older xmllint (#10857)
  2729. CTest: Parse empty Git commits correctly
  2730. David Cole (2):
  2731. Qualify name of extraction location with ExternalProject name.
  2732. For VS10: Really use full path file names.
  2733. James Bigler (1):
  2734. Add support for the emulation version of the cudart library.
  2735. Mathieu Malaterre (1):
  2736. Cleanup FindOpenSSL. Add support for win64 installation.
  2737. Zach Mullen (1):
  2738. Parallel CTest hangs if serial test has depends
  2739. Changes in CMake 2.8.2-rc3 (since 2.8.2-rc2)
  2740. --------------------------------------------
  2741. Brad King (1):
  2742. Preserve ENV{MAKEFLAGS} in CMake script mode
  2743. David Cole (4):
  2744. Remove "Microsoft Visual Studio .NET" from VS8 and VS9 find modules.
  2745. Use full path file names in generate.stamp.list.
  2746. Use full path file names to express dependencies.
  2747. Look in the ctest ini file for GitCommand.
  2748. James Bigler (2):
  2749. Fixed: CUDA_VERSION_MAJOR/MINOR now computed after first run.
  2750. CUDA_VERSION variable passed to REGEX needs quotes to work when not defined.
  2751. Mathieu Malaterre (1):
  2752. Cleanup FindDCMTK (using foreach). Fix linking on win32 static libs.
  2753. Zach Mullen (2):
  2754. Do not exit if stoptime is passed.
  2755. Document ctest_build() TARGET option
  2756. Changes in CMake 2.8.2-rc2 (since 2.8.2-rc1)
  2757. --------------------------------------------
  2758. Bill Hoffman (1):
  2759. Make sure libarchive uses cmzlib and not the system libz if found.
  2760. Brad King (12):
  2761. Use forward slashes for objects in response files
  2762. Use platform variable for response file flag
  2763. Use response file for objects on MinGW and MSYS
  2764. Generalize CTest.Update* test dashboard script helpers
  2765. ctest_update: Support custom Git update command
  2766. ctest_update: Support Git upstream branch rewrites
  2767. Fix CMake data and doc paths in Cygwin package
  2768. Document scope of source file properties
  2769. Run CTest.NoNewline test using built CMake
  2770. Tru64: Place cmOStringStream vtable uniquely (#10541)
  2771. Enable BootstrapTest on MSYS
  2772. Tru64: Use full-path include directives in Makefiles (#10569)
  2773. Christoph Watzl (1):
  2774. Fix nested source groups with VS 10 (#9863)
  2775. Clinton Stimpson (2):
  2776. Support pthreads on irix.
  2777. Remove macro for querying qmake for qmake variables.
  2778. David Cole (2):
  2779. Fix issue #10346. Error if SOURCE_DIR is empty.
  2780. Remove CTestTest3.
  2781. Zach Mullen (1):
  2782. Extra coverage glob should subtract the explicitly defined excluded files
  2783. Changes in CMake 2.8.2-rc1 (since 2.8.1):
  2784. - Build on Tru64 (#10542)
  2785. - Build on mingw-w64
  2786. - Build on old Sun (#10550, #10543)
  2787. - CPack: Add native BZip2 support
  2788. - CPack: Set compression type in RPM spec (#10363)
  2789. - CPack: Try harder to initialize staging directory (#10793)
  2790. - CTest: Add --stop-time argument
  2791. - CTest: Cost data with '-j'
  2792. - CTest: Fix memory report
  2793. - CTest: Glob for uncovered files during coverage tests
  2794. - CTest: Option to specify cdash server
  2795. - CTest: PHP Coverage support
  2796. - CTest: Process tree kill for OpenBSD, FreeBSD, kFreeBSD, GNU/Hurd
  2797. - CTest: Report failure in Update.xml
  2798. - CTest: Submit author email in Update.xml
  2799. - CTest: Teach ctest_update about Git submodules
  2800. - CTest: Teach ctest_update to handle Git upstream branch rewrites
  2801. - Cygwin: Export all symbols with ENABLE_EXPORTS (#10122)
  2802. - Do not list file names during 'cmake -E tar xz'
  2803. - Documentation: Comply with "XHTML 1.0 Strict"
  2804. - Documentation: Fix typo in CMAKE_LIBRARY_PATH (#10291)
  2805. - Documentation: Fix typo in HAS_CXX docs (#10578)
  2806. - Documentation: More consistent command signatures
  2807. - Eclipse: Do not add INCLUDE to environment twice
  2808. - Enable extra CodeBlocks generator on Cygwin
  2809. - ExternalProject: Support .zip and .bz2 archives, MD5 verification
  2810. - ExternalProject: Reconfigure when args change (#10258)
  2811. - ExternalProject: Support Git, SVN username/password
  2812. - FindCurses: Fix for cygwin ncurses package
  2813. - FindHSPELL: Version support
  2814. - FindJava: Error if version is not found only when REQUIRED
  2815. - FindJava: Support runtime and development components (#9840)
  2816. - FindKDE4: Prefer kdeconfig results over system paths
  2817. - FindMPEG: Check for 'vo' library
  2818. - FindPNG: Support png 1.4 versioned lib names (#10551)
  2819. - FindPkgConfig: Add QUIET keyword to pkgconfig macros (see #10469)
  2820. - FindZLIB: GnuWin32 support, version support (#5588)
  2821. - FindwxWidget: Fix CXX flag parsing (#10209)
  2822. - Fix .pdb name attribute in VS project files (#10614)
  2823. - Fix CodeBlocks to work with Fortran-only
  2824. - Fix VS 2010 custom commands (#10503)
  2825. - Fix VS 6 support for COMPILE_DEFINITIONS_MINSIZEREL (#10700)
  2826. - Fix cross-compiling from Linux to iPhone (#10526)
  2827. - Fix documentation typos
  2828. - Fix g95 Fortran compiler support
  2829. - Fix uname masking in file(WRITE) and write_file (#10789)
  2830. - GetPrerequisites: Provide an override hook
  2831. - Handle non-ASCII terminators in file(STRINGS)
  2832. - Module fixes: FindPythonLibs, FindQt4, FindX11, FindwxWidgets
  2833. - PathScale Fortran compiler tool detection
  2834. - Qt4 OpenGL framework fix
  2835. - Qt4ConfigDependentSettings.cmake Qt4Macros.cmake UseQt4.cmake
  2836. - Recognize ARM ABI/EABI with GNU compilers
  2837. - Recognize Clang compiler
  2838. - Search basic directories on "Generic" platform
  2839. - Set MSVC* variables consistently on all generators, and test
  2840. - Support SunPro C++ 5.11 on Linux (new compiler)
  2841. - Support VS 10 Express (related to #10670)
  2842. - Support compression with 'cmake -E tar'
  2843. - Support multiple arguments in CC,CXX,FC environment variables
  2844. - Support per-configuration librarian flags (#10768)
  2845. - Support per-platform initial ASM language flags (#10577)
  2846. - Use Fortran ABI detection results conservatively
  2847. - Use libarchive to replace the unmaintained libtar
  2848. - UseQt4: Support QtMultimedia (#10675)
  2849. - bootstrap: Fix make tool detection (#10544)
  2850. - cmake-gui: Add simple grouped view
  2851. - cmake-gui: Support build tree under symlink (#9975)
  2852. - Cleanup modules FindASPELL, FindAVIFile, FindBZip2, FindDart,
  2853. FindEXPAT, FindGCCXML, FindGLU, FindHSPELL, FindJasper, FindLibXml2,
  2854. FindLibXslt, FindMPEG, FindOpenAL, FindPhysFS, FindQuickTime,
  2855. FindSubversion, FindZLIB.
  2856. Changes in CMake 2.8.1
  2857. - Fix failing test on cygwin
  2858. - Add a new serach path for MPICH2
  2859. Changes in CMake 2.8.1 RC 5
  2860. - Fix FindQt4 to work with OpenGL on the mac
  2861. - Add .git .bzr and .hg to the list of default CPack ignore directories.
  2862. Changes in CMake 2.8.1 RC 4
  2863. - CTest: Do not hide test GUI windows (fixes 2.8.0 regression)
  2864. - Documentation: Clarify CMAKE_MODULE_PATH variable
  2865. - FindQt4: Add support for QtDeclartive module
  2866. - FortranCInterface: Fix PathScale detection
  2867. - Suppress GNU flag -fPIC on Windows (fixes 2.8.1-rc1 regression)
  2868. Changes in CMake 2.8.1 RC 3
  2869. - Add CMAKE_XCODE_ATTRIBUTE_<attr> interface to set compiler (#9125)
  2870. - Fix Eclipse files for targets in subdirectories (#9978)
  2871. - Fix custom command rule hashes to avoid extra rebuilds
  2872. - Print non-make generator name in initial compiler test
  2873. Changes in CMake 2.8.1 RC 2
  2874. - CPack: Avoid deleting long PATH values with NSIS (#10257)
  2875. - CTest: Fix and test cost-based test scheduler
  2876. - CTest: Fix and test git updates for case of out-dated index
  2877. - CTest: Fix regression caused by fix for (#2336) in rc1
  2878. - CTest: Setup command-line dashboard support with Git
  2879. - FindCUDA: Improve docs, use -rpath on Apple, fix dependency scanning
  2880. - Fix OS X deployment-target and sysroot defaults (#9959,#9898,#10155)
  2881. - Recognize the Compaq Fortran compiler
  2882. Changes in CMake 2.8.1 RC 1
  2883. - Add "NMake Makefiles JOM" generator
  2884. - Add PathScale compiler support
  2885. - Add per-configuration OUTPUT_DIRECTORY properties
  2886. - Add per-target OSX_ARCHITECTURES property
  2887. - check_type_size(): Handle mixed-size universal binaries
  2888. - CPack: Document Mac generators
  2889. - CPack: Improve RPM spec files
  2890. - Create CMAKE_FORCE_Fortran_COMPILER for cross-compiling
  2891. - CTest: Add --http1.0 command-line option
  2892. - CTest: Add --timeout command-line option
  2893. - CTest: Do not munge UTF-8 output in XML files
  2894. - CTest: Document CTEST_USE_LAUNCHERS option
  2895. - CTest: Fix killing of whole test process trees
  2896. - CTest: Handle failure of running invalid executables
  2897. - CTest: Honor the -C arg to ctest (#2336)
  2898. - CTest: Improve host system introspection
  2899. - CTest: Optionally randomize test order (--schedule-random)
  2900. - CTest: Skip tests with unsatisfied REQUIRED_FILES test property
  2901. - CTest: Submit arbitrary results with ATTACHED_FILES test property
  2902. - ctest_build(): Enhance signature
  2903. - ctest_start(): Add APPEND option
  2904. - ctest_start(): Move CTEST_CHECKOUT_COMMAND from ctest_update
  2905. - ctest_update(): Submit global tree revision in Update.xml
  2906. - Cygwin: Do not export all symbols from DLLs (#10122)
  2907. - Cygwin: Name DLLs with SOVERSION, not VERSION (#10122)
  2908. - Detect 32/64-bit Windows with Intel compiler
  2909. - Eclipse generator enhancements
  2910. - ExternalProject: Add TIMEOUT parameter
  2911. - FindCUDA: Respect CUDA version differences
  2912. - FindCURL: Find import libraries on Windows
  2913. - FindDCMTK: Look in more places
  2914. - FindGTest: Handle spaces better (#10065)
  2915. - FindGTK2: Look in fink locations on Mac OS X
  2916. - FindHDF5: Follow find-module API conventions
  2917. - FindJava: Support for versioned find
  2918. - FindJNI: Honor find_package() REQUIRED and QUIET options
  2919. - FindMPI: Improve Windows support
  2920. - FindOpenSSL: Fix MinGW support
  2921. - FindPythonLibs: Look in config for static library
  2922. - FindQt4: Misc enhancements, sync with KDE vesion
  2923. - FindRuby: Fix version convention on Windows
  2924. - FindX11: Improve documentation
  2925. - Fortran: Detect address size (#10119)
  2926. - FortranCInterface: Honor user flags
  2927. - Improve VS 2010 beta2 support
  2928. - link_directories(): Treat relative paths consistently (CMP0015)
  2929. - Modernize FindLibXslt and FindLibXml.cmake
  2930. - Refactor platform info to simplify adding new compilers
  2931. - Support cross-compiling versioned DLLs
  2932. - UseQt4: Provide dependencies only for static Qt (#10021)
  2933. - Address issues:
  2934. #2336, #3571, #5041, #7541, #8725, #9011, #9042, #9054, #9163,
  2935. #9171, #9450, #9697, #9764, #9782, #9792, #9862, #9894, #9913,
  2936. #9916, #9917, #9918, #9949, #9965, #9970, #9982, #9985, #10003,
  2937. #10014, #10021, #10032, #10055, #10060, #10065, #10114, #10119,
  2938. #10122, #10126, #10136.
  2939. Changes in CMake 2.8.0 Release
  2940. - CPack: Honor CPACK_NSIS_DISPLAY_NAME (fixes regression)
  2941. Changes in CMake 2.8.0 RC 7
  2942. - Partially sync FindQt4 with KDE version
  2943. - Improve implementation of fix for #9090
  2944. - Fix CTest infinite loop when test executable could not be found
  2945. - Fix #9833: Document ctest --help-command
  2946. - FindCUDA: Fix -fPIC from being used on executable object files
  2947. - Fix #9654: %files section in spec file should not list directories
  2948. - Fix #9851: Better STRING(RANDOM) seeding
  2949. - Fix double bootstrap build for in source builds
  2950. - Fix CTest to use allowed value for valgrind --num-callers
  2951. - Remove non-language implicit link dependencies
  2952. - Implement LINK_FLAGS_<CONFIG> property on Xcode
  2953. Changes in CMake 2.8.0 RC 6
  2954. - Partially sync FindQt4 with KDE version
  2955. - Fix #9090: Teach CTest subdirs() command to handle absolute paths
  2956. - Fix CTest bug that could start a test twice
  2957. Changes in CMake 2.8.0 RC 5
  2958. - CTest now detects cycles in test dependency graph
  2959. - Warn on set(PARENT_SCOPE) at top scope
  2960. - Fix Xcode <= 2.0 projects with CMAKE_BUILD_TYPE
  2961. - Fix flags for Intel Fortran on Windows
  2962. - Fix #2199: UseSWIG documentation for swig_generated_file_fullname
  2963. - Fix #7915: UseSWIG interaction with JNI
  2964. - Fix #8971: FindOpenSSL now works on windows
  2965. - Fix #9124: CPackDeb documentation
  2966. - Fix #9722: cmake-gui reports error when not able to create build directory
  2967. - Fix #9767: Match more valgrind-reported leaks in CTest memcheck
  2968. - Fix #9777: Sync CMakeDetermineJavaCompiler paths with FindJava
  2969. - Fix #9793: FindJNI should find matching jni.h and jni_md.h
  2970. - Fix #9817: FindJNI on Solaris
  2971. - Fix FindHDF5 when hdf5.h exists without H5pubconf.h
  2972. - Fix FindZLIB to follow variable name conventions
  2973. - Fix invalid use of auto_ptr on array
  2974. - Mention temp var convention in Modules/readme.txt documentation
  2975. Changes in CMake 2.8.0 RC 4
  2976. - Fix try_compile when file cannot be found
  2977. - Add new module to test manifest installation issues on windows.
  2978. - Add more test coverage
  2979. -Improvements in finding MPI on windows. ENH: reorganized searching mpi for mpi components (include,lib,bin) using a single set of search paths instead of seperately mainted lists of paths for each.
  2980. - Look for nvcc in the 32 bit bin directory before the 64 bin directory.
  2981. - BUG: hardcore some values so output matches cmVS10CLFlagTable.h (addresses bug #9753)
  2982. - Avoid Intel linker crash in BuildDepends test
  2983. - Fix Intel Fortran SHARED libraries on Linux
  2984. - Fix working dir issue for ctest
  2985. - Fix if() command and CMP0012 OLD/NEW behavior
  2986. - Allow for /D to change install directory on the command line for NSIS
  2987. - Move SetErrorMode around calls to generate and configure instead of setting it for the whole application for cmake-gui on windows. Allows for bad installs of windows shell programs to not break file completion.
  2988. - Fix Intel and MinGW Fortran DLL import libraries
  2989. - Fix Xcode dylib version default
  2990. - Fix the showing of non-cpp files in the IDE for VS 10
  2991. - Fix optionally-valued booleans in VS 10 flag table
  2992. - Detect and set Unicode character set in VS 10
  2993. - Add support for the g95 Fortran compiler
  2994. - Test all target types in Fortran
  2995. - Add Xcode file association for Fortran
  2996. - Fix VS 10 flag table for precompiled headers
  2997. - Fix VS 10 .sln files for Windows Explorer
  2998. - Fix Microsoft.Cpp.$(Platform).user.props in VS10b2
  2999. - Fix up file(DOWNLOAD ) a bit, better error checking and uses of long not double for timeout as curl needs, bug# 9748
  3000. - Add a VS 10 Win64 generator
  3001. - Fix for bug#9686 convert java_home to a cmake path before using.
  3002. - fix for bug# 9751, add check for MSVC10
  3003. - Fix for bugs #9756, #9690 and #9755, header files were not included, and link_directories we incorrect
  3004. - Add a module to test an install tree to verify that the MS CRT version is correct.
  3005. - Fix seg fault for empty ENV{} call bug #9747
  3006. - Better fix for finding the MSBuild that matches the VS 10 install.
  3007. - make testing the CodeBlocks and Eclipse generators easier by not requiring the CMAKE_EDIT_COMMAND variable
  3008. - Do not link library dependencies in VS solutions
  3009. - Ctest was broken for subdirs. Restored working directory state for tests so that their executables could be found.
  3010. - Fixes version detection using osg/Version on Mac OSX when OSG is installed as a framework
  3011. - Avoid C++ linker language in VS Fortran project
  3012. - Avoid duplicate ZERO_CHECK in VS solutions
  3013. - Fixed bug 8319, search for the Python shared library in the standard locations.
  3014. - Fix bug#9714, should not crash when version file is not where it should be...
  3015. - Fix ctest output alignment for cases where total tests run is not the same width as max test index.
  3016. - make it more robust wrt. #9621
  3017. - Add another possible error message that curl might emit with an empty drop location.
  3018. - Fix issue #5668 - use CollapseFullPath when determining if covered file is within source or binary tree. Allows gcc/gcov coverage analysis using MinGW on Windows.
  3019. - CTest-side support for compiler name and compiler version information. Requires CDash update to show on CDash.
  3020. - Add a bunch more testing coverage.
  3021. Changes in CMake 2.8.0 RC 3
  3022. - CTest Added OS Platform (cpu architecture) detection support to windows system
  3023. - Several minor FindBoost changes to address posts on mailing list
  3024. - Resolve #9685: Fix include dir to be correct path for gnutils
  3025. - Fix color check for dependency scanning
  3026. - Remove CMP00015 for now as it breaks more things than it fixes
  3027. - Reduce duration of ctest_sleep arguments. Add SmallAndFast project. Replace kwsys with SmallAndFast to make CTestTest faster. (I will keep an eye on coverage results after this commit and make sure we still have equivalent ctest coverage.)
  3028. - Do not use -fPIC to link executables
  3029. - Split Borland compiler information files
  3030. - Trimmed off the newline from sw_vers output on mac, it could cause xml parsing errors if left in
  3031. - Check for openssl-linked option with Qt 4.4+ before making ssl a dependency.
  3032. - Make Complex test of CMakeLib more optional
  3033. - Modernize FindVTK module
  3034. - Fix find_package() when <pkg>_DIR is wrong
  3035. - Do not collapse path of NOTFOUND values
  3036. - More robust implicit link line detection regex
  3037. - fix Xcode 30 generator
  3038. - Use the correct CMake (the freshly built one) to drive the CMakeWizardTest.
  3039. - Support more special characters in file(STRINGS)
  3040. - Log implicit link line detection regex
  3041. - speedup C dependency scanning even more
  3042. - Avoid non-root copies of root-only targets
  3043. - Added better OS information for Mac OS X
  3044. - Use work-around from bug 4772 for C++ and Fortran
  3045. - FortranCInterface: Mangling for Intel on Windows
  3046. - cmake-gui don't allow consecutive generates without a configure.
  3047. - Fix Preprocess test for Intel on Windows
  3048. - Teach intel compiler on windows to place .lib files and .pdb files.
  3049. - CPack: Fix bash-isms in launch script
  3050. - BUG: #0009648 Change "The following tests FAILED" message to print on stdout rather than stderr
  3051. - Avoid (Unix|Windows)Paths.cmake multiple include
  3052. - When getting include dirs for moc, also watch for framework includes and use -F instead of -I.
  3053. - Find locally installed software first
  3054. - Add '#!/bin/sh' to cygwin-package.sh
  3055. - Fix permsissions of installed SquishRunTestCase.sh
  3056. - Fix module docs to be manpage (groff) friendly
  3057. - Support GNU/kFreeBSD
  3058. - Remove old Encoding field from CMake.desktop
  3059. - FindQt3: Prefer (moc|uic)-qt3 names over (moc|uic)
  3060. - Match width of ctest "Start xx: " line to line up with the end test line
  3061. - Remove old license from FindPkgConfig.cmake module
  3062. - Test target link information invalidation
  3063. - Invalidate target link info when necessary
  3064. - Use new style header generation and get rid of OBJECT_DEPENDS in tutorial
  3065. - Fix issue #8649 - move the location of CPACK_NSIS_EXTRA_INSTALL_COMMANDS so that it is not excluded from execution when 'Do not create shortcuts' is checked.
  3066. - add the additional features for the dbus macros from KDE's FindQt4.cmake
  3067. fc9f7a5 Fix warnings in CMake source code.
  3068. - Correct some typos in error messages in the string command. Add a test that covers more of the code implemented in cmStringCommand.cxx, especially the error handlers.
  3069. - Create INTERPROCEDURAL_OPTIMIZATION build feature
  3070. - Document CMAKE_CURRENT_LIST_FILE more precisely
  3071. - Fix the documentation to say what it really does. Bug #9638
  3072. - document how the minimum version can be specified
  3073. - Fix warnings in CMake source code. Suppress rampant warnings emanating from Qt files.
  3074. - Add documentation for Cocoa flag and move Motif under X11 flag.
  3075. Changes in CMake 2.8.0 RC 2
  3076. - Fix FindQt4 so that QtHelp depends on QtNetwork
  3077. - Add missing copyright notice to CMake.cmake module
  3078. - Add alternative _UTILITY targets to all VS solutions
  3079. - FindGTest.cmake some bugfixes, also added public function for closer integration btwn GoogleTest & CTest, contributed by Dan Blezek.
  3080. - Eliminate ExternalProject's use of CMAKE_CFG_INTDIR subdir for Makefile generators. It was causing problems with parallel make -j invocations. Keep it for multi-configuration build systems so that Debug and Release stamp files remain separate.
  3081. - Fix for bug #9611, some more paths for OpenJDK.
  3082. - Fix get_filename_component() registry view with wow64
  3083. - Fix warnings in CMake source code.
  3084. - Fix module definition file reference for VS6 NMake
  3085. - Fix for bug #9611 do not hard code archs for search paths of java, look at the machine type.
  3086. - Fix bug#9619 add a link to module maintainers page in readme.txt for Modules
  3087. - Add cmake-help-command function to emacs-mode
  3088. - Add initial XL C compiler flags for safer builds
  3089. - Split XL compiler information files
  3090. - Fix default install prefix on Haiku
  3091. - Fix use of module .def files for MS tools
  3092. - Add StringProperty options includeing /def: for VS 10 flag table
  3093. - Convert copyright to OSI BSD and clean up licenses
  3094. - ENH: Added ctest test coverage for a test timeout
  3095. - CTest honors test timeouts again.
  3096. - Remove ctest_submit from CTestTestParallel
  3097. - Fix shared library creation flag for XL on Linux
  3098. - Fix BUG: 0009612: --output-on-failure option doesn't work with
  3099. the new parallel CTest handler
  3100. - Removed support for cutil library and header file.
  3101. - Fixed CUDA_PROPAGATE_HOST_FLAGS, added path for Mac SDK.
  3102. - Make sure LINK_FLAGS are seen by generator, fix for part of bug#9613
  3103. - Fix issue #9412 - remove RPATH from files copied by
  3104. BundleUtilities.cmake on Linux. Thank
  3105. - Fix support for OLD behavior of policy CMP0002
  3106. - Fix issue #8818 - escape quotes in the license file when using the
  3107. DragNDrop cpack genera
  3108. - Fix .vfproj file version for Intel Fortran 10.1
  3109. - Use BeAPI for per-user package registry on Haiku
  3110. - Correct comments and use ASM${ASM_DIALECT} env. var instead of ASM
  3111. env. var to initialize
  3112. - Fix bug #9529.
  3113. - Fix Windows GUI implib and image version in VS 6
  3114. - Convert newlines from CRLF to LF
  3115. - Oops. Last commit did not create subdir before doing a touch on a
  3116. file in it. So it fails of a type that is expected to have a
  3117. location...
  3118. - Policies 14 and 15 will be first released in 2.8.0
  3119. - Document full version number with policy default
  3120. - Simplify bootstrap script source dir detection
  3121. - Documentation fixes, new CUDA_PROPAGATE_HOST_FLAGS, changed output
  3122. directory.
  3123. Changes in CMake 2.8.0 RC 1
  3124. - Qt based GUI cmake-gui is now the default GUI, MFC CMakeSetup is no
  3125. longer included in CMake. ccmake is still supported.
  3126. - cmake-gui supports multi-state values options.
  3127. - CMake now has cmake --build command that can build any CMake generated
  3128. project from the command line.
  3129. - Visual Studio 2010 beta support has been added.
  3130. - KDevelop generator now has color output for builds.
  3131. - CTest supports running tests in parallel with a -j N option.
  3132. - A new CTest CTEST_USE_LAUNCHERS option can be used to get better
  3133. dashboard error reports with make based tools.
  3134. - CTest has support for sub-projects and labels which can interact
  3135. with CDash.
  3136. - CTest now supports Git, Mercurial, and Bazaar.
  3137. - It is now possible to use DESTDIR in CPack for any CMake based projects
  3138. giving more flexibility on the final path names.
  3139. - The CPack Deb generator now computes the arch instead of hard coding it.
  3140. - Fortran/C mixed language projects made much easier. CMake now
  3141. automatically can compute the run time libraries for a compiler. In
  3142. addition, a new FortranCInterface module can determine the correct
  3143. name mangling needed to mix C and Fortran.
  3144. - Intel compiler support added to OSX, and support for embedded
  3145. manifests in the windows intel compiler was added.
  3146. - Depend scanning is now much faster with makefiles.
  3147. - Many FindQt4 improvements to stay working with current Qt releases
  3148. - FindMPI has improvements for windows.
  3149. - FindBoost has been updated to work with the most recent boost releases.
  3150. - New External Project Module. The 'ExternalProject_Add' function
  3151. creates a custom target to drive download, update/patch, configure,
  3152. build, install and test steps of an external project.
  3153. - xmlrpc dependancy has been removed
  3154. - CMAKE_OSX_DEPLOYMENT_TARGET cache variable has been created to set the
  3155. deployment OS for a build on OSX.
  3156. - Several new policies were added:
  3157. CMP0012
  3158. The if() command can recognize named boolean constants.
  3159. CMP0013
  3160. Duplicate binary directories are not allowed.
  3161. CMP0014
  3162. Input directories must have CMakeLists.txt.
  3163. CMP0015
  3164. The set() CACHE mode and option() command make the cache value
  3165. visible.
  3166. - Lots of bug fixes.