ChangeLog.manual 220 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683
  1. Changes in CMake 2.8.11.2 (since 2.8.11.1)
  2. ------------------------------------------
  3. Alex Neundorf (1):
  4. asm support: adapt to changes in CMakeDetectCompiler in 2.8.10
  5. Bjoern Thiel (1):
  6. SelectLibraryConfigurations: Fix for cached <base>_LIBRARY
  7. Brad King (5):
  8. cmCryptoHash: Increase alignment of HashFile buffer
  9. cmcurl: Backport curl bug 1192 fix (#14250)
  10. VS12: Add Visual Studio 12 generator (#14251)
  11. VS12: Generate flag tables from MSBuild v120 tool files
  12. FindBoost: Add -vc120 mangling for VS 12
  13. Robert Maynard (1):
  14. VS: Clarify Visual Studio product year for each version
  15. Changes in CMake 2.8.11.1 (since 2.8.11)
  16. ----------------------------------------
  17. Brad King (5):
  18. ExternalData: Do not re-stage staged object files
  19. try_compile: Fix quoting of libraries in generated CMakeLists.txt
  20. KWSys: Fix SystemTools::FileIsDirectory with long paths (#14176)
  21. FindBoost: Fix handling of \ in input paths (#14179)
  22. Xcode: Fix framework search paths in STATIC library targets (#14191)
  23. Modestas Vainius (1):
  24. Fix test failures caused by regexp-sensitive characters in the build paths
  25. Stephen Kelly (9):
  26. include_directories: Fix handling of empty or space-only entries
  27. try_compile: Trim whitespace from LINK_LIBRARIES entries
  28. cmTarget: Remove some hardcoding of transitive property names.
  29. GenexEval: Extract a getLinkedTargetsContent from TargetPropertyNode.
  30. GenexEval: Fix evaluation of INCLUDE_DIRECTORIES target property.
  31. GenexEval: Test evaluation of INCLUDE_DIRECTORIES target property.
  32. FindQt4: Don't fail if certain Qt modules are unavailable.
  33. Qt4Macros: Handle Qt ActiveX libraries in qt4_use_modules.
  34. Genex: Fix the HEAD target used for evaluated expressions
  35. Changes in CMake 2.8.11 (since 2.8.11-rc4)
  36. ----------------------------------------
  37. None
  38. Changes in CMake 2.8.11-rc4 (since 2.8.11-rc3)
  39. ----------------------------------------------
  40. Brad King (1):
  41. target_link_libraries: Update usage requirements documentation
  42. Stephen Kelly (3):
  43. Centralize maintenance of usage requirement include directories
  44. Fix include dir propagation from conditionally linked targets
  45. Memoize usage requirement include directories in a config-specific map
  46. Changes in CMake 2.8.11-rc3 (since 2.8.11-rc2)
  47. ----------------------------------------------
  48. Brad King (1):
  49. get_filename_component: Document path components more clearly (#14091)
  50. Rolf Eike Beer (1):
  51. try_compile: add missing fclose() to recently added error case
  52. Stephen Kelly (1):
  53. Fix clearing of the INCLUDE_DIRECTORIES DIRECTORY property.
  54. Changes in CMake 2.8.11-rc2 (since 2.8.11-rc1)
  55. ----------------------------------------------
  56. Alex Neundorf (6):
  57. Determine C/CXX/Fortran compiler: minor restructuring
  58. Determine C/CXX/Fortran compiler: fix indentation
  59. rename TI_DSP toolchain to TI, since it works also for the ARM compiler
  60. TI compiler: add automatic detection of prefix and suffixes
  61. Modules/readme.txt: switch from "XXX" to "Xxx"
  62. Modules/readme.txt: make lines a bit shorter for easier readability
  63. Ben Boeckel (1):
  64. Clang: Add -isystem flag support everywhere
  65. Bill Hoffman (1):
  66. ExternalProject: Retry on a failed git clone
  67. Brad King (8):
  68. string: Fix regex documentation of '^' and '$' (#14028)
  69. Rename variable for including current directory in interfaces
  70. Replace <TARGET> in CMAKE_<LANG>_COMPILE_OBJECT rule variables
  71. Test evaluation of per-config COMPILE_DEFINITIONS (#14037)
  72. VS: Fix VS 10/11 .sln headers (#14038)
  73. add_dependencies: Distinguish target v. file dependencies in error (#14050)
  74. automoc: Use a pre-build event in VS >= 7
  75. Handle usr-move without forcing absolute paths (#14041)
  76. Clinton Stimpson (2):
  77. FindQt4: If Qt5 is in CMAKE_PREFIX_PATH, be sure to find Qt4 includes.
  78. Qt4: Fix typo setting a variable for FindThreads.
  79. James Bigler (1):
  80. FindCUDA: Use the PRE_LINK mode only for MSVC >= 10
  81. Matthew Woehlke (4):
  82. UseJava.cmake: simplify path logic
  83. UseJava.cmake: fix passing jars to add_jar
  84. UseJava.cmake: accept jar targets in add_jar
  85. UseJava.cmake: require explicit request to include jars
  86. Paul Kunysch (1):
  87. CPack: Avoid "format expects 'unsigned int'" warnings
  88. Petr Kmoch (1):
  89. cmSystemTools: Generalize TrimWhitespace to all whitespace
  90. Rex Dieter (1):
  91. FindImageMagick: Search versioned suffixes (#14012)
  92. Rolf Eike Beer (1):
  93. FindRuby: improve version selection
  94. Stephen Kelly (13):
  95. FindQt4: Set the Qt4_FOUND variable if Qt4 is found
  96. FindQt4: Set the INTERFACE_QT_MAJOR_VERSION for Qt4::QtCore
  97. Document that CMAKE_AUTOMOC works with Qt 5.
  98. FPHSA: Fix FOUND_VAR check to work with if() auto-dereference
  99. Fix cmGeneratorExpression::Preprocess for interleaved inputs.
  100. cmake-gui: Use the QStandardItemModel workaround until 5.1.0.
  101. Automoc: append implicit includes after user-specified dirs
  102. Fix the evaluation of per-config COMPILE_DEFINITIONS (#14037)
  103. Fix new target commands documentation.
  104. install(EXPORT): Ensure clean INTERFACE_INCLUDE_DIRECTORIES
  105. Report an error on IMPORTED targets with a faulty INTERFACE
  106. Error if linked target has relative paths in INTERFACE_INCLUDE_DIRECTORIES
  107. Fix the Qt 5 version required to run the IncompatibleQt test.
  108. Changes in CMake 2.8.11-rc1 (since 2.8.10.2)
  109. ----------------------------------------------
  110. Alan Witkowski (1):
  111. FindBullet: Search in per-config dirs on Windows (#13738)
  112. Aleksey Avdeev (1):
  113. Add module FindIcotool
  114. Alex Neundorf (30):
  115. Eclipse: add switch to disable linked resources (#13189)
  116. Eclipse: set source path once to fix Eclipse indexer (#13596)
  117. cmDependsC: remove unused member variable
  118. cmDependsC: remove code duplication
  119. cmDependsC: fix indentation
  120. cmDepends: allow multiple dependees per depender
  121. AddCustomCommand: Handle multiple IMPLICIT_DEPENDS files (#10048)
  122. Add support for Texas Instruments DSP compiler (#12405)
  123. Squish: detect version
  124. Squish: use FPHSA
  125. Squish: find executables also under Windows
  126. Squish: rename squish_add_test() to squish_v3_add_test() and fix docs a bit
  127. Squish: use ${CMAKE_CURRENT_LIST_DIR}
  128. Squish: add support for squish 4 (#9734)
  129. Squish: fix new squish_v4_add_test() macro
  130. Automoc: "inherit" FOLDER target property from target (#13688)
  131. FPHSA: don't succeed if only checking for XX_FOUND (#13755)
  132. CONFIGURE_PACKAGE_CONFIG_FILE(): improve generated comments
  133. Automoc: get include dirs without stripping implicit include dirs off
  134. configure_package_config_file: force absolute paths for usr-move
  135. configure_package_config_file(): fix indentation
  136. configure_package_config_file(): extend documentation
  137. documentation: handling of relative paths by include- and link_directories()
  138. automoc: use a std::vector<> instead a std::list
  139. automoc: use the header extensions from cmMakefile
  140. Eclipse: also detect include dirs and macro for clang (#13823)
  141. cmLocalGenerator: remove "virtual" where not used
  142. export files: rewrite the code for checking required targets
  143. FPHSA: Add FOUND_VAR option to specify _FOUND variable name
  144. FPHSA: improve documentation
  145. Alexander Chehovsky (2):
  146. Xcode: Fix nested source group handling (#12943)
  147. Xcode: Sort source files
  148. Amine Chadly (2):
  149. file: remove dead code
  150. Add test to secure the file(GLOB empty) behavior.
  151. Amit Kulkarni (6):
  152. OpenBSD: Install shared libraries without executable permission
  153. OpenBSD: Add paths for Java 1.6.0/1.7.0 JRE/JDK
  154. OpenBSD: Add path for Freetype under X.org
  155. OpenBSD: Add paths for Tcl/Tk 8.4/8.5
  156. OpenBSD: Add path for Lua 5.1
  157. OpenBSD: Add paths for Qt3/Qt4
  158. Andreas Mohr (4):
  159. Documentation: Correct typos and grammar
  160. Documentation: Clarify some command descriptions
  161. Correct string literal typo (have "(NULL)" like all other cases).
  162. Remove seemingly bogus duplicate CPACK_PACKAGE_FILE_NAME call.
  163. Anton Helwart (1):
  164. VS: Avoid empty source groups in some cases (#3474)
  165. Benjamin Eikel (2):
  166. Swap linking order of SDLmain and SDL (#0013769)
  167. FindSDL_...: Restore dropped search paths (#13819)
  168. Brad King (109):
  169. find_library: Refactor internal name iteration
  170. find_library: Simplify framework search logic
  171. find_library: Generalize helper macro in test case
  172. find_library: Optionally consider all names in each directory
  173. FindBoost: Remove extra indentation level
  174. FindBoost: Mark Boost_DIR cache entry as advanced
  175. FindBoost: Use PATH_SUFFIXES to look in "Program Files"
  176. FindBoost: Overhaul caching and search repeat behavior
  177. FindBoost: Construct a clean Boost_LIBRARIES value
  178. FindBoost: Refactor Boost_FOUND computation and version check
  179. FindBoost: Rewrite documentation
  180. BSD: Do not require dlfcn.h to build shared libs (#13573)
  181. Xcode: Fix ReRunCMake.make path to cmake.check_cache (#13603)
  182. VS10: Refactor link options collection
  183. VS10: Honor /DELAYSIGN and /KEYFILE flags (#13601)
  184. Document external language support policy
  185. CTest: Allow SUBMIT_INDEX with CDash
  186. KWSys: Submit dashboard builds to PublicDashboard
  187. pre-commit: Update KWSys rejection message for new workflow
  188. CTestCustom: Suppress LNK4089 warning about PSAPI
  189. load_command: Deprecate and document pending removal
  190. Documentation: Clarify configure_file behavior
  191. OS X: Warn about known SDK breakage by Xcode 3.2.6
  192. Optionally skip link dependencies on shared library files
  193. Teach BuildDepends test to cover LINK_DEPENDS_NO_SHARED
  194. Serialize tests for EXCLUDE_FROM_DEFAULT_BUILD
  195. MSVC: Drop default use of /Zm1000 for VS >= 7.1
  196. Teach find_(path|file) about Linux multiarch (#13742)
  197. Test find_path multiarch support (#13742)
  198. Add policy CMP0019 to skip include/link variable re-expansion
  199. Xcode: Add frameworks search paths from link dependeny closure (#13397)
  200. Makefile: Use modern link information for framework search paths
  201. Documentation: Clarify handling of implicit link directories
  202. Remove references to KWSys Process Win9x support
  203. add_library: Document object library portability suggestion
  204. OS X: Link with all framework search paths, not just the last
  205. OS X: Detect implicit link directories on modern toolchains
  206. OS X: Detect implicit linker framework search paths
  207. Revert "load_command: Deprecate and document pending removal"
  208. VS11: Simplify external object file handling (#13831)
  209. KWIML: Teach ABI about 'long long' on older GNU
  210. CMake: Skip empty link.txt lines (#13845)
  211. ExternalProject: Allow DEPENDS on normal targets (#13849)
  212. VS11: Fix VSExternalInclude test
  213. target_link_libraries: Document that new sigs privatize old (#13876)
  214. Tests: Avoid CTestLimitDashJ crash on Borland 5.8 builds
  215. Fix use of cmTypeMacro in new command classes
  216. Fix cmSystemTools::RenameFile race on Windows
  217. VS 6: Create .rule file directory before file
  218. Add ExternalData module
  219. ExternalData: Remove compatibility with CMake < 2.8.5
  220. ExternalData: Do not match directory names when resolving DATA{}
  221. ExternalData: Cleanup stray TODO and typo in comments
  222. ExternalData: Remove unused private interface
  223. ExternalData: Improve series matching using an explicit syntax
  224. ExternalData: Add tests covering interfaces and errors
  225. ExternalData: Allow ()-groups in series match regex
  226. ExternalData: Allow DATA{} syntax to reference directories
  227. ExternalData: Generalize hash algo/ext handling
  228. ExternalData: Add support for SHA 1 and 2 hash algorithms
  229. ExternalData: Collapse ../ components in DATA{} paths
  230. Fix Module.ExternalData test on Cygwin
  231. Fix Module.ExternalData test on VS 6
  232. ExternalData: Attach download rules to content links in IDEs
  233. find_package: Reword <package>_NO_INTERFACES documentation
  234. Normalize full paths in implicit link library list
  235. Fail early if no current working directory exists
  236. MSVC: Fix CMAKE_CL_64 in CXX-only projects (#13896)
  237. ExternalProject: Simplify CMake command line generation
  238. Tests: Run ctest custom commands with VERBATIM
  239. CMake: Add -T option to choose a generator toolset
  240. VS: Implement generator toolset selection (#10722, #13774)
  241. Xcode: Implement generator toolset selection (#9831, #13802)
  242. CTest: Add options to set generator toolset
  243. ExternalProject: Propagate the generator toolset
  244. Tests: Consolidate ctest --build-and-test generator options
  245. Tests: Add generator toolset support
  246. Fix crash on empty CMAKE_<lang>_COMPILER value (#13901)
  247. file: Do not remove symlinked directories recursively (#10538)
  248. Embarcadero: Fix default link stack/heap flags (#13912)
  249. Avoid duplicate RPATH entries
  250. AIX-GNU: Put implicit link directories in runtime libpath (#13909)
  251. VS: Replace generation timestamp file atomically
  252. VS,Xcode: Remove unused CMAKE_GENERATOR_* variables
  253. Delete entire CMakeFiles directory when deleting CMakeCache.txt (#13756)
  254. Tests/RunCMake: Allow tests to control build tree behavior
  255. Test Unix Makefiles generator support for changing compilers
  256. Xcode: Drop check for circular target dependencies
  257. Xcode: Each target dependency edge needs a unique object (#13935)
  258. Tests: Replace exec_program with execute_process
  259. Tests: Generalize decision for 'make' tool supporting spaces
  260. ExternalData: Test content link with a space in its name
  261. FPHSA: Convert FOUND_VAR failure test to RunCMake
  262. VS: Restore CMAKE_GENERATOR_FC variable
  263. Xcode: Generate recommended artwork setting (#13954)
  264. CTest: Fix ctest_update with 'HEAD' file in source tree
  265. VS 10: Fix CMAKE_<LANG>_STACK_SIZE implementation (#13968)
  266. install(EXPORT): Force absolute paths for usr-move
  267. AIX: Do not use -brtl to create shared libraries (#13997)
  268. add_subdirectory: Compute output dir with consistent slashes (#10072)
  269. ExternalData: Preserve escaped semicolons during argument expansion
  270. Avoid crash when checking property link dependencies without link info
  271. Avoid crash when checking property compatibility without link info
  272. Refactor RunCMake.build_command test to allow more cases
  273. build_command: Fail early without CMAKE_MAKE_PROGRAM (#14005)
  274. CTest: Fail early without PROJECT_BINARY_DIR (#14005)
  275. FindQt4: Fix QT_QMAKE{_QMAKE => }_EXECUTABLE typo
  276. XL: Use -qpic for position independent code (#14010)
  277. Configure Tests/CMakeTests only with BUILD_TESTING ON
  278. Casey Goodlett (1):
  279. CTest: Prevent creation of unbounded number of tests in ctest (#12904)
  280. Clemens Heppner (1):
  281. CMake: source_group needs to check its own regex after its children (#13611)
  282. Clinton Stimpson (5):
  283. Fix for possible Rez errors when creating dmg.
  284. PackageMaker: Enable postflight script in component mode (#12375)
  285. CPack: Fix RPM/Deb package names to not include "ALL_COMPONENTS_IN_ONE"
  286. Qt4: Add SYSTEM option to include_directories.
  287. FindQt4: set QT_VERSION_* variables sooner.
  288. David Cole (19):
  289. Begin post-2.8.10 development
  290. CPack: Add automatic detection of the Unicode makensis (#9629)
  291. BundleUtilities: Use a more inclusive REGEX for frameworks (#13600)
  292. VS: Avoid empty, unreferenced solution folders... (#13571)
  293. NMake: Add a test to demonstrate EmptyDepends issue (#13392)
  294. NMake: Fix problem with empty DEPENDS args (#13392)
  295. CMake: Remove "/STACK:10000000" from default linker flags (#12437)
  296. Watcom: Avoid prompt from wmake about dll with no exports...
  297. Tests: Use the right path to CPack value for running CPack tests
  298. VS11: Allow using folders with the VS11 Express Edition (#13770)
  299. CPack: Fix dashboard errors (#11575)
  300. CPack: Fix dashboard warnings (#11575)
  301. CPack: Fix dashboard errors and warnings (#11575)
  302. CMake: Stylistic changes and documentation tweaks
  303. CMake: Fix dashboard warnings
  304. CMake: Fix dashboard test failure
  305. CMake: Fix dashboard build errors and warnings
  306. CTest: Coverage handler: expect certain output lines from gcov 4.7 (#13657)
  307. Add CTestLimitDashJ test (#12904)
  308. David Golub (2):
  309. CPack/NSIS: Fix compatibility issues with prerelease NSIS (#13202)
  310. CPack/NSIS: Add support for 64-bit NSIS (#13203)
  311. Eric LaFranchi (1):
  312. CPack: WIX Product Icon, UI Banner, UI Dialog support (#13789)
  313. Eric NOULARD (1):
  314. CPackRPM fix #13898 uses IF(DEFINED var) to avoid wrong var value logic
  315. Gerald Hofmann (1):
  316. CPack: Fix NSIS version check without release version (#9721)
  317. James Bigler (4):
  318. Use PRE_LINK instead of PRE_BUILD when testing PRE_LINK.
  319. FindCUDA: Remove linkage against CUDA driver library (#13084)
  320. FindCUDA: Add support for separable compilation
  321. FindCUDA: Added cupti library.
  322. Janne Rönkkö (1):
  323. FindQt4: Do not use qmake from Qt5
  324. Jean-Christophe Fillion-Robin (1):
  325. Add $<SEMICOLON> generator expression.
  326. Marcus D. Hanwell (1):
  327. Removed GenerateExportHeader warnings about old compilers
  328. Mark Salisbury (2):
  329. VS: Specify WinCE subsystem also for DLLs
  330. VS: Specify WinCE subsystems correctly in VS 9 2008
  331. Mathias Gaunard (2):
  332. enable CTEST_USE_LAUNCHERS with Ninja too
  333. Ninja: fix usage of cldeps with ctest launchers
  334. Matt McCormick (7):
  335. ExternalProject: Only run 'git fetch' when required.
  336. ExternalProject: Do smoke tests for Git Tutorial builds.
  337. ExternalProject: Add tests for UPDATE_COMMAND.
  338. ExternalProject: Always do a git fetch for a remote ref.
  339. ExternalProject: Make sure the ExternalProjectUpdate setup is available.
  340. ExternalProject: Verify when a fetch occurs during update test.
  341. ExternalProjectUpdateTest: Only support Git 1.6.5 and greater.
  342. Matthew Woehlke (1):
  343. ccmake: Allow DEL key in first column
  344. Michael Tänzer (4):
  345. GetPrerequisites: Move tool search paths up
  346. GetPrerequisites: Add support for objdump
  347. GetPrerequisites: Enable test for BundleUtilities on MinGW
  348. GetPrerequisites: Add documentation for objdump
  349. Michael Wild (1):
  350. cmDepends: No dependency-vector erasure in CheckDependencies
  351. Morné Chamberlain (15):
  352. Added a generator for Sublime Text 2 project files.
  353. Added some support for sublimeclang_options in the generated project file.
  354. Changed SublimeClang include path generation to expand to absolute paths.
  355. Cleaned up the Sublime Text 2 Generator code a bit.
  356. Fixed support for the Ninja build system.
  357. Added and cleaned up some comments.
  358. The generator no longer generates an explicit list of source files.
  359. The generator no longer generates absolute paths to the ninja.build/Makefiles.
  360. Added a CMAKE_SUBLIMECLANG_DISABLED variable that disables SublimeClang.
  361. Fixed Sublime Text project generation for in-source builds
  362. Define flags in CMAKE_C(XX)_FLAGS are now included in SublimeClang settings.
  363. SublimeText2 Gen: Improved use of define, include flags from CMAKE_C(XX)_FLAGS
  364. SublimeText2 Gen: Fixed the issue where include directory flags used -D
  365. Sublime Text 2 Gen: Per-source Compile flags are now saved in a separate file.
  366. SublimeText 2 Gen: Set the sublimeclang_options_script property.
  367. Neil Carlson (1):
  368. NAG: Use -PIC for Fortran position-independent code (#13932)
  369. Nils Gladitz (2):
  370. CPack: Add a WiX Generator (#11575)
  371. CMake: Add TIMESTAMP subcommand to string and file commands
  372. Patrick Gansterer (28):
  373. Introduce the abstract class cmGlobalGeneratorFactory
  374. Add cmGlobalGeneratorFactory::GetGenerators()
  375. Search generator in cmake::ExtraGenerators before in cmake::Generators
  376. Allow a GeneratorFactory handling of more than one generator
  377. Make cmGlobalGenerator::GetDocumentation() a static function
  378. VS: Remove AddPlatformDefinitions from platform-specific generators
  379. VS: Fix ArchitectureId of Visual Studio 10 IA64 generator
  380. VS: Remove GetPlatformName from platform-specific generators
  381. VS: Remove EnableLanguage from platform-specific generators
  382. VS: Remove platform specific generator files
  383. FindBISON: Add support for the Win flex-bison distribution
  384. FindFLEX: Add support for the Win flex-bison distribution
  385. VS: Remove TargetMachine for linker when checking compiler id
  386. VS: Add CMAKE_VS_PLATFORM_NAME definition to cmMakefile
  387. VS: Add static method to get the base of the registry
  388. VS: Change variable type of ArchitectureId from const char* to string
  389. VS: Change variable type of Name from const char* to string
  390. VS: Support setting correct subsystem and entry point for WinCE
  391. VS: Add parser for WCE.VCPlatform.config to read WinCE platforms
  392. VS: Allow setting the name of the target platform
  393. VS: Make DetermineCompilerId working with WinCE too
  394. VS: Added "Deploy" at project configuration for WindowsCE targets
  395. Add command to generate environment for a Windows CE SDK
  396. VS: Set the correct SubSystem when determinating the CompilerId
  397. VS: Add the entry point when compiling for WindowsCE
  398. VS: Ignore LIBC.lib when linking the CompilerId executables
  399. Set WINCE to 1 when building for WindowsCE
  400. Ninja: Avoid LNK1170 linker error
  401. Peter Kümmel (6):
  402. Ninja: encode LINK_FLAGS to handle bash variables
  403. Ninja: fix building from Codeblocks GUI
  404. Ninja: remove implicit dependency on custom command outputs
  405. Ninja: use MinGW generator code in EnableLanguage()
  406. Ninja: the Ninja generator does not support Fortran yet.
  407. Ninja: escape line breaks in literals
  408. Petr Kmoch (11):
  409. Add tests for list() argument count
  410. Add tests for list() invalid arguments
  411. Consolidate list() argument count testing
  412. Add several get_property() tests
  413. Add tests for EXCLUDE_FROM_DEFAULT_BUILD
  414. Add property EXCLUDE_FROM_DEFAULT_BUILD_<CONFIG>
  415. Define property EXCLUDE_FROM_DEFAULT_BUILD
  416. Add tests for VS_SOLUTION_GLOBAL_SECTIONS
  417. Implement properties VS_GLOBAL_SECTION_*
  418. Define properties VS_GLOBAL_SECTION_*
  419. Documentation: Clarify a few subtleties
  420. Riku Voipio (1):
  421. KWIML: Teach ABI.h about Aarch64
  422. Robert Maynard (4):
  423. XCode generator won't infinitely parse compiler flags (bug #13354).
  424. Correct missing parameter to CMP0018Flags call.
  425. Remove ability to generate sublime clang files.
  426. Update generator to use new cmGeneratorTarget api.
  427. Rodolfo Schulz de Lima (1):
  428. FindGTK2: Fix GTK2_LIBRARIES order for static gtk libraries
  429. Rolf Eike Beer (21):
  430. FindQt: improve version selection
  431. FindQt: add some more places to look for Qt3
  432. Tests: add MajorVersionSelection tests
  433. Linux/PA-RISC: Link with --unique=.text.* to help binutils
  434. FindQt: add to MajorVersionSelection test
  435. CMakeTests: allow to call the check_cmake_test macro with a given file
  436. list: add tests for CMP0007 behavior
  437. GetProperty test: move doc property tests into main process
  438. Find* (and some other): use ${CMAKE_CURRENT_LIST_DIR} in include()
  439. bootstrap: use better defaults for Haiku
  440. Haiku no longer defines __BEOS__
  441. check for Haiku only with __HAIKU__
  442. FindLua51: do not try to link libm on BeOS
  443. FindGLUT: BeOS does not have libXi and libXmu
  444. FindOpenGL: add Haiku paths
  445. doc: fix linebreaks in generator expression documentation
  446. ProcessorCount test: fix path to cmsysTestsCxx executable
  447. ProcessorCount test: require SystemInformation process to work
  448. FindOpenMP: improve documentation (#13895)
  449. properly detect processor architecture on Windows
  450. fix Windows processor detection
  451. Sean McBride (1):
  452. libarchive: fixed undefined left shift with signed ints
  453. Slava Sysoltsev (1):
  454. FindImageMagick: Search quantum depth suffixes (#13859)
  455. Stephen Kelly (158):
  456. GenEx: Test early determination of AND and OR
  457. Enable some compiler warnings when building CMake.
  458. Resolve warnings about unused variables.
  459. Resolve warnings about used enum values in switch blocks.
  460. Resolve warnings about shadowing parameters and local variables.
  461. Resolve ambiguity warning regarding use of && and ||.
  462. Remove references to ancient and removed parts of the code.
  463. Always use the auto_ptr from cmsys.
  464. Port cmGeneratorExpression to cmTarget from cmGeneratorTarget.
  465. Split link information processing into two steps.
  466. Revert "Move GetLinkInformation to cmGeneratorTarget"
  467. Genex: Extract a method to parse parameters.
  468. Genex: Ensure that $<0:...> has a parameter.
  469. Genex: Don't segfault on $<FOO,>
  470. Generate an early-return guard in target Export files.
  471. Fix some warnings from -Wundef
  472. Make targets depend on the link interface of their dependees.
  473. Use cmsys::auto_ptr to manage cmCompiledGeneratorExpressions
  474. Keep track of INCLUDE_DIRECTORIES as a vector of structs.
  475. Add a way to print the origins of used include directories.
  476. Tests: Fix warning about unused variable
  477. Qt4: Add module dependencies to the IMPORTED targets
  478. Don't crash when a target is expected but is not available.
  479. Add test for custom command with a genex referring to a target.
  480. GenEx: Add expressions to specify build- or install-only values
  481. Allow generator expressions to require literals.
  482. Add the TARGET_NAME generator expression.
  483. Add API to extract target names from a genex string.
  484. Add API to populate INTERFACE properties in exported targets.
  485. Make all relevant targets available in the genex context.
  486. Use mapped config properties to evaluate $<CONFIG>
  487. Make cycles in target properties ignored, not an error.
  488. Populate the ExportedTargets member early in GenerateMainFile
  489. Handle INTERFACE properties transitively for includes and defines.
  490. Add CMAKE_BUILD_INTERFACE_INCLUDES build-variable.
  491. Make linking APIs aware of 'head' target
  492. Add LINK_LIBRARIES property for direct target link dependencies
  493. Allow target_link_libraries with IMPORTED targets.
  494. Add the -Wundef flag when compiling CMake.
  495. FindQt4: Add INTERFACE includes and defines to Qt4 targets
  496. Add the target_include_directories command.
  497. Add the target_compile_definitions command.
  498. Keep track of properties used to determine linker libraries.
  499. Add API to calculate link-interface-dependent bool properties or error.
  500. Process the INTERFACE_PIC property from linked dependencies
  501. Fix linking to imported libraries test.
  502. Add cmGeneratorExpression::Split() API.
  503. Don't pass a position when determining if a target name is a literal.
  504. Extract the AddTargetNamespace method.
  505. Split the generator expression before extracting targets.
  506. Split LINK_INTERFACE_LIBRARIES export handling into dedicated method.
  507. Allow generator expressions in LINK_INTERFACE_LIBRARIES.
  508. Add a way to check INTERFACE user property compatibility.
  509. Don't include generator expressions in old-style link handling.
  510. Document the use of generator expressions in new commands.
  511. Add the TARGET_DEFINED generator expression
  512. Strip consecutive semicolons when preprocessing genex strings.
  513. Don't write a comment in the export file without the code.
  514. Only generate one check per missing target.
  515. Move the exported check for dependencies of targets
  516. Move the exported check for file existence.
  517. Add a test for the interfaces in targets exported from the build tree.
  518. Make the BUILD_INTERFACE of export()ed targets work.
  519. Export the INTERFACE_PIC property.
  520. Test evaluation target via export for generator expressions
  521. Make sure generator expressions can be used with target_include_directories.
  522. Populate the link information cache before checking dependent properties.
  523. Exit early if we find an inconsistent property.
  524. Make INTERFACE determined properties readable in generator expressions.
  525. Clear the link information in ClearLinkMaps.
  526. Export the COMPATIBLE_INTERFACE_BOOL content properties
  527. Add the $<TARGET_POLICY> expression
  528. Automatically link to the qtmain library when linking to QtCore.
  529. Don't wrap all targets in LINK_LIBRARIES in a TARGET_NAME genex.
  530. Generate new-style cmake code during export.
  531. Store includes from the same include_directories call together.
  532. Only output includes once after the start of 'generate-time' when debugging.
  533. Specify the target whose includes are being listed.
  534. Output include directories as LOG messages, not warnings.
  535. Revert "Allow target_link_libraries with IMPORTED targets."
  536. Disallow porcelain to populate includes and defines of IMPORTED targets.
  537. Exclude the LINK_LIBRARIES related properties from INTERFACE evaluation.
  538. Make calculation of link-interface-dependent properties type-sensitive.
  539. Add the COMPATIBLE_INTERFACE_STRING property.
  540. Move GetCompileDefinitions to cmTarget.
  541. Process COMPILE_DEFINITIONS as generator expressions in QtAutomoc.
  542. Generate the _IMPORT_PREFIX in the non-config export file.
  543. Add the INSTALL_PREFIX genex.
  544. Fix TARGET_PROPERTY target extractions.
  545. Make the Property name protected so that subclasses can use it.
  546. Don't allow targets args in the new target commands.
  547. Make subclasses responsible for joining content.
  548. Use the result of converting to a unix path.
  549. Handle reading empty properties defined by the link interface.
  550. Advance more when preprocessing exported strings.
  551. Make it an error for INSTALL_PREFIX to be evaluated.
  552. Export targets to a targets file, not a Config file.
  553. Add a way to exclude INTERFACE properties from exported targets.
  554. Add API to check if we're reading a includes or defines property.
  555. Add the $<LINKED:...> generator expression.
  556. Add includes and compile definitions with target_link_libraries.
  557. Test workaround of bad interface include directories from depends.
  558. Optimize genex evaluation for includes and defines.
  559. Cache context-independent includes on evaluation.
  560. Style: Use this-> when invoking member functions.
  561. Process generator expressions for 'system' include directories.
  562. Deduplicate the isGeneratorExpression method.
  563. De-duplicate validation of genex target names.
  564. Test printing origin of include dirs from tll().
  565. The COMPATIBLE_INTERFACE does not affect the target it is set on.
  566. Ensure type specific compatible interface properties do not intersect.
  567. Fix generation of COMPILE_DEFINITIONS in DependInfo.cmake.
  568. Fix determination of evaluating link libraries.
  569. Only use early evaluation termination for transitive properties.
  570. Move a special case for PIC from the genex to the cmTarget code.
  571. Don't keep track of content determined by target property values.
  572. Only append build interface include dirs to particular targets.
  573. Ensure that the build interface includes have been added.
  574. Whitelist target types in target_{include_directories,compile_definitions}
  575. Make sure INTERFACE properties work with OBJECT libraries.
  576. Don't allow utility or global targets in the LINKED expression.
  577. Generate config-specific interface link libraries propeties.
  578. Fix determination of when we're evaluating compile definitions.
  579. Rename the IncludeDirectoriesEntry to be more generic.
  580. Don't use LINKED where not needed.
  581. Use the link information as a source of compile definitions and includes.
  582. Revert "Don't allow utility or global targets in the LINKED expression."
  583. Don't populate INTERFACE includes and defines properties in tll.
  584. Revert "Add the $<LINKED:...> generator expression."
  585. Revert "find_package: Reword <package>_NO_INTERFACES documentation"
  586. Revert "Add a way to exclude INTERFACE properties from exported targets."
  587. Don't add target-specific interface includes and defines to Qt 4 targets.
  588. Fix GenerateExportHeader documentation #13936
  589. automoc: Add source file to target early to set the linker language
  590. Keep track of all targets seen while evaluating a genex.
  591. Add a new Export generator for IMPORTED targets.
  592. Handle targets in the LINK_LIBRARIES of try_compile.
  593. Strip stray semicolons when evaluating generator expressions.
  594. Workaround broken code where a target has itself in its link iface.
  595. Fix DAG checker finding cycling dependencies.
  596. Expand includes and defines transitively in 'external' genexes.
  597. Fix constness of accessors.
  598. Fix the tests for evaluating includes and defines.
  599. Memoize includes and defines from interface libraries.
  600. Remove use of TARGET_DEFINED from target_include_directories test.
  601. Remove use of TARGET_DEFINED from the ExportImport test.
  602. Remove use of TARGET_DEFINED from the target_link_libraries test.
  603. Revert "Add the TARGET_DEFINED generator expression"
  604. Only add existing targets to the Qt4 target depends properties.
  605. Fix the cmGeneratorExpression::Split when leading chars are present.
  606. Fix RPATH information when only a genex is used as a link library.
  607. Mention that IMPORTED targets may be created by a find_package call.
  608. Remove unused parameters from target_link_libraries tests.
  609. Only process transitive interface properties for valid target names.
  610. Restore support for target names with '+' (#13986)
  611. Automoc: Don't create automoc targets if Qt is not used (#13999)
  612. cmake-gui: Use -fPIE if required by Qt.
  613. cmake-gui: Workaround bug in Qt 5.0.0 to 5.0.3 QStandardItemModel
  614. Thomas Klausner (1):
  615. KWIML: Teach ABI.h that VAX is big endian
  616. Yury G. Kudryashov (3):
  617. Automoc: Fix automoc for OBJECT libraries.
  618. Automoc: add OBJECT library to QtAutomoc test
  619. spell: fix a few typos in comments
  620. Changes in CMake 2.8.10.2 (since 2.8.10.1)
  621. ----------------------------------------------
  622. Alex Neundorf (1):
  623. Automoc: fix regression #13667, broken build in phonon
  624. Brad King (1):
  625. Initialize IMPORTED GLOBAL targets on reconfigure (#13702)
  626. David Cole (1):
  627. CMake: Fix infinite loop untarring corrupt tar file
  628. Rolf Eike Beer (1):
  629. FindGettext: fix overwriting result with empty variable (#13691)
  630. Changes in CMake 2.8.10.1 (since 2.8.10)
  631. ----------------------------------------------
  632. Brad King (5):
  633. Fix default PDB output directory (#13644)
  634. Fix PathScale compiler id for Clang-based upstream
  635. Update programmatically-reported copyright year (#13638)
  636. FindSDL: Restore accidentally dropped search paths (#13651)
  637. OS X: Fix default CMAKE_OSX_SYSROOT with deployment target
  638. Rolf Eike Beer (2):
  639. FindOpenSSL: fix library selection on Windows (#13645)
  640. FindOpenSSL: also find the non-MD debug libraries for MSVC
  641. Stephen Kelly (1):
  642. GenEx: Use case insensitive comparison for $<CONFIG:...>
  643. Changes in CMake 2.8.10 (since 2.8.10-rc3)
  644. ----------------------------------------------
  645. None
  646. Changes in CMake 2.8.10-rc3 (since 2.8.10-rc2)
  647. ----------------------------------------------
  648. Rolf Eike Beer (2):
  649. SelectLibraryConfigurations: add testcase
  650. SelectLibraryConfigurations: fix for release and debug libs being the same
  651. Stephen Kelly (5):
  652. BasicConfigVersion: Make docs refer to the macro, not the module name
  653. Document LOCATION undefined behavior with use of LINKER_LANGUAGE.
  654. GenEx: Add an accessor for imported targets in a makefile.
  655. GenEx: Create cmGeneratorTargets for imported targets.
  656. GexEx: Validate Target names and property names differently.
  657. Thomas Arcila (1):
  658. SelectLibraryConfigurations: Fix foreach(x IN LISTS ...) syntax
  659. Changes in CMake 2.8.10-rc2 (since 2.8.10-rc1)
  660. ----------------------------------------------
  661. Alex Neundorf (2):
  662. Document CMAKE_FIND_PACKAGE_NAME
  663. Automoc: fix #13572: issue with symbolic links
  664. Brad King (4):
  665. cmCTestSVN: Fix compilation with Sun CC 5.1
  666. if: Document that plain 'NOTFOUND' is a false constant
  667. string: Clarify regex documentation of '-' behavior
  668. FortranCInterface: Pass all flags to VERIFY project (#13579)
  669. David Cole (1):
  670. NSIS: Fix incorrect uninstall registry key name (#13578)
  671. Eric NOULARD (3):
  672. CPACK_XX_ON_ABSOLUTE_INSTALL_DESTINATION is now properly checked for ON/OFF
  673. Document CPACK_COMPONENT_INCLUDE_TOPLEVEL_DIRECTORY and fix some typo.
  674. Make CPACK_SET_DESTDIR work with archive generator + component-based packaging
  675. Jean-Christophe Fillion-Robin (1):
  676. CTest: Ensure CTEST_USE_LAUNCHERS behaves nicely in Superbuild setup
  677. Pere Nubiola i Radigales (1):
  678. Find PostgreSQL headers on Debian
  679. Peter Kümmel (4):
  680. Ninja: also set OBJECT_DIR when compiling
  681. Ninja: don't pollute current dir when using gui (#13495)
  682. Ninja: implicit dependency for custom command files
  683. Fix regression: write compile definitions if any
  684. Philip Lowman (4):
  685. FindGTK2: Rollback lib64 changes which broke header file finding
  686. FindGTK2: #12049 fix detection of header files on multiarch systems
  687. FindGTK2: #12596 Missing paths for FindGTK2 on NetBSD
  688. FindGTK2: Update local changelog
  689. Rolf Eike Beer (6):
  690. CTest: fix usage of memory checker with spaces in path
  691. CTest: fix pre and post test commands with spaces
  692. CTest: add tests that simulate memcheck runs
  693. CTest: improve memory checker type detection
  694. CTest: add a test for CTEST_CUSTOM_MEMCHECK_IGNORE
  695. CTest: add a check with a quoted memory checker
  696. Stephen Kelly (18):
  697. GenEx: It is not an error to specify an empty parameter
  698. GenEx: Return after error reported.
  699. GenEx: Report actual target name not found, not "0" each time.
  700. GenEx: Parse comma after colon tokens specially
  701. GenEx: Validate target and property names.
  702. GenEx: Ensure that the empty CONFIGURATION can be used conditionally.
  703. GenEx: Add test for $<BOOL:> with empty parameter.
  704. GenEx: Add tests for "0" and "1" expressions with literal commas.
  705. GenEx: Don't use std::vector::at(int).
  706. Attempt to fix the compile of cmake on Sun CC.
  707. GenEx: Parse colon after arguments separator colon specially.
  708. GenEx: Test the use of generator expressions to generate lists.
  709. GenEx: Fix termination bugs in generator expression parser.
  710. GenEx: Break if there are no more commas in the container
  711. GenEx: Add some more asserts to verify code-sanity.
  712. GenEx: Replace some failing tests with Borland and NMake makefiles.
  713. GenEx: Fix reporting about not-found include directories and libraries.
  714. Fix config-specific INCLUDE_DIRECTORIES in multi-config generators
  715. Changes in CMake 2.8.10-rc1 (since 2.8.9)
  716. -----------------------------------------
  717. Scripted Changes (3):
  718. Remove trailing whitespace from most CMake and C/C++ code
  719. Convert CMake-language commands to lower case
  720. Remove CMake-language block-end command arguments
  721. Alex Neundorf (27):
  722. Eclipse: add support for the 4.2 Juno release (#13367)
  723. Eclipse: improve (fix ?) version detection on OSX
  724. Eclipse: fix #13358: don't create bad linked resources
  725. Eclipse: fix #13358: don't create bad linked resources
  726. remove non-working KDE4 test
  727. Eclipse on OSX: fix handling of framework include dirs (#13464)
  728. Eclipse on OSX: improve handling of framework include dirs (#13367)
  729. -fix line length
  730. fix #13474: also rescan dependencies if the depender does not exist
  731. -fix line length
  732. -fix Java dependency scanning, broken in previous commit
  733. error out if CTEST_USE_LAUNCHERS is TRUE but RULE_LAUNCH_* are not set
  734. fix #13494: rerun automoc also if include dirs or moc options change
  735. CMakeDetermineFortranCompiler: add support for cross-compiling (#13379)
  736. Automoc: fix #13493, use target properties for include dirs
  737. Automoc: do not use DEFINITIONS, but only COMPILE_DEFINITIONS
  738. Automoc: also the makefile-COMPILE_DEFINITIONS
  739. cmGlobalGenerator.h: some minor coding style fixes
  740. Modules/readme.txt: fix typo
  741. find_package: add support for a <package>_NOT_FOUND_MESSAGE variable
  742. exports: store pointers to all installations of each export set
  743. exports: accept a missing target if it is exported exactly once
  744. exports: first try at error handling if a target is missing
  745. exports: fix build with MSVC6
  746. exports: move the handling of missing targets into subclasses
  747. exports: define a CMAKE_FIND_PACKAGE_NAME var set by find_package()
  748. exports: add a test for exporting dependent targets
  749. Andreas Mohr (1):
  750. FindCURL: Find older MSVC prebuilts
  751. Andy Piper (1):
  752. Do not include directories which are part of the package install prefix.
  753. Benjamin Eikel (21):
  754. Initial version of find module
  755. FindSDL: Add version support for FindSDL_net
  756. FindSDL: Version support for FindSDL_image
  757. FindSDL: Use prefix SDL_NET, because it matches the file name.
  758. FindSDL: Use SDL_IMAGE prefix for varibales
  759. FindSDL: Add "cmake_minimum_required" to "try_compile" project
  760. FindSDL: Format the documentation
  761. FindSDL: Version support for FindSDL_sound
  762. FindSDL: Use same capitalization for FPHSA as file name
  763. FindSDL: Pass SDL_SOUND_LIBRARY to FIND_PACKAGE_HANDLE_STANDARD_ARGS
  764. FindSDL: Use SDL_MIXER prefix for variables
  765. FindSDL: Add version support for FindSDL_mixer
  766. FindSDL: Update documentation
  767. FindSDL: Use SDL_TTF prefix for variables
  768. FindSDL: Add version support for FindSDL_ttf
  769. FindSDL: Update documentation
  770. FindSDL: Format documentation
  771. FindSDL: Add version support
  772. FindSDL: Add my copyright tag to all FindSDL_* modules
  773. FindSDL: Remove from find_... calls PATHS that are set by default
  774. FindSDL: Stay compatible with old input variables
  775. Bill Hoffman (8):
  776. Use OUTPUT_NORMAL instead of OUTPUT_MERGE for cmake -E chdir.
  777. curl: Use find_package(OpenSSL)
  778. curl: Make OpenSSL DLLs available to CMake on Windows
  779. file(DOWNLOAD): Generalize EXPECTED_MD5 to EXPECTED_HASH
  780. file(DOWNLOAD): Add options for SSL
  781. Utilities/Release: Enable CMAKE_USE_OPENSSL in nightly binaries
  782. Add SSL_VERIFYPEER and CAINFO file options to ExternalProject_Add.
  783. Revert "Ninja: don't expand any rsp files"
  784. Brad King (83):
  785. find_library: Add test covering lib->lib64 cases
  786. find_library: Refactor lib->lib64 conversion
  787. find_library: Simplify lib->lib<arch> expansion
  788. find_library: Fix mixed lib->lib64 (non-)conversion cases (#13419)
  789. CMakeDetermine(C|CXX)Compiler: Consider Clang compilers
  790. Factor common code out of CMakeDetermine(ASM|C|CXX|Fortran)Compiler
  791. Prefer generic system compilers by default for C, C++, and Fortran
  792. Xcode: Fix object library references in multi-project trees (#13452)
  793. Xcode: Run xcode-select to find Xcode version file (#13463)
  794. Watcom: Simplify compiler version detection (#11866)
  795. Remove trailing TAB from NSIS.template.in
  796. Fix WarnUnusedUnusedViaUnset test pass/fail regex
  797. CMakeVersion.bash: Update sed expression for lower-case 'set'
  798. GetPrerequisites: Mark file_cmd as advanced cache entry
  799. Add boolean generator expressions
  800. Add $<CONFIG:...> boolean query generator expression
  801. Recognize Clang ASM support (#13473)
  802. Xcode: Set ASM source language in project file (#13472)
  803. Tests/Assembler: Do not use assembler in universal binaries
  804. Add FindHg module to find Mercurial
  805. ExternalProject: Add Mercurial (hg) repository support
  806. Qt4Macros: Fix recently broken resource file parsing
  807. Tests/ObjectLibrary: Do not enable CXX in subdirectories
  808. VS11: Rename 'Immersive' to 'WindowsAppContainer' (#12930)
  809. VS: Disable precompiled headers unless enabled by project (#12930)
  810. VS11: Generate flag tables from MSBuild V110 tool files
  811. Detect Compaq compiler version with its id
  812. Detect PathScale compiler version with its id
  813. Detect TI compiler version with its id
  814. Detect Comeau compiler version with its id
  815. Detect SDCC compiler version with its id
  816. Detect Cray compiler version with its id
  817. Detect Analog VisualDSP++ compiler version with its id
  818. Re-order C/C++/Fortran compiler determination logic
  819. CMakeDetermineCompilerId: Prepare to detect IDE compiler id
  820. Xcode: Detect the compiler id and tool location
  821. VS10: Define CMAKE_VS_PLATFORM_TOOLSET variable
  822. VS: Detect the compiler id and tool location
  823. Cleanly enable a language in multiple subdirectories
  824. Test variables CMAKE_(C|CXX|Fortran)_COMPILER(|_ID|_VERSION)
  825. Document CMAKE_<LANG>_COMPILER_(ID|VERSION) values
  826. Make platform information files specific to the CMake version
  827. Move CMAKE_<LANG>_COMPILER_WORKS to compiler information files
  828. Store ABI detection results in compiler information files
  829. VS: Remove support for "free" version 2003 tools
  830. VS: Simplify MSVC version reporting
  831. Modernize MSVC compiler information files
  832. VS: Fix MSVC_IDE definition recently broken by refactoring
  833. add_library: Document POSITION_INDEPENDENT_CODE default (#13479)
  834. magrathea: Tell cmELF about DT_RUNPATH (#13497)
  835. Utilities/Release: Link AIX binary with large maxdata
  836. Utilities/xml: Add .gitattributes to disable whitespace checks
  837. Utilities/xml: Add docbook-4.5 DTD (#13508)
  838. docbook: Fix formatter naming convention to avoid shadow
  839. docbook: Fix Sun CC warning on ptr_fun(isalnum)
  840. curl: Honor OPENSSL_NO_SSL2
  841. if: Compare up to 8 components in VERSION tests
  842. ExternalProject: Generalize URL_MD5 option to URL_HASH
  843. Rename SSL terminology to TLS
  844. file(DOWNLOAD): Make TLS options behave as documented
  845. OS X: Add platform-specific Clang compiler info files (#13536)
  846. VS11: Detect VS 2012 Express for default generator (#13348)
  847. VS11: Add VS 2012 Express support (#13348)
  848. file(DOWNLOAD): Add HTTP User-Agent string
  849. ExternalProject: Add DOWNLOAD_NAME option
  850. file(DOWNLOAD): Change EXPECTED_HASH to take ALGO=value
  851. VS8: Remove '.NET' from generator description (#10158)
  852. Clang: Split Compiler/Clang* modules out from GNU (#13550)
  853. Clang: All versions know about -fPIE (#13550)
  854. Xcode: Remove unused code reading CMAKE_OSX_SYSROOT_DEFAULT
  855. OS X: Always generate -isysroot if any SDK is in use
  856. OS X: Improve default CMAKE_OSX_SYSROOT selection
  857. bootstrap: Suppress CMAKE_OSX_SYSROOT if CFLAGS have -isysroot
  858. Tests/Assembler: Use CMAKE_OSX_SYSROOT to generate .s file
  859. OS X: Allow CMAKE_OSX_SYSROOT to be a logical SDK name
  860. OS X: Simplify selection of CMAKE_OSX_ARCHITECTURES
  861. OS X: If CMAKE_OSX_SYSROOT is already set do not compute default
  862. OS X: Further improve default CMAKE_OSX_SYSROOT selection
  863. OS X: Teach deployment target sanity check about SDK names
  864. OS X: Ignore MACOSX_DEPLOYMENT_TARGET during Xcode compiler id
  865. Verify that PDB_(NAME|OUTPUT_DIRECTORY) are honored in test
  866. Document that PDB_(NAME|OUTPUT_DIRECTORY) are ignored for VS 6
  867. Run PDBDirectoryAndName test on MSVC and Intel
  868. Clinton Stimpson (8):
  869. fphsa: clarify message about minimum required version found.
  870. DeployQt4: Include DESTDIR for some cpack generators.
  871. Add -DNDEBUG to RelWithDebInfo flags where where Release flags had it.
  872. Fix regex for qt minor version.
  873. FindQt4: Give precedence to QTDIR environment variable, if set.
  874. FindQt4: Give precedence to QTDIR environment variable, if set.
  875. Fix errors detecting Qt4 on Windows 8.
  876. cmake-gui: Fix error status when interrupted.
  877. Daniel Pfeifer (8):
  878. Simplify CMake.HTML documentation test command line
  879. docbook: Remove table of contents
  880. docbook: Factor out code to write valid DocBook IDs
  881. docbook: Fix the DocBook section output
  882. docbook: Cleanup formatter and generated DocBook
  883. docbook: Add support for <abstract> at section level 1
  884. docbook: Add CMake.DocBook test to validate xml (#13508)
  885. docbook: Remove redundant docs that cause invalid DocBook
  886. David Cole (9):
  887. Begin post-2.8.9 development
  888. Release: Temporarily exclude ExternalProject test on cygwin
  889. Add ability to run as a ctest -S script also
  890. CMake: Clarify the documentation for if(f1 IS_NEWER_THAN f2)
  891. Convert the CPACK_CYGWIN_PATCH_NUMBER variable to a cache variable
  892. InstallRequiredSystemLibraries: Use correct file names (#13315)
  893. ProcessorCount: Mark find_program vars as advanced (#13236)
  894. FindQt4: Avoid "finding" non-existent library in a .framework
  895. FindMPI: Set correct variables for calls to FPHSA
  896. Eric NOULARD (2):
  897. Enhance DESTDIR documentation. Fixes #0012374.
  898. Handles %attr(nnn,-,-) /path/to/file in CPACK_RPM_USER_FILELIST properly.
  899. James Bigler (3):
  900. Replace -g3 with -g for CUDA 4.1 and 4.2 in addition to CUDA < 3.0.
  901. Added CUDA_SOURCE_PROPERTY_FORMAT. Allows setting per file format (OBJ or PTX)
  902. FindCUDA: Added CUDA_HOST_COMPILER variable.
  903. Marcin Wojdyr (1):
  904. Remove CMake multiline block-end command arguments
  905. Nils Gladitz (1):
  906. ctest_update: Tell svn not to prompt interactively (#13024)
  907. Patrick Gansterer (4):
  908. VS: Cleanup AddPlatformDefinitions() of Visual Studio generators
  909. Add additional architectures to CMakePlatformId.h.in
  910. Add WindowsCE platform information files
  911. VS: Remove duplicated implementations of CreateLocalGenerator()
  912. Peter Kuemmel (1):
  913. Ninja: don't expand any rsp files
  914. Peter Kümmel (15):
  915. Ninja: cmcldeps needs a compiler
  916. Ninja: don't crash on returned 0 pointer
  917. Ninja: prepare msvc pdb cleanup
  918. Ninja:split out setting of msvc TARGET_PDB
  919. Ninja: remove GetTargetPDB because it is used only once
  920. Ninja: also detect /showInclude prefix for icl
  921. Find mingw's windres also when Unix Makefiles are used
  922. Ninja: don't suppress warning about compiler options
  923. Ninja: suppress cmcldeps only for source file signature try_compiles
  924. Ninja: filter target specific compile flags with language specific regex
  925. Ninja: OBJECT_DEPENDS should set an implicit dependency
  926. Ninja: don't confuse ninja's rsp files with nmake's
  927. Ninja: move -LIBPATH behind -link option
  928. Ninja: move <OBJECTS> in front of the first linker option
  929. Ninja: add option to enforce usage of response files
  930. Philip Lowman (3):
  931. FindOpenSceneGraph: CMake variable OSG_DIR influences detection now too
  932. FindGTK2: Add GTK2_CAIROMMCONFIG_INCLUDE_DIR for cairommconfig.h
  933. CMakeDetermineVSServicePack: Visual Studio 2012 added
  934. Rolf Eike Beer (25):
  935. remove lib64 Unix paths if the respective lib path is also given
  936. FindOpenSSL: find cross-compiled OpenSSL from MinGW (#13431)
  937. FindOpenSSL: use SelectLibraryConfigurations
  938. FindOpenSSL: let CMake handle environment variable HINTS
  939. FindOpenSSL: cleanup path hints
  940. FindOpenSSL: remove leftover comment
  941. SelectLibraryConfiguration: generate correct output when input vars are lists
  942. Fix typo direcotry -> directory (and similar) [#13444]
  943. FindSelfPackers: fix typo (#13456)
  944. CheckTypeSize: show in documentation how to get struct member size (#10579)
  945. CheckTypeSize: add a test for size of struct members
  946. FindX11: remove duplicates from X11 include path list (#13316)
  947. FindX11: avoid calling list(REMOVE_DUPLICATES) on an empty list
  948. list command: error on too many arguments
  949. CMake.List test: explicitely test with lists containing only an empty string
  950. use the find_* functions ENV parameter
  951. use PATH_SUFFIXES to simplify find_* calls
  952. do not escape spaces in regular expressions
  953. read less from version headers into variables
  954. FindFLEX: fix version extraction on Apple
  955. FindGettext: remove code duplicating FPHSA checks
  956. include FPHSA from current directory in all modules
  957. FindOpenSceneGraph: simplify by using more features of FPHSA
  958. FindSDL: add SDLMAIN_LIBRARY only once (#13262)
  959. add documentation for all MSVCxxx version variables (#12567)
  960. Sergei Nikulov (1):
  961. fix for discovering ft2build.h using FREETYPE_DIR environment var (#13502)
  962. Stephen Kelly (60):
  963. Add new qt4_use_modules function.
  964. Add missing whitespace to docs.
  965. Fix some typos in the docs.
  966. Remove incorrect doc string for link type enum
  967. Remove duplicate 'of' from docs.
  968. Fix unfortunate documentation error for PIC feature.
  969. Don't duplicate -D defines sent to the compiler.
  970. Fix CompileDefinitions test on Visual Studio.
  971. Fix the test setting COMPILE_DEFINITIONS target property
  972. Rename files from main.cpp to more meaningful names.
  973. Fix casing of 'Qt' in docs, comments and user-visible strings.
  974. Read entire Qt4 qrc file when parsing for depends info.
  975. Add a return-after-error if an old Qt is found.
  976. Use CMake platform variables instead of Qt ones.
  977. Move variable setting down to where it relates to.
  978. Remove an if which is always true.
  979. Use add_subdirectory instead of the obsolete subdirs.
  980. Replace two include_directories with a setting.
  981. Compile with both Qt4 and Qt5.
  982. Build with Qt5 if it is found.
  983. cmGeneratorExpression: Re-write for multi-stage evaluation
  984. cmGeneratorExpression: Port users to two-stage processing
  985. Fix the regular expression validator for target names.
  986. Handle colons as a special case in the generator expression parser.
  987. Enable deprecated API when using Qt 5.
  988. Add more forwarding API to cmGeneratorTarget.
  989. Store cmGeneratorTargets with the makefile.
  990. Move GenerateTargetManifest to cmGeneratorTarget.
  991. Move GetLinkInformation to cmGeneratorTarget
  992. Make cmLocalGenerator::AddArchitectureFlags take a cmGeneratorTarget.
  993. Move GetCreateRuleVariable to cmGeneratorTarget.
  994. Port cmLocalGenerator::GetTargetFlags to cmGeneratorTarget.
  995. Move GetIncludeDirectories to cmGeneratorTarget.
  996. Append the COMPILE_DEFINITIONS from the Makefile to all targets.
  997. Add a wrapper for accessing config-specific compile-definitions.
  998. Add convenience for getting a cmGeneratorTarget to use.
  999. Fix compiler warning with initialization order.
  1000. Revert "Move GenerateTargetManifest to cmGeneratorTarget."
  1001. Use the cmGeneratorTarget for the include directories API.
  1002. Fix indentation in the code blocks generator.
  1003. Port remaining code to GetCompileDefinitions().
  1004. Add include guard for cmGeneratorExpression.
  1005. Don't prepend a path before generator expressions in include_directories.
  1006. Convert paths in INCLUDE_DIRECTORIES property to Unix slashes.
  1007. Add an AppendDefines std::string overload.
  1008. Return a std::string from GetCompileDefinitions.
  1009. Refactor GetCompileDefinitions a bit.
  1010. Extend the generator expression language with more logic.
  1011. Add a generator expression for target properties.
  1012. Add API to check that dependent target properties form a DAG.
  1013. Add a self-reference check for target properties.
  1014. Early return if there is no target.
  1015. Process generator expressions in the INCLUDE_DIRECTORIES property.
  1016. Process generator expressions in the COMPILE_DEFINITIONS target property.
  1017. Fix the layout of the generator expression documentation.
  1018. Fix punctuation in some variables documentation.
  1019. Document that generator expressions can be used in target properties.
  1020. Remove unused parameter marker and the unused parameter.
  1021. Fix minor typos.
  1022. Remove period at the end of the check message.
  1023. Tom Schutter (2):
  1024. cmake-mode.el: Use more readable regex and case-fold-search
  1025. cmake-mode.el: add local keybindings
  1026. Xavier Besseron (7):
  1027. cmCTestSVN: Add the new SVNInfo structure
  1028. cmCTestSVN: Extend Revision struct with SVN repo information
  1029. cmCTestSVN: Add the Repositories list and the RootInfo pointer
  1030. cmCTestSVN: Create the SVNInfo for the root repository
  1031. cmCTestSVN: Use the SVNInfo structure
  1032. cmCTestSVN: Add a LoadExternal() function and an ExternalParser class
  1033. cmCTestSVN: Load and process information from externals
  1034. Yuchen Deng (1):
  1035. Add PDB_OUTPUT_DIRECTORY and PDB_NAME target properties (#10830)
  1036. Yury G. Kudryashov (7):
  1037. exports: Move cmTargetExport to a dedicated header file
  1038. exports: Remove cmTargetExport constructor
  1039. exports: Rename cmGlobalGenerator::AddTargetToExport{s,}
  1040. exports: Create class cmExportSet
  1041. exports: Add cmExportSetMap class
  1042. exports: Hold an ExportSet pointer in cm*Export*Generator
  1043. exports: cmGlobalGenerator::ExportSets destructor will clear it
  1044. Zack Galbreath (2):
  1045. Clean up documentation formatting so that it is rendered properly in HTML.
  1046. cmparseMSBuildXML: Include DisplayName in the output
  1047. Changes in CMake 2.8.9 (since 2.8.9-rc3)
  1048. ----------------------------------------
  1049. None
  1050. Changes in CMake 2.8.9-rc3 (since 2.8.9-rc2)
  1051. --------------------------------------------
  1052. Alexey Ozeritsky (1):
  1053. Fixed: FindLAPACK does not find MKL 10.3 when using gcc 4.x
  1054. Brad King (3):
  1055. pre-commit: Reject C++ code with lines too long
  1056. Tests/X11: Add missing include <stdlib.h> for 'rand'
  1057. Tests/ObjC++: Use standard <iostream> header
  1058. David Cole (1):
  1059. CPack: Use bin subdir when looking for dpkg and rpmbuild
  1060. Eric NOULARD (2):
  1061. Do not run cpack at CMake time it is not available.
  1062. Find dpkg and rpmbuild in usual Fink and MacPort paths
  1063. Nicolas Despres (17):
  1064. Ninja: Cannot pass a reference to an anonymous object.
  1065. Ninja: Add support for OS X app bundles.
  1066. Ninja: Add support for OX X library framework.
  1067. Ensure 3rd party libraries are writable.
  1068. Remove trailing white-spaces.
  1069. Re-factor OS X bundle and framework generation.
  1070. Ninja: Copy resource files in the bundle.
  1071. Ninja: Add support for CFBundle.
  1072. Enable BundleTest with CLang too.
  1073. Re-factor CFBundle generation.
  1074. Ninja: Use same echo message as makefiles.
  1075. Re-factor bundle content copying rules generation.
  1076. Re-factor Mac OS X content directory computation.
  1077. Re-factor framework directory computation.
  1078. Re-factor OS X content generator start up.
  1079. Fix memory leak in Makefile generator.
  1080. Add missing this->.
  1081. Peter Kuemmel (1):
  1082. Ninja: dep files and multiple -arch flags not possible on mac
  1083. Peter Kümmel (24):
  1084. Ninja: windres is also used for cross-compiling
  1085. Ninja: search for windres with prefix
  1086. Ninja: there could be null pointers
  1087. Ninja: more searching for windres
  1088. Ninja: path is already declared
  1089. Ninja: fix GCC 4.7 warning -Wconversion
  1090. Ninja: fix sytle
  1091. Ninja: also stop when .rc's .d file couldn't be generated
  1092. Ninja: readd quotes to src file path before patching it
  1093. Ninja: cmcldeps needs absolute paths for RCs
  1094. Ninja: on Mac no multiple -arch because of -M
  1095. Ninja: fix mis-matching endif() argument
  1096. Ninja: also mingw needs TARGET_PDB
  1097. Ninja: line length
  1098. Ninja: make TARGET_PDB a real .gdb file name
  1099. Ninja: make debug symbol suffix configurable by CMAKE_DEBUG_SYMBOL_SUFFIX
  1100. Ninja: remove 'friend' in ninja code
  1101. Ninja: remove warnings
  1102. Ninja: remove 'this' from member initializer list
  1103. Ninja: fixes for bcc
  1104. Ninja: enable ninja on Mac so all Mac CDash-builds are tested, cleanup later
  1105. Ninja: void function can't return a value
  1106. Ninja: enable ninja support everywhere
  1107. Ninja: also bootstrap ninja files
  1108. Changes in CMake 2.8.9-rc2 (since 2.8.9-rc1)
  1109. --------------------------------------------
  1110. Alex Neundorf (4):
  1111. -remove trailing whitespace
  1112. documentation: preparation for making the man section configurable
  1113. man documentation: detect man section from the given filename
  1114. Eclipse: fix #13313, always set LANG to C, also if unset
  1115. Bill Hoffman (1):
  1116. Remove process execution code from cmcldeps and have it use cmake code.
  1117. Brad King (12):
  1118. KWIML: Generalize interface to report broken integer literal macros
  1119. KWIML: Teach ABI.h about 'long long' and 'char' on old HP
  1120. KWIML: Teach INT.h that no HP platform implements SCN*8 formats
  1121. KWIML: Teach INT about broken UINT32_C on old HP
  1122. Fix project command documentation typo (#13384)
  1123. CTestUpdateSVN: Do not create repo directory first (#13349)
  1124. Tests/CustomCommand: Do not use 'main' in a library
  1125. AIX-GNU: Link shared libs with -brtl,-bnoipath (#13352)
  1126. include: Ignore empty string as file name (#13388)
  1127. Add ASM platform information for GNU compiler on AIX (#13390)
  1128. if: Document that macro arguments are not variables (#13393)
  1129. install: Fix COMPONENT option
  1130. Clinton Stimpson (3):
  1131. GetPrerequisites.cmake: detect executables built with the -pie linker flag.
  1132. cmake-gui: Fix code to respect current locale.
  1133. DeployQt4: workaround bug 13258 where ARGV1 is leaked into a sub function.
  1134. David Cole (7):
  1135. STYLE: Fix line length, remove extra blank line
  1136. CTest: Refactor error output into ErrorMessageUnknownDashDValue
  1137. CTest: Rename local variable for clarity
  1138. CTest: Extend -D command line arg handling for variable definitions
  1139. CTest: Allow -Dvar=value with no space between the D and the var
  1140. CTest: Add test to verify -D variable definitions work
  1141. Ninja: Fix typo: tagets -> targets
  1142. Eric NOULARD (3):
  1143. Enhance documentation of install command w.r.t. the "Undefined" component.
  1144. CPack fix regression between 2.8.7 and 2.8.8 when running cpack with no arg.
  1145. Do not provide defaul value for CPACK_PACKAGE_DIRECTORY if found in config.
  1146. Nicolas Despres (1):
  1147. Ninja: Clean all symlink created for libraries.
  1148. Peter Kuemmel (6):
  1149. Ninja: print error message when command failed
  1150. Ninja: also consider variables when checking command line length
  1151. Ninja: also consider rule command length for rsp file
  1152. Ninja: remove int/size_t warning
  1153. Ninja: add soname test case
  1154. Ninja: don't shadow 'outputs' variable
  1155. Peter Kümmel (6):
  1156. Ninja: also write link libraries to rsp file
  1157. Ninja: remove some unused default arguments
  1158. Ninja: error on missing rspfile_content
  1159. Ninja: disable work around when linking with mingw
  1160. Ninja: enable response file support on Mac (length 262144)
  1161. Ninja: sysconf() is declared in unistd.h
  1162. Philip Lowman (2):
  1163. FindBoost: Fix bug where Boost_FOUND could be false when version specified
  1164. FindBoost: Future proof to 1.56
  1165. Rolf Eike Beer (2):
  1166. FindJava: improve version matching (#12878)
  1167. fix 2 space bugs in variable documentation
  1168. Stephen Kelly (3):
  1169. Use full paths in compile_commands.json for out of source builds.
  1170. Construct the full path before escaping it.
  1171. Fix PositionIndependentTargets test with clang trunk.
  1172. Changes in CMake 2.8.9-rc1 (since 2.8.8)
  1173. ----------------------------------------
  1174. Alex Neundorf (12):
  1175. -fix #13081: support OBJECT libraries in CodeBlocks/QtCreator projects
  1176. CodeBlocks: improve support for OBJECT libraries
  1177. fix #13195: avoid multiple mentions of found packages
  1178. FeatureSummary.cmake: nicer formatting
  1179. -strip trailing whitespace
  1180. make default install component name configurable
  1181. -add docs for ${CMAKE_INSTALL_DEFAULT_COMPONENT_NAME}
  1182. write_basic_package_version_file() now works with unset CMAKE_SIZEOF_VOID_P
  1183. add test for #13241: empty SIZEOF_VOIDP in write_basic_package_version_file
  1184. ASM compiler detection: remove debug output (#13270)
  1185. Eclipse: parallel build also for "Build project" #13287
  1186. automoc: better error handling (#13299)
  1187. Anthony J. Bentley (1):
  1188. FindwxWidgets: Do not use -isystem on OpenBSD (#13219)
  1189. Ben Boeckel (2):
  1190. Don't put legacy variables back into the cache
  1191. Search for other ABIFLAGS builds of Python
  1192. Bill Hoffman (15):
  1193. Add support to ctest for GTM mumps coverage.
  1194. Fix warning about char* instead of const char*.
  1195. Fix line length.
  1196. Add test for mumps coverage. Also refactor code to prepare for cache coverage.
  1197. Add virutal destructor to silence warning.
  1198. Add support for Cache coverage.
  1199. Fix some warnings and a bug where it went past the length of a vector.
  1200. Use a script to run the test because WORKING_DIRECTORY is not in 2.8.2.
  1201. Use <TARGET_FILE> expression to run ctest so it works with Xcode and VS IDE.
  1202. Add ability to specify more than one package directory or coverage directory.
  1203. Remove uncovered files from cache coverage data.
  1204. Disable bullseye coverage for mumps coverage test.
  1205. Update test data to match new coverage format.
  1206. Do not try to run bullseye coverage if COVFILE env is empty.
  1207. CDash now supports lots of files in coverage. So, show all files.
  1208. Brad King (59):
  1209. Add LICENSE and NOTICE
  1210. Add 'tips' script to suggest local configuration
  1211. Add 'setup-user' script to configure authorship information
  1212. Add 'setup-hooks' script to install local hooks
  1213. Add 'setup-gerrit' script to configure Gerrit access
  1214. Add 'setup-stage' script to configure topic stage remote
  1215. Add 'setup-ssh' script to configure ssh push access
  1216. Add README instructions and sample configuration
  1217. Add and configure developer setup helper scripts
  1218. Exclude from source archives files specific to Git work tree
  1219. Exclude from CMake source archives files specific to Git work tree
  1220. Refactor CMake version handling
  1221. Document behavior of multiple target_link_libraries calls (#13113)
  1222. ctest_coverage: Save/restore LC_ALL around gcov (#13136)
  1223. Cleanup custom command .rule file internal handling
  1224. Factor out custom command .rule file path generation
  1225. VS10: Avoid creating .rule files next to outputs (#13141)
  1226. find_package: Document <package>_FIND_* variables (#13142)
  1227. find_package: Fix components signature documentation (#13142)
  1228. Teach RunCMake tests to allow custom checks
  1229. list: Handle errors on empty lists more gracefully (#13138)
  1230. include_external_msproject: Test TYPE, GUID, PLATFORM options (#13120)
  1231. VS: Fix line-too-long style errors
  1232. libarchive: Avoid 'inline' keyword on XL C v6 (#13148)
  1233. Intel: On Windows use /EHsc instead of deprecated /GX (#13163)
  1234. KWSys: Remove DateStamp
  1235. try_compile: Cleanup temporary directories (#13160)
  1236. setup-stage: Optionally reconfigure topic stage
  1237. CTest: Escape MemCheck test output for XML (#13124)
  1238. Documentation: Fix HTML anchor ranges
  1239. Require CMake 2.8.2 or higher to build CMake
  1240. CTest: Simplify environment save/restore
  1241. KWSys: Fix SystemTools environment memory handling (#13156)
  1242. VS10: Refactor custom commands to use WriteSource
  1243. VS10: Simplify vcxproj.filter file generation
  1244. VS10: Convert paths normally unless forced to relative
  1245. VS11: Do not use source path conversion workaround specific to VS 10
  1246. VS10: Generate relative source paths when possible (#12570)
  1247. Intel: On Windows use /RTC1 instead of deprecated /GZ (#13174)
  1248. Test NO_SONAME property (#13155)
  1249. KWSys: Remove dependencies on FundamentalType
  1250. Documentation: Improve HTML section index format
  1251. VS: Restore header files marked as OS X Framework content (#13196)
  1252. VS11: Fix ARM architecture hint typo (#13077)
  1253. Fortran: Follow <>-style includes (#13239)
  1254. bootstrap: Port back to old shells (#13199)
  1255. KWSys: Remove unused environ declaration from SystemTools
  1256. FindBZip2: Search locations in GnuWin32 registry
  1257. cmArchiveWrite: Clear fflags from archive entries
  1258. Makefile: Support directory names containing '=' (#12934)
  1259. libarchive: Avoid 'inline' on SunPro < 5.9 (#13277)
  1260. Avoid direct use of std::(o|)stringstream (#13272)
  1261. KWIML: Add interface to report broken integer format macros
  1262. KWIML: Report broken integer format macros on AIX 4.3
  1263. add_library: Allow OBJECT library without dynamic linking (#13289)
  1264. install: Fix FILES_MATCHING on case-sensitive Mac filesystems (#13177)
  1265. Make CTest.UpdateGIT robust to Git safecrlf on Windows
  1266. Do not crash on SHARED library without language (#13324)
  1267. CMakeDetermineCCompiler: Fix typo "_CXX_" -> "_C_" (#13330)
  1268. Brian Helba (1):
  1269. Print any evaluated 'elseif'/'else' commands in trace mode (#13220)
  1270. Charlie Sharpsteen (1):
  1271. Mac: Add guards to CMAKE_FIND_FRAMEWORK and CMAKE_FIND_APPBUNDLE defaults
  1272. Clinton Stimpson (1):
  1273. cmake-gui: Wait for configure/generate thread to complete before exiting.
  1274. Daniel R. Gomez (6):
  1275. KWSys: Fix hashtable prime list on g++ 2.9 (#13273)
  1276. Tests/IncludeDirectories: Files must end in a newline (#13314)
  1277. Tests/VSGNUFortran: Avoid C++ comment in C code (#13314)
  1278. Tests/Assembler: Assemble and link with same flags (#13314)
  1279. Fix FindPackageMode test Makefile (#13314)
  1280. Avoid string.clear and string.push_back (#13319)
  1281. David Cole (12):
  1282. Begin post-2.8.8 development
  1283. CPack/NSIS: Add CPACK_NSIS_EXTRA_PREINSTALL_COMMANDS (#13085)
  1284. ExternalProject: Add missing COMMAND keyword
  1285. ExternalProject: Avoid unnecessary git clones (#12564)
  1286. ExternalProject: Refactor repeated code into function (#12564)
  1287. ExternalProject: Avoid repeated git clone operations (#12564)
  1288. CTest: Modify reg ex so it also works with gcov 4.7 output (#13121)
  1289. BZip2: Remove unnecessary *.bz2 files from CMake source tree
  1290. Ninja: Enable the ninja generator by default on Windows.
  1291. Revert "Millenium update: 79 * (16/9)/(4/3) = 105"
  1292. Ninja: Restructure code to work with the Borland compilers
  1293. Remove unused ivars to eliminate compiler warnings
  1294. David Faure (1):
  1295. Abort FindQt4.cmake if Qt 5 is found.
  1296. Eric NOULARD (12):
  1297. Use fakeroot for control.tar.gz as well
  1298. Enhancement of bash completion scripts given by Igor Murzov.
  1299. Install editors helper files
  1300. CPack - preserve timestamp for CPACK_INSTALLED_DIRECTORIES. fixes: #0013193
  1301. CPack add easy possibility to warn about CPACK_SET_DESTDIR
  1302. CPack add necessary check to detect/warns/error on ABSOLUTE DESTINATION
  1303. Fix KWStyle warning
  1304. Use CPACK_xxx and CMAKE_xxx in a consistent way.
  1305. CPack allow RPM and DEB generator to be used on OSX.
  1306. Calm down Borland compiler warning about "always true"
  1307. CPackRPM: avoid leakage of RPM directive from one component to another.
  1308. CPackDeb add missing documentation for some CPACK_DEBIAN_xx variables.
  1309. Fraser Hutchison (1):
  1310. CPack: Fixed incorrect error log for CPACK_NSIS_MENU_LINKS.
  1311. Jan Schaffmeister (1):
  1312. Xcode: Recognize storyboard source files (#13214)
  1313. Jim Hague (2):
  1314. libarchive: Avoid trailing , in enum for XL v6 (#13148)
  1315. Workaround IBM XL v6 streams seekg bug (#13149)
  1316. Jonathan Klein (1):
  1317. FindBullet: Add missing math library name (#13309)
  1318. Joseph Snyder (1):
  1319. Change GT.M Coverage Parser global
  1320. Konstantin Tokarev (1):
  1321. [OSX] Fixed undefined symbol when linking CMakeLib into shared library
  1322. Kurtis Nusbaum (1):
  1323. Added conditional for the phonon backend plugin.
  1324. Leonid Yurchenko (1):
  1325. include_external_msproject: Add TYPE, GUID, PLATFORM options (#13120)
  1326. Mario Bensi (1):
  1327. Add FindLibLZMA Module
  1328. Mariusz Plucinski (1):
  1329. Do not crash on unknown source language (#13323)
  1330. Matt McCormick (1):
  1331. ExternalProject: Fix 'make' builds with Ninja (#13159)
  1332. Minmin Gong (1):
  1333. VS11: Add ARM architecture generator (#13077)
  1334. Modestas Vainius (3):
  1335. Fix CPack RPM man page typo detected by lintian.
  1336. Support building shared libraries or modules without soname (#13155)
  1337. Fix a few typos in NO_SONAME property description.
  1338. Nicolas Despres (2):
  1339. Ninja: Add a convenient 'clean' target.
  1340. Ninja: Add a convenient 'help' target.
  1341. Patrick Gansterer (1):
  1342. Added CPACK_NSIS_ENABLE_UNINSTALL_BEFORE_INSTALL
  1343. Peter Collingbourne (2):
  1344. Ninja: apply CMAKE_<LANG>_FLAGS_<TYPE> to executable targets (#13069)
  1345. Ninja: mark rules/build file streams failed if error occurred (#13067, #13105)
  1346. Peter Kuemmel (61):
  1347. Ninja: ensure output directories exist
  1348. Ninja: no 16:9 screens for the cmake team ;)
  1349. Ninja: add option to enable ninja where it is not enabled by default
  1350. Ninja: remove GCC -Wshadow warning
  1351. Ninja: enable Ninja for CodeBlocks
  1352. Ninja: no additional variable needed to enable ninja
  1353. Ninja: CMAKE_USE_NINJA is the name of the macro
  1354. VC Express doesn't support folders, ignore USE_FOLDER property
  1355. Ninja: add response file support on Windows
  1356. Ninja: 30000 is too long for windows cmd
  1357. Ninja: check for valid pointer
  1358. Ninja: also create rspfile rules
  1359. Ninja: don't break because of empty commands
  1360. Ninja: find mingw's resource compiler
  1361. Ninja: add dependency tracking for msvc with cldeps
  1362. Ninja: add wrapper for cl to extract dependencies
  1363. Ninja: allow spaces in source path
  1364. Ninja: assume cmcldeps in the same dir as cmake
  1365. Ninja: add copyright and description
  1366. Ninja: don't set cmcldeps vars to empty string when they are not defined
  1367. Ninja: fix ModuleNoticies test
  1368. Ninja: don't use cmcldeps for try_compile
  1369. Ninja: allow spaces in cldeps's .d file
  1370. Ninja: fix line length
  1371. Ninja: don't pollute the rules file with useless comments
  1372. Ninja: use slahes in .d files
  1373. Line Length: <79
  1374. Millenium update: 79 * (16/9)/(4/3) = 105
  1375. Ninja: complete MinGW support
  1376. Ninja: use slashes for include dirs, so also slahes are in the .d files
  1377. Ninja: ninja can't read dep. pathes with parentheses
  1378. Ninja: work with ninja/master, don't compile rc files with cl
  1379. Ninja: extract dependencies for .rc files with msvc tools
  1380. Ninja: remove unused CommentStream
  1381. Ninja: onyl use pre processor for rc file parsing
  1382. Ninja: suppress startup logos
  1383. Ninja: cmcldeps
  1384. Ninja: don't use shell when cmake is called directly
  1385. Ninja: ninja now also could read parentheses in .d files
  1386. Ninja: fix Linux build
  1387. Ninja: sh needs something befor and after &&
  1388. Ninja: build with old vc versions
  1389. Ninja: remove nop line
  1390. Ninja: undo all the NOSHELL patches
  1391. Ninja: be more accurate when estimating the command line length
  1392. Ninja: don't pollute build dir with preprocessed rc files
  1393. Ninja: Eclipse and KDevelop fixes for ninja
  1394. Ninja: no /nologo option in old rc.exe
  1395. Ninja: but cl supports /nologo ...
  1396. Ninja: try to make GetProcessId visible
  1397. Ninja: build cmcldeps with mingw
  1398. Ninja: don't remove space between command and parameters
  1399. Ninja: some bytes of the rc files couldn't be piped correctly
  1400. Ninja: build server fixes
  1401. Ninja: build with old msvc versions
  1402. Ninja: msvc6 for-scoping
  1403. Ninja: maybe this fixes the bcc32 build
  1404. remove warning about unused parameter
  1405. Ninja: build server fixes
  1406. Ninja: try work around for bcc32 bug
  1407. Ninja: disable cldeps for bcc32, it's too old, and ninja would also not build
  1408. Rolf Eike Beer (12):
  1409. FindPkgConfig.cmake: fix documented output variable not set (#13125,#13132)
  1410. UseJava: fix typo in variable name (#13135)
  1411. Check{C,CXX}CompilerFlag: catch more Intel warning types (#12576)
  1412. FindPythonLibs: honor EXACT version specification (#13216)
  1413. UseJava: fix find_jar() called with multiple files (#13281)
  1414. fix some typos
  1415. do not explicitely specify /usr and /usr/local as search paths
  1416. replace open coded versions of file(TO_CMAKE_PATH)
  1417. FindDevIL: clean up documentation formatting
  1418. FindQt4: extend documentation
  1419. Qt4Macros: improve basename extraction in QT4_ADD_DBUS_INTERFACES
  1420. Qt4Macros: add some quotes to prevent damage from spaces in the paths
  1421. Sean McBride (1):
  1422. Remove unused ivars to eliminate compiler warnings
  1423. Sebastian Leske (1):
  1424. Improve documentation of set command (#13269)
  1425. Stephen Kelly (10):
  1426. Fix the number variable comparison when Qt is not found.
  1427. Update the docs of IMPORTED_LOCATION_CONFIG to match the code.
  1428. Move the EscapeJSON method to a sharable location.
  1429. Add newline to the output.
  1430. Make the CMAKE_EXPORT_COMPILE_COMMANDS option work with Ninja.
  1431. Escape the source file to be compiled if required.
  1432. Exclude the CompileCommandOutput test on WIN32.
  1433. Add platform variables for position independent code flags
  1434. Add platform variable for flags specific to shared libraries
  1435. Refactor generation of shared library flags
  1436. Tobias Bieniek (1):
  1437. Qt4Macros: Added support for generated resource files
  1438. Zack Galbreath (1):
  1439. FindPythonLibs: Document cache variables (#13240)
  1440. Zaheer Chothia (1):
  1441. VS: Set Intel Fortran 13 project version
  1442. Changes in CMake 2.8.8 (since 2.8.8-rc2)
  1443. ----------------------------------------
  1444. Brad King (1):
  1445. CheckIncludeFiles: Shorten check description message
  1446. David Cole (3):
  1447. CPackNSIS: Rewrite variable documentation to make it more readable.
  1448. OS X: Use correct extra path when searching for applicaton bundles (#13066)
  1449. OS X: Mark find_program results as advanced
  1450. Eric NOULARD (1):
  1451. Fix some doc typo and add an undocumented var.
  1452. Kashif Rasul (1):
  1453. OS X: Use OSX_DEVELOPER_ROOT for app search path (#13066)
  1454. Rolf Eike Beer (1):
  1455. FindBoost: add support for 1.49 and 1.50
  1456. Changes in CMake 2.8.8-rc2 (since 2.8.8-rc1)
  1457. --------------------------------------------
  1458. Alex Neundorf (4):
  1459. make cmLocalGenerator::EscapeForCMake() static
  1460. automoc: fix #13018, proper cmake escaping to avoid false rebuilds
  1461. automoc: add define to test which caused bug #13018
  1462. fix #13054: support OBJECT libraries in Eclipse
  1463. Ben Boeckel (1):
  1464. Create granular targets for Ninja generators too
  1465. Brad King (6):
  1466. CTest.UpdateHG: Fix repo URL for leading slash
  1467. Always compile sources with known language
  1468. Classify known header file extensions as headers
  1469. VS: Add CMakeLists.txt re-run rules at start of generation
  1470. Test generated module .def files
  1471. Ninja: Fix module .def file path conversion
  1472. David Cole (2):
  1473. CMake: Clarify SUFFIX target property documentation.
  1474. Xcode: Pay attention to custom configuration types (#13082)
  1475. Peter Collingbourne (1):
  1476. Ninja: Substitute <OBJECT> and <CMAKE_C_COMPILER> in depfile flags
  1477. Rolf Eike Beer (2):
  1478. FILE: mention that TO_CMAKE_PATH also handles list delimiters
  1479. FIND_LIBRARY: document FIND_LIBRARY_USE_LIB64_PATHS
  1480. Sean McBride (1):
  1481. automoc: include <unistd.h> on Apple to get pathconf
  1482. Tom Hughes (1):
  1483. Override topdir from rpm command line seems necessary on Amazon linux.
  1484. Changes in CMake 2.8.8-rc1 (since 2.8.7)
  1485. ----------------------------------------
  1486. Aaron C. Meadows (1):
  1487. Visual Studio: Allow setting Single Byte Character Set (#12189)
  1488. Alex Neundorf (34):
  1489. GNUInstallDirs: add support for Debian multiarch
  1490. FindRuby: fix usage of RUBY_VERSION_MAJOR (#12172)
  1491. FindRuby: add more possible library names (for ubuntu, #12172)
  1492. FindRuby.cmake: add more debug output
  1493. fix FeatureSummary for REQUIRED packages, they were reported as OPTIONAL
  1494. FindGetText: fix multiple targets with the same name problem (CMP0002)
  1495. fix #6976: FindX11 also searches for X11_Xxf86vm_LIB
  1496. GenerateExportHeader: use double quotes around _gcc_version
  1497. -remove trailing whitespace
  1498. -don't pull in CheckTypeSize.cmake from the cmake which is being built
  1499. bootstrap: move while() and endwhile() into the bootstrap build
  1500. Check*.cmake: Expand imported targets in CMAKE_REQUIRED_LIBRARIES
  1501. find_package: print error if an invalid CONFIGS name is used
  1502. find_package: rename NoModule to UseFindModules
  1503. find_package: improve error message when no Find module is present
  1504. find_package: add MODULE mode to use only Find-modules
  1505. find_package: add CONFIG mode keyword alias for NO_MODULE
  1506. find_package: mention requested version number in error message
  1507. add CMakePackageConfigHelpers: configure_package_config_file()
  1508. wrap write_basic_config_version_file as write_basic_package_version_file()
  1509. find_package: error out if REQUIRED Config has not been found
  1510. write_basic_package_version_file(): improve documentation
  1511. write_basic_package_version_file: add ExactVersion mode
  1512. WriteBasicConfigVersionFile: add test for ExactVersion mode
  1513. find_package: allow <pkg>Config.cmake to set <pkg>_FOUND to FALSE
  1514. find_package: add test for setting Foo_FOUND to FALSE in a Config file
  1515. find_package: additional test for checking the error message
  1516. find_package: add OPTIONAL_COMPONENTS keyword
  1517. FPHSA(): add missing "]" to documentation
  1518. find_package: add documentation for OPTIONAL_COMPONENTS
  1519. FPHSA(): add HANDLE_COMPONENTS option
  1520. add macro check_required_components() to configure_package_config_file()
  1521. Eclipse: fix #13036, make version detection work with symlinks
  1522. guard eCos.cmake against multiple inclusion (#12987)
  1523. Alexandru Ciobanu (2):
  1524. CTest: Detect Xcode error "Command ... failed with exit code"
  1525. CTest: Match valgrind errors with "points to" (#12922)
  1526. Alexey Ozeritsky (1):
  1527. FindBLAS/FindLAPACK: Work with MKL version 10.3 (#12924, #12925)
  1528. Artur Kedzierski (1):
  1529. Add CURL_CA_BUNDLE option for SSL support (#12946)
  1530. Bill Hoffman (12):
  1531. Add CMakeAddFortranSubdirectory to use MinGW gfortran in VS
  1532. VSGNUFortran: Add special case for SunPro Fortran runtime library
  1533. VSGNUFortran: Disable test in special cases
  1534. CMakeAddFortranSubdirectory: Make IMPORTED targets GLOBAL
  1535. Use upgraded qt on linux build machine.
  1536. Teach CTest what a ninja error looks like.
  1537. Allow two cmake_add_fortran_subdirectory calls in the same project.
  1538. Add ability to include a file in a project via a cache variable.
  1539. Fix typo in error message, and remove redundent test.
  1540. Ninja: Add a cache option CMAKE_ENABLE_NINJA to enable the ninja generator.
  1541. Ninja: Fix for PDB files with spaces in the path.
  1542. Fix FindMPI for the intel compiler on linux by looking in implict directories.
  1543. Bjoern Ricks (1):
  1544. Fix crash if app bundle executeable couldn't be found
  1545. Brad King (138):
  1546. CheckCCompilerFlag: Generalize "but not for C" case (#12633)
  1547. complex: Remove ancient unused ComplexRelativePaths test
  1548. complex: Sync Tests/ComplexOneConfig with Tests/Complex
  1549. complex: Remove dynamic loader tests
  1550. complex: Move GeneratedFileStream test to CMakeLibTests
  1551. complex: Simplify test for single-character exe name
  1552. complex: Move cmSystemTools::UpperCase test to CMakeLibTests
  1553. complex: Remove test dependence on cmSystemTools
  1554. complex: Remove unused option to test CMakeLib
  1555. Intel: Fix Windows per-config Fortran flags (#12642)
  1556. libarchive: Remove our copy to make room for new import
  1557. libarchive: Add .gitattributes for indentation with tab
  1558. libarchive: Add README-CMake.txt
  1559. libarchive: Do not build subdirectories not in reduced snapshot
  1560. libarchive: Remove -Wall -Werror from build with GNU
  1561. libarchive: Build one static cmlibarchive for CMake
  1562. libarchive: Include cm_zlib.h to get zlib used by CMake
  1563. Handle libarchive API change in archive_read_data_block
  1564. Configure libarchive build within CMake
  1565. libarchive: Install COPYING with CMake documentation
  1566. libarchive: Port to OSF operating system
  1567. libarchive: Fix typo in CheckFileOffsetBits
  1568. libarchive: Implement custom lseek for Borland
  1569. libarchive: Declare mbstate_t and wcrtomb for Borland
  1570. libarchive: Cast constants to int64_t instead of using LL suffix
  1571. libarchive: Workaround case-insensitive symbols on Borland
  1572. libarchive: Clean up configuration within CMake build
  1573. libarchive: Cast mode constants to mode_t in case it is signed
  1574. libarchive: Fix Windows NT API usage in VS 6
  1575. libarchive: Suppress compiler warnings
  1576. libarchive: Fix var decl after statement in archive_string.c
  1577. libarchive: Do not use ST_NOATIME if not defined
  1578. libarchive: Check for 'struct statvfs' member 'f_iosize'
  1579. libarchive: Do not use MNT_NOATIME if not defined
  1580. libarchive: Use Apple copyfile.h API only if available
  1581. libarchive: Remove hard-coded build configuration
  1582. libarchive: Cleanup after ZLIB_WINAPI check
  1583. libarchive: Define _XOPEN_SOURCE=500 on HP-UX
  1584. libarchive: Include linux/types.h before linux/fiemap.h
  1585. libarchive: Rename isoent_rr_move_dir parameter isoent => curent
  1586. libarchive: Suppress PathScale compiler warnings
  1587. libarchive: Avoid bogus conversion warning from PGI compiler
  1588. libarchive: Set .gitattributes to allow trailing whitespace
  1589. libarchive: Update README-CMake.txt for new snapshot
  1590. libarchive: Restore CMake 2.6.3 as minimum version
  1591. bootstrap: Update copyright year in version report
  1592. bootstrap: Re-implement command line option processing
  1593. bootstrap: Forward options after '--' to cmake
  1594. VS10: Fix /pdb option vcxproj element name (#12328)
  1595. Add framework to detect compiler version with its id (#12408)
  1596. Detect GNU compiler version with its id (#6251)
  1597. Detect MSVC compiler version with its id
  1598. Detect Intel compiler version with its id (#11937)
  1599. Detect Borland compiler version with its id
  1600. Detect IBM XL compiler version with its id
  1601. Detect PGI compiler version with its id
  1602. Detect Clang compiler version with its id
  1603. Detect Watcom compiler version with its id
  1604. Detect SunPro compiler version with its id
  1605. Detect HP compiler version with its id
  1606. Document compiler version macro formats used for detection
  1607. Detect SGI MIPSpro compiler version with its id
  1608. ExternalProject: Fix git.cmd version detection
  1609. ExternalProject: Update copyright year
  1610. Include bzlib.h consistently across CMake build (#10950)
  1611. FindMPI: Append MPI C++ library correctly in non-compiler case (#12874)
  1612. Add infrastructure for CMake-only tests
  1613. Tolerate cycles in shared library link interfaces (#12647)
  1614. cmInstallCommand: Fix line length for style
  1615. cmake-mode.el: Indent after multiline argument (#12908)
  1616. Clarify IMPORTED_ target property documentation
  1617. Optionally allow IMPORTED targets to be globally visible
  1618. Add test covering imported target scope rules
  1619. VS: Simplify ;-separated attribute value parsing
  1620. Fix CXX/Fortran MODULE flags when enabled before C (#12929)
  1621. Remove unused test code
  1622. Allow directory names containing '=' and warn if necessary (#12934)
  1623. Add CheckLanguage module
  1624. CMakeAddFortranSubdirectory: Allow full paths to directories
  1625. CMakeAddFortranSubdirectory: Fix documentation format and typos
  1626. CMakeAddFortranSubdirectory: Find gfortran in PATH
  1627. CMakeAddFortranSubdirectory: Validate gfortran architecture
  1628. CMakeAddFortranSubdirectory: Always parse arguments
  1629. CMakeAddFortranSubdirectory: Add NO_EXTERNAL_INSTALL option
  1630. libarchive: Workaround mbsnrtowcs assertion failure on old glibc
  1631. Recognize OpenBSD versioned .so names (#12954)
  1632. try_compile: Use random executable file name (#12957)
  1633. Rename Modules/Platform/Windows-{Borland => Embarcadero}.cmake
  1634. Recognize Embarcadero compiler (#12604)
  1635. Factor cmInstallType out of cmTarget::TargetType
  1636. Add infrastructure for CMakeCommands tests
  1637. find_package: Reject mixed use of MODULE- and CONFIG-only options
  1638. find_package: Optionally warn when implicitly using Config mode
  1639. find_package: Test error and warning messages in failure cases
  1640. bootstrap: Convert MSYS paths to Windows format (#13001)
  1641. CTest.UpdateHG: Fix repo URL for local filesystem (#13001)
  1642. cmcurl: Do not hard-coded Windows check results for MinGW (#13001)
  1643. CheckSourceTree: Remove CVS checkout support (#13001)
  1644. Fix MSYS CVS local test repo path format (#13001)
  1645. find_package: Test that REQUIRED aborts processing correctly
  1646. Remove unused partial OBJECT_FILES property implementation
  1647. VS: Simplify object name computation
  1648. Hide Makefile local object info inside local generator
  1649. KWIML: Make test_INT robust to #define-d int#_t and INT#_C
  1650. Add stronger infrastructure for CMake-only tests
  1651. Use generalized RunCMake test infrastrucure for find_package test
  1652. Use generalized RunCMake test infrastrucure for build_command test
  1653. Document Fortran_MODULE_DIRECTORY as OUTPUT only (#13034)
  1654. Ninja: Constify use of cmCustomCommand
  1655. Ninja: Avoid using 'this' in member initializers
  1656. Write CMakeCache.txt atomically (#13040)
  1657. Add cmGeneratorTarget to represent a target during generation
  1658. Create a cmGeneratorTarget for each cmTarget during generation
  1659. Simplify cmMakefileTargetGenerator using cmGeneratorTarget
  1660. Simplify cmVisualStudio10TargetGenerator using cmGeneratorTarget
  1661. Pre-compute object file names before Makefile generation
  1662. Pre-compute object file names before VS project generation
  1663. Remove unused cmSourceGroup method
  1664. Rename/constify build-time config placeholder lookup
  1665. Pre-compute and store target object directory in cmGeneratorTarget
  1666. Add OBJECT_LIBRARY target type
  1667. Build object library targets in Makefiles
  1668. Build object library targets in VS
  1669. Add $<TARGET_OBJECTS:...> expression to use an object library
  1670. Test OBJECT library success cases
  1671. Test OBJECT library failure cases
  1672. Test OBJECT library language propagation
  1673. Test OBJECT library use without other sources
  1674. Document OBJECT library type in add_library command
  1675. Simplify cmNinjaTargetGenerator using cmGeneratorTarget
  1676. Pre-compute object file names before Ninja generation
  1677. Build object library targets in Ninja
  1678. Ninja: Honor $<TARGET_OBJECTS:...> source expressions
  1679. find_package: Test rejection of required+optional components
  1680. Simplify cmVisualStudio10TargetGenerator source classification
  1681. VS10: Fix external objects generated outside target (#13047)
  1682. Fix ObjectLibrary test on Watcom
  1683. KWIML: Avoid conflict with C++11 user-defined literals
  1684. Christian Andersson (1):
  1685. FindPythonLibs: Search for single-user installs on Windows
  1686. Christopher Sean Morrison (1):
  1687. cmake-mode.el: Make indentation case-insensitive (#12995)
  1688. Clinton Stimpson (14):
  1689. GetPrerequisites: Add support for @rpath on Mac OS X.
  1690. GetPrerequisites: Add support for @rpath on Mac OS X.
  1691. GetPrerequisites: Add test for @rpath support.
  1692. Fix new BundleUtilities test failure on Mac 10.4.x
  1693. Fix BundleUtilities test failure with space in build path.
  1694. cmake-gui: Improve interrupt granularity to fix bug 12649.
  1695. FindQt4: clarify warning message about incorrect Qt installation.
  1696. FindQt4: Add include directories for lupdate.
  1697. Fix paths/hints for finding qtmain.
  1698. DragNDrop: Fix problem with relocated files in Xcode 4.3
  1699. Add test for DeployQt4.cmake
  1700. Fix for Qt4Deploy on some test machines.
  1701. Remove QtGui dependency in Qt4Deploy test and verify QtSql existance.
  1702. DeployQt4: Add path to Qt dlls on Windows.
  1703. Daniel Nelson (1):
  1704. CPack Add top level directory in component install for Archive Generators
  1705. David Cole (33):
  1706. Begin post-2.8.7 development
  1707. Release: Increase timeout for slow-testing cygwin build
  1708. Update dashmacmini2 release script to use Qt 4.6.3
  1709. Update dashmacmini2 release script to use Qt 4.8.0
  1710. Tests: Update drop site value for the Trilinos contract test
  1711. Update version of Qt for dashmacmini5 produced release binaries
  1712. CTestCustom: Suppress clang warning on the dashboard
  1713. CMake: Eliminate cmMakefile::IncludeDirectories
  1714. Remove cmMakefile::GetIncludeDirectories
  1715. Make search paths ordered and unique
  1716. Call ExpandVariablesInString for each target's INCLUDE_DIRECTORIES
  1717. Update the documentation regarding INCLUDE_DIRECTORIES.
  1718. Fix compiler error reported on older Borland dashboard.
  1719. Fix compiler warning reported on older Borland dashboard.
  1720. Fix shadowed variable warning on dashboard results
  1721. Remove trailing white space
  1722. Use correct "requires" line in cygwin setup hint file
  1723. VS6: Avoid _MBCS define when _SBCS is defined (#12189)
  1724. VS6: Avoid SBCS test on VS6 (#12189)
  1725. Suppress warnings occurring on the dashboards using the PGI compiler.
  1726. CPack: Fix retry logic when calls to hdiutil fail
  1727. Ninja: CMake: Adapt Ninja generator for per-target include dirs
  1728. Ninja: Add friend struct so it can access the private ConvertToNinjaPath.
  1729. Xcode: Detect new default locations of Xcode 4.3 bits and pieces (#12621)
  1730. CPack: Use real path to PackageMaker to find its version file (#12621)
  1731. Xcode: Re-factor code into GetObjectsNormalDirectory method
  1732. Xcode: Re-factor some existing methods into "FromPath" variants
  1733. Add a default source group for object files.
  1734. Allow txt files as ExtraSources in object library targets
  1735. Pre-compute object file names before Xcode generation
  1736. Build object library targets in Xcode
  1737. Xcode: Honor $<TARGET_OBJECTS:...> source expressions
  1738. Tests: Relax restrictions on version variable contents
  1739. Deborah Pickett (1):
  1740. CPackRPM flag direcories with %dir in the generated spec file
  1741. Droscy (1):
  1742. FindCxxTest: Add support for CxxTest 4 (#13022)
  1743. Eric NOULARD (41):
  1744. Document undocumented (but existing) cpack options (fix #0010134)
  1745. Enhance bash completion file for cmake and ctest
  1746. Do not add the content of a file if it's a symlink.
  1747. CPackArchive restore default behavior and provide new variable.
  1748. CPackNSIS fix #0012935 switch from LOG_WARNING to avoid final error.
  1749. CPack begin the implementation of --help-command* and --help-variables*
  1750. Implement simple CMake script comment markup language.
  1751. CPack Documentation extraction from CMake script begins to work
  1752. Update bash completion file in order to handle new CPack doc options.
  1753. Suppress unused var, beautify code, avoid 1 extra newline.
  1754. Fix potential bad memory access, thanks to Eike
  1755. Calm down compiler warning about unused var
  1756. Really avoid compiler warning about unused vars
  1757. Fix another compiler warning due to a typo
  1758. Make the load of script documentation more efficient and dynamic.
  1759. Example of builtin variable documentation (i.e. only used in C++ source code).
  1760. Add missing section markup for CPackComponent
  1761. Create getDocumentedModulesListInDir which may be used in other context.
  1762. Fix non existent std::string::clear on VS6
  1763. Avoid discovering system infos for documentation. Adding some path is enough.
  1764. Dynamically add documentation section specified in documented script.
  1765. Add structured documentation for NSIS
  1766. Add structure documentation for CPack Bundle generator
  1767. Suppress unecessary (now empty) doc sections
  1768. Correct copy/paste section name mistake
  1769. Put CPack DMG and PackageMaker doc in separate files
  1770. More documentation concerning CPack Components
  1771. Fix typo in end markup
  1772. Try to fix compile error on Win32-vs70
  1773. Do not build RPM if path of the build tree contains space
  1774. Fix layout of the CPack Bundle documentation
  1775. Fix CPack Drag and Drop generator documentation layout.
  1776. Review and update CPack variable documentation.
  1777. Update CPackConfig template.
  1778. Provide template for CPack Cygwin generator specific variables.
  1779. Update CPack PackageMaker variable doc layout
  1780. Typo: Add missing ##end for ##module
  1781. Fix some typos in CPACK_SET_DESTDIR doc
  1782. Add some missing CPACK_NSIS_xxx doc and move some to common CPack section.
  1783. CPack STGZ put execute permission on all packages files (component case)
  1784. Handle CPACK_MONOLITHIC_INSTALL in some rare use cases.
  1785. Eugene Golushkov (1):
  1786. VS: Add support for WinRT project properties (#12930)
  1787. James Bigler (1):
  1788. Added support for curand, cusparse, npp, nvcuenc and nvcuvid libraries.
  1789. Jason Erb (1):
  1790. FindwxWidgets: Add webview library (#12636)
  1791. LibArchive Upstream (2):
  1792. libarchive 3.0.1-r3950 (reduced)
  1793. libarchive 3.0.2-r4051 (reduced)
  1794. Matthias Kretz (1):
  1795. Improve checks for Open64 and g++ incompatible flags (#12119)
  1796. Mattias Helsing (1):
  1797. CPack: Fix NSIS handling of privileged users (#12923)
  1798. Michael Wild (1):
  1799. GenerateExportHeader: Fix wrong use of IS_ABSOLUTE (#12645)
  1800. Mike McQuaid (5):
  1801. Don't use QT_LIBRARIES_PLUGINS by default.
  1802. Fix mismatched arguments.
  1803. Fix bad plugin paths.
  1804. Ensure libs are passed to BundleUtilities.
  1805. Fix plugin installation issues.
  1806. Modestas Vainius (3):
  1807. various typo and formatting fixes in manual pages (#12975)
  1808. KWIML: Teach ABI.h that MIPS is biendian
  1809. Tests: Escape metachars before embedding paths into the regex (#12999)
  1810. Nicolas Despres (5):
  1811. ccmake: Factor clear line.
  1812. ccmake: Extend clear line.
  1813. java: Factor jar output path.
  1814. java: Add CMAKE_JAVA_TARGET_OUTPUT_DIR optional variable.
  1815. java: Add CMAKE_JAVA_JAR_ENTRY_POINT optional variable.
  1816. Peter Collingbourne (19):
  1817. Add cmSystemTools::TrimWhitespace function
  1818. Add executable with exports flag support to cmLocalGenerator::GetTargetFlags
  1819. Provide dependency file flags to generator
  1820. Ninja: Add the Ninja generator
  1821. Ninja: Fix a 79-col violation
  1822. Ninja: Remove some default arguments
  1823. Ninja: Appease various compilers
  1824. Ninja: Partially revert "win fixes: escape back slash/colon, use cd. as cmd.exe nop"
  1825. Ninja: Identifier encoding rules for ' ' and ':'
  1826. Ninja: Backslash rules for Windows
  1827. Ninja: Shell encode paths used in "cd" commands
  1828. Ninja: Shell encode various CMake invocations
  1829. Ninja: Shell encode the command used in custom commands
  1830. Ninja: Import library support for Windows
  1831. Ninja: Add a missed license header
  1832. Ninja: Use cmSystemTools::ExpandListArgument to split compile/link commands
  1833. Ninja: Remove an unnecessary variable
  1834. Ninja: add support for OBJECT_OUTPUTS, fix PrecompiledHeader test case
  1835. Ninja: shell escape $(CMAKE_SOURCE_DIR) and $(CMAKE_BINARY_DIR)
  1836. Peter Kuemmel (12):
  1837. Find VC Express during default generator selection (#12917)
  1838. Ninja: win fixes: escape back slash/colon, use cd. as cmd.exe nop
  1839. Ninja: don't define MSVC_IDE when using the ninja generator
  1840. Ninja: also build ninja support on Windows
  1841. Ninja: add some hacks for Windows
  1842. Ninja: disable unfinished Windows ninja support
  1843. Ninja: mark the Windows specific hacks with a comment only
  1844. Ninja: windows msvc: create for each target a .pdb file
  1845. Ninja: ensure the output dir exists at compile time
  1846. Ninja: add .def file support
  1847. Ninja: add /DEF: flag to linker call
  1848. Ninja: Fix <OBJECT_DIR> substitution
  1849. Philip Lowman (5):
  1850. FindProtobuf: Merge patch that allows extra import dirs
  1851. FindProtobuf: Update documentation comment for 2.8.8
  1852. Findosg: New modules for osgQt and osgPresentation
  1853. FindALSA: Fix incorrect include path detection
  1854. FindALSA: Fix version detection after last commit
  1855. Rolf Eike Beer (95):
  1856. remove reference to CVS directory when installing files
  1857. CheckSymbolExists: force the compiler to keep the referenced symbol
  1858. add a test for Check{,CXX}SymbolExists
  1859. FindOpenSSL: improve version number handling
  1860. FindOpenSSL: only try to parse opensslv.h if it exists
  1861. FindOpenSSL: also parse version number define with uppercase letters
  1862. GenerateExportHeader test: add newlines before end of file
  1863. add a test that loops through most Find* modules
  1864. AllFindModules test: keep complete output
  1865. AllFindModules test: also check Qt3 modules if Qt4 is not found
  1866. FindPythonInterp: make version selectable
  1867. FindPythonInterp: fix version parsing
  1868. LoadCommand test: cleanup
  1869. FindThreads: Try pthreads with no special option first (#11333)
  1870. fix uninitialized var in if(NOT foo bar STREQUAL "foo bar")
  1871. use pkg_check_modules() quiet in other modules
  1872. FindLibXml2: support version selection
  1873. FindGnuTLS: partly support version selection
  1874. FindGit: support version number
  1875. FindCups: major overhaul
  1876. FindEXPAT: support version number
  1877. FindCURL: support version selection
  1878. FindFLEX: fix version parsing for old flex versions
  1879. FindFLEX: fix version parsing when the executable is quoted
  1880. FindJasper: find debug libraries
  1881. FindJasper: support version number
  1882. FindBZip2: add support for version checking
  1883. FindBZip2: add support for debug libraries (#12867)
  1884. FindImageMagick: make use of more FPHSA features
  1885. FindPNG: support version selection
  1886. FindRuby: do not blindly set version to 1.8.0
  1887. FindTclsh: support version selection
  1888. SelectLibraryConfigurations: do not output identical configurations
  1889. FindLua51: add version support
  1890. FindTIFF: support version selection
  1891. FindCURL: detect version number also for older versions
  1892. FindLibXml2: detect version when PkgConfig is not used
  1893. FindPostgreSQL: support version selection
  1894. FindOpenSSL: properly parse the hex version components
  1895. FindBISON: add a version expression for GNU Bison 1.x
  1896. FindPythonInterp: try harder to get a version number
  1897. FindJasper: fix library name
  1898. FindGnuplot: add version selection
  1899. FindALSA: support version selection
  1900. FindGettext: support version selection
  1901. CheckCXXCompilerFlag test: make it a CMakeOnly test
  1902. CMakeOnly.AllFindModules: clean up the Qt3/Qt4 code
  1903. CMakeOnly.AllFindModules: always check FindQt
  1904. CMakeOnly.AllFindModules: suppress two modules from testing
  1905. CMakeOnly.AllFindModules: require version for some modules
  1906. CheckIncludeFiles: fix status output
  1907. FindPerl{,Libs}: move version detection into FindPerl
  1908. FindLibArchive: support version selection
  1909. FindX11: also search for Xmu (#12447)
  1910. detect "pgfortran" as PGI Fortran compiler (#12425)
  1911. FindSDL*: use FPHSA (#12467)
  1912. AllFindModules test: do not enforce GNUPLOT version
  1913. FindPerlLibs: properly detect libperl on Windows (#12224)
  1914. CTest: mark all gcov covered files as covered
  1915. FindGLUT: honor REQUIRED (#12466)
  1916. FindRuby: clean up querying variables from Ruby
  1917. FindLibXslt: support version selection
  1918. Tests: document where to put tests
  1919. FindPkgConfig: support version selection of pkg-config itself
  1920. fix the same typos as found by Debian in other places, too
  1921. Find_library(): allow searching for versioned shared objects
  1922. FindFreetype: support version selection
  1923. AllFindModules test: expect more modules to have a version number available
  1924. FindOpenMP: do not fail if only C or CXX is enabled (#11910)
  1925. FindOpenMP: try the most likely flags first
  1926. FindOpenMP: simplify check for enabled languages
  1927. UseSWIG: clean up string compares
  1928. FindPython{Interp,Libs}: document Python_ADDITIONAL_VERSIONS as input
  1929. FindPythonLibs: make the version selection work as for PythonInterp
  1930. FindPythonLibs: get the exact version of the found library (#3080)
  1931. FindPythonLibs: put debug libraries into PYTHON_LIBRARIES
  1932. FindPythonLibs: stop scanning when libraries are found
  1933. Check{C,CXX}CompilerFlag: detect ICC error messages
  1934. GenerateExportHeader: remove unneeded code
  1935. GenerateExportHeader: improve compiler identification
  1936. FindOpenSceneGraph: give every message() with an explicit level
  1937. FindHSPELL: set HSPELL_VERSION_STRING
  1938. FindImageMagick: fix fail if no components were given
  1939. FindPythonInterp: rework the version detection
  1940. document when version detection will not work
  1941. AllFindModules test: once again expand version checking
  1942. improve error message on a stray "endwhile()"
  1943. add testcases for while()/endwhile() errors
  1944. reflect that the QtAutomoc depends on QtGui
  1945. FindQt3: fix warning when Qt3 is not found
  1946. FindQt3: fix version extraction for versions with letters
  1947. FindQt3: let FPHSA handle the version selection
  1948. FindQt3: fix detection of Qt3 include directory
  1949. AllFindModules test: do not require TCLSH version
  1950. add test for get_property() errors
  1951. Stephen Kelly (13):
  1952. Fix typos arguement -> argument.
  1953. Exit the loop when we have determined the language.
  1954. Add whitespace after '.' in CMAKE_SKIP_RPATH docs.
  1955. Fix documented function signature to match reality.
  1956. Add default initializers for WIN32_EXECUTABLE and MACOSX_BUNDLE
  1957. Add an option to skip RPATH during installation.
  1958. Refactor GetIncludeFlags to take includes instead of fetching them
  1959. Make it safe to call this method without creating duplicates.
  1960. Remove include flags memoization.
  1961. Add API to get the ordered includes for a target.
  1962. Keep the INCLUDE_DIRECTORIES target property up to date.
  1963. Extract and use the INCLUDE_DIRECTORIES target properties.
  1964. Fix some typos in the docs comments.
  1965. Yury G. Kudryashov (23):
  1966. FindDoxygen: add DOXYGEN_VERSION variable
  1967. cmInstallCommand: Fix indentation error
  1968. cmInstallCommand: Remove duplicated sentence from docs
  1969. FindPkgConfig: respect REQUIRED (#12620)
  1970. FindPackageHandleStandardArgs: fix documentation
  1971. Remove unused file cmake.1
  1972. Fix typo in documentation
  1973. Drop if(...) check because condition is always true
  1974. CMakeFindPackageMode: fix 32/64bit detection if 'file' is a symlink
  1975. Run vim spellcheck on some files
  1976. cmPropertyDefinition::IsChained is const
  1977. Add 'const' qualifier to some cmCommand members
  1978. doxygen: cmPropertyDefinition
  1979. doxygen: Improve API docs of GetRealDependency
  1980. doxygen: Use proper syntax to document enum
  1981. doxygen: Small fixes in cmake.h apidocs
  1982. doxygen: fix some comments in cmPolicies.h
  1983. doxygen: remove a few comments
  1984. doxygen: review cmake.h
  1985. doxygen: MathCommand is not about string operators
  1986. Rename UsedCommands to FinalPassCommands
  1987. Remove UnionsAvailable member from 2 classes
  1988. Remove cmExprParserHelper::SetLineFile()
  1989. Changes in CMake 2.8.7 (since 2.8.7-rc2)
  1990. --------------------------------------------
  1991. None
  1992. Changes in CMake 2.8.7-rc2 (since 2.8.7-rc1)
  1993. --------------------------------------------
  1994. Alex Neundorf (5):
  1995. automoc: default to strict mode, use CMAKE_AUTOMOC_RELAXED_MODE
  1996. automoc: improved warning message in relaxed mode
  1997. Remove trailing whitespace
  1998. Add comment about one more problem of the C depency scanner.
  1999. fix #12262: dependency scanning for ASM files
  2000. Bill Hoffman (1):
  2001. Fix the case where cmake --build failed with two project cmds in one file.
  2002. Brad King (11):
  2003. KWSys: Correctly handle empty environment variables
  2004. FortranCInterface: Work around mingw32-make trouble with parens
  2005. Xcode: Create separate rerun dependencies for subprojects (#12616)
  2006. Fix Intel Fortran .vfproj files for VS 10
  2007. HP: Drive shared library linking with compiler front end
  2008. Follow all dependencies of shared library private dependencies
  2009. Do not link private dependent shared libraries on OS X > 10.4
  2010. Avoid clobbering variable 'OUTPUT' in compiler tests (#12628)
  2011. Fix and simplify Fortran test compiler compatibility check
  2012. CTest: Recognize Intel errors without space before colon (#12627)
  2013. Windows-GNU: Remove extra quotes in GNUtoMS rule variable
  2014. David Cole (4):
  2015. Release: Increase timeout for slow-testing cygwin build
  2016. Modules: Use "windres" as rc compiler base name for cross-compiles (#12480)
  2017. Tests: Only really run MFC test if we can build MFC apps (#11213)
  2018. FindBoost: Quote possibly empty string argument (#12273)
  2019. Eric NOULARD (1):
  2020. CPackRPM fix #0012608 and unoticed related bug
  2021. Johan Fänge (1):
  2022. CMake: Fix progress reporting for custom targets (#12441)
  2023. Mike McQuaid (2):
  2024. Unset configurations variable when no build type.
  2025. Improve component support and output indentation.
  2026. Raphael Kubo da Costa (2):
  2027. Remove the apparently outdated README in Source/QtDialog.
  2028. QtDialog: Set Ctrl+Q as the shortcut for quitting the program.
  2029. Tim Gallagher (2):
  2030. FindLAPACK: Correct CMAKE_FIND_LIBRARY_SUFFIXES spelling (#12624)
  2031. FindLAPACK: List thread libs to avoid link errors (#12625)
  2032. Valat Sébastien (1):
  2033. CTest: Do not get CDash version without drop site (#12618)
  2034. Changes in CMake 2.8.7-rc1 (since 2.8.6)
  2035. ----------------------------------------
  2036. Aaron Ten Clay (1):
  2037. VS: Add support for three new project properties (#12586)
  2038. Alex Neundorf (60):
  2039. fix #12392: handle CMAKE_CXX_COMPILER_ARG1 for Eclipse projects
  2040. fix #12262: use the C dependency scanner also for ASM files
  2041. fix #12465: detect the masm compiler ID ("MSVC")
  2042. Silence make on OpenBSD in FindPackageModeTest(#12508)
  2043. Remove trailing whitespace
  2044. Find Ruby on OpenBSD when installed from ports (#12507)
  2045. Eclipse generator: detect Eclipse version
  2046. Detect whether the current Eclipse version supports VirtualFolders
  2047. Eclipse: don't create VirtualFolders if not supported
  2048. Eclipse: better message when Eclipse version could not be determined
  2049. automoc:run moc on the header if the source file contains include "foo.moc"
  2050. Add copyright notices
  2051. automoc: always run moc on the cpp file if there is a foo.moc included
  2052. Eclipse: add virtual folder for each target
  2053. Eclipse: move code for generating links to projects into separate function
  2054. Eclipse: move code for generating links to targets into separate function
  2055. Eclipse: add Build and Clean targets to targets
  2056. Eclipse: detect number of CPUs, set CMAKE_ECLIPSE_MAKE_ARGUMENTS accordigly
  2057. Eclipse: fix #12417, don't create wrong src pathentries
  2058. FindLibXslt: also search libexslt and xsltproc
  2059. don't crash in automoc with empty COMPILE_DEFINITIONS property
  2060. Automoc: fix the fix, need to use std::string, not just char* pointer
  2061. automoc: fix #12541, support moc options
  2062. add documentation for the AUTOMOC_MOC_OPTIONS property
  2063. Eclipse: warn if CMAKE_BINARY_DIR is subdir of CMAKE_SOURCE_DIR
  2064. Eclipse: make targets work from any directory
  2065. Eclipse: quote the build dir (to make it work with spaces)
  2066. make automoc work when using ccmake via PATH (#12551)
  2067. Strip trailing whitespace
  2068. -make GETTEXT_PROCESS_PO_FILES() work with files with multiple dots
  2069. FindGettext: two more fixes for files with multiple dots
  2070. FindPNG: provide PNG_INCLUDE_DIRS, as the readme.txt says (#11312)
  2071. Eclipse: create links to subprojects also in the source-project (#12579)
  2072. Eclipse: use new variable CMAKE_ECLIPSE_GENERATE_SOURCE_PROJECT
  2073. install(EXPORT): Enforce existence of imported target files
  2074. Remove trailing whitespace
  2075. cmake-gui: add completion for the names when adding cache entries
  2076. automoc: stricter checking for what file is included
  2077. automoc: rework the checking for the matching header, to give better warnings
  2078. automoc: handle the case when the developer includes the wrong mocfile
  2079. automoc: add more test cases
  2080. automoc: improved diagnostics
  2081. automoc: minor optimization
  2082. automoc: another runtime optimization
  2083. Automoc: modified handling of included .moc files
  2084. automoc: add a test for including both abc.moc and moc_abc.cpp
  2085. automoc: add test for including the moc file from another header
  2086. automoc: add test for including a moc_abc_p.cpp file
  2087. automoc: move some code from the big parsing loop into separate functions
  2088. automoc: add special handling for including basename_p.moc, with test
  2089. automoc: add extra check whether the header contains Q_PRIVATE_SLOT
  2090. automoc: some more linebreaks for the warnings for better readability
  2091. automoc: fix handling of included _p.moc files
  2092. automoc: move the code for finding headers into separate function
  2093. automoc: add a StrictParseCppFile(), which is only qmake-compatible
  2094. automoc: also accept other files when .moc is included in non-strict mode
  2095. automoc: accept even more .moc files in non-strict mode
  2096. automoc: add variable CMAKE_AUTOMOC_STRICT_MODE, to enable strict parsing
  2097. automoc: fix line length
  2098. automoc: add documentation for CMAKE_AUTOMOC_STRICT_MODE
  2099. Alexey Ozeritsky (1):
  2100. FindLAPACK: Fix linking to static LAPACK on Unix (#12477)
  2101. Bernhard Walle (1):
  2102. Source/cmCTest.cxx: Add missing newline (#12538)
  2103. Brad King (65):
  2104. Refactor find_* command final path list computation
  2105. Constify XCode generator getters to match cmGlobalGenerator
  2106. Fix line-too-long style violations
  2107. KWSys: Fix Doxygen warnings
  2108. Add pre-commit|commit-msg|prepare-commit-msg hook placeholders
  2109. pre-commit: Reject changes to KWSys through Git
  2110. Fix CTest.UpdateSVN with Subversion 1.7 (#12535)
  2111. Teach CTest.UpdateSVN to detect svn add --depth before using it
  2112. KWSys: Address Intel compiler remarks
  2113. Fix linking to OS X Frameworks named with spaces (#12550)
  2114. Watcom: Use shortpath to CMake if full path has parens (#12548)
  2115. KWSys: Remove trailing whitespace in SystemTools.cxx
  2116. KWSys: Fix wrong spelling of __INTEL_COMPILER
  2117. Update main Copyright.txt year range for 2011
  2118. KWIML: The Kitware Information Macro Library
  2119. Configure KWIML inside CMake as cmIML
  2120. KWIML: Avoid redefining _CRT_SECURE_NO_DEPRECATE in test.h
  2121. KWIML: Suppress printf/scanf format warnings in test
  2122. KWIML: No INT_SCN*8 on SunPro compiler
  2123. KWIML: No INT_SCN*8 on Intel for Windows
  2124. KWIML: Create test output dir for Xcode
  2125. Order VS local generator Version ivar values consistently
  2126. Enumerate VS11 version explicitly in local generators
  2127. KWIML: Test header inclusion after system headers
  2128. KWIML: Ignore _LONGLONG on MS compiler
  2129. KWIML: Teach ABI.h about PGI compiler
  2130. KWIML: Avoid MSVC linker warning about not using C++ runtime
  2131. Factor Compute(File|String)MD5 into cmCryptoHash helper
  2132. Add file(MD5) command to compute cryptographic hash
  2133. Import sha2 implementation 1.0 from Aaron D. Gifford
  2134. Import sha2 implementation 1.1 from Aaron D. Gifford
  2135. sha2: Use KWIML fixed-size integer types and endian-ness
  2136. sha2: Build as part of CMakeLib
  2137. Add file(SHA*) commands to compute cryptographic hashes
  2138. sha2: Use "static const" instead of "const static" declarations
  2139. cmCryptoHash: Provide factory "New" method
  2140. Add string(MD5) and string(SHA*) commands to compute hashes
  2141. sha2: Use KWIML fixed-size integer constant macros
  2142. sha2: Suppress Borland warnings in third-party code
  2143. Disable file() and string() hash commands during bootstrap
  2144. sha2: Wrap long lines in third-party declarations
  2145. Fix CMake.File hash test for CRLF checkouts
  2146. cmCryptoHash: Add virtual destructor
  2147. sha2: Cast safe conversions to smaller integer types
  2148. sha2: Suppress -Wcast-align warning from Clang
  2149. sha2: Zero entire SHA_CTX structure during cleanup
  2150. target_link_libraries: Add missing space in documentation
  2151. target_link_libraries: Simplify argument processing state tests
  2152. install(EXPORT): Improve target import failure message format
  2153. Remove trailing whitespace from cmLocalGenerator
  2154. bootstrap: Include cmNewLineStyle in build
  2155. cmNewLineStyle: Remove trailing comma in enum
  2156. cmNewLineStyle: Use cmStandardIncludes.h
  2157. Provide std::ios_base typedef on GCC < 3
  2158. FindZLIB: Search under ZLIB_ROOT if it is set
  2159. Factor out target location undefined behavior helper macro
  2160. export(): Document undefined behavior of location properties
  2161. Recognize the Tiny C Compiler (#12605)
  2162. TinyCC: Add compiler info for shared libs on Linux (#12605)
  2163. Fortran: Detect pointer size in gfortran on MinGW
  2164. Load platform files that need to know the ABI when possible
  2165. Factor makefile generator link rule lookup into helper function
  2166. Add CMAKE_GNUtoMS option to convert GNU .dll.a to MS .lib
  2167. Test CMAKE_GNUtoMS option in ExportImport on MinGW and MSys
  2168. cmTarget: Create helper method for versioned library names
  2169. Clinton Stimpson (2):
  2170. Fix XML safety issue with adding preprocessor defines in CodeBlocks project.
  2171. Qt4: Fix dependencies of QtDeclartive.
  2172. Dan Kegel (1):
  2173. Modules: Add XRes to FindX11.cmake
  2174. David Cole (17):
  2175. Begin post-2.8.6 development
  2176. CTest: Fix crash when variables are not defined
  2177. VS11: Fix comment generated at the top of *.sln files
  2178. CTest: Add COVERAGE_EXTRA_FLAGS cache variable (#12490)
  2179. CTest: Clear custom vectors before populating (#12383)
  2180. Tests: Add the MFC test (#11213)
  2181. Tests: Avoid MFC test automatically for VCExpress builds (#11213)
  2182. Tests: Fix MFC test w/ Make-based generators (#11213)
  2183. Tests: Fix MFC test for old vs6 dashboards (#11213)
  2184. Tests: Avoid MFC test automatically for Watcom WMake builds (#11213)
  2185. Tests: Fix MFC test to work with VS 10 and later (#11213)
  2186. VS10: Use expected values for UseOfMfc (#11213)
  2187. Tests: Add environment logging to the MFC test (#11213)
  2188. VS11: Update InstallRequiredSystemLibraries.cmake for VS11 (#11213)
  2189. Tests: Nudge MFC test to pass on VS 6 dashboards (#11213)
  2190. VS: Use "call " keyword with .cmd and .bat file custom commands (#12445)
  2191. CTest: Disallow problem chars in build and site names (#11792)
  2192. Eric NOULARD (3):
  2193. CPackRPM support component specific variables for spec files
  2194. Fix old reference to CMAKE_MAKE_PROGRAM inside CMAKE_BUILD_TOOL doc.
  2195. CPackRPM fix #12556 and enhance documentation
  2196. James Bigler (6):
  2197. Added support for CUDA_PATH which is present in the CUDA toolkit 3.2 onward.
  2198. Reset dependency file list when a dependency disappeared.
  2199. Add work around for CUDA in UNC paths.
  2200. Fixes for handling quotes in args and other places (Fix Bug 11726 and 12099).
  2201. Make CUDA working directory unique for each target.
  2202. Miscellaneous fixes.
  2203. Jean-Christophe Fillion-Robin (1):
  2204. CTest: Look for CTestConfig.cmake in build dir first, then source dir
  2205. Johan Bjork (1):
  2206. Xcode: Avoid spewing the environment on every script run (#12522)
  2207. Mateusz Loskot (1):
  2208. FindBoost: Use MSVC11 to find Boost on Windows (#12568)
  2209. Mathieu Malaterre (1):
  2210. TinyCC: Add default compilation flags (#12605)
  2211. Mike McQuaid (6):
  2212. Add QT_LIBRARIES_PLUGINS variable to UseQt4.
  2213. Add DeployQt4 module.
  2214. Match fixup_qt4_executable with documentation.
  2215. Don't resolve directories; are never relative.
  2216. Check plugin variables are defined before warning.
  2217. Check QtCore without warning.
  2218. Nicolas Despres (17):
  2219. Refactor TargetTypeNames.
  2220. Add const versions of some getters.
  2221. Constify many getters of cmGlobalGenerator.
  2222. Remove trailing white-spaces.
  2223. Fix typo.
  2224. Doxygen: Improve code documentation.
  2225. Doxygen: Generate call graph and relationships.
  2226. Doxygen: Fix warnings.
  2227. Doxygen: Remove dependency on VTK when building doxygen.
  2228. Usage: Document -j|--parallel option in help message.
  2229. Usage: Document all options printing usage information.
  2230. Usage: Document all options printing the version number.
  2231. Usage: Print help, version and copyright options in usage information.
  2232. Usage: Add missing exepath argument in get_prerequisites documentation.
  2233. ccmake: Align 'g' and 'q' key instructions.
  2234. ccmake: Document '/' key.
  2235. ccmake: Factor toggle key help instructions.
  2236. Niels Dekker (1):
  2237. Fix CMAKE_VERBOSE_MAKEFILE for VS10 vcxproj files (#12504)
  2238. Ondrej Balaz (1):
  2239. FindBISON: Fix bison++ version parsing to avoid "Offending entry"
  2240. Peter Collingbourne (4):
  2241. Make cmLocalGenerator::ConvertToLinkReference virtual
  2242. Introduce a cmLocalGenerator::ConvertToIncludeReference function
  2243. Introduce a cmGlobalGenerator::ResolveLanguageCompiler function
  2244. Fix configuration-dependent flag lookup in cmLocalGenerator::GetTargetFlags
  2245. Peter Kuemmel (1):
  2246. Add NEWLINE_STYLE option to configure_file (#3957)
  2247. Philip Lowman (1):
  2248. FindProtoBuf: Documented limitation of the public macro
  2249. Pierre-Francois Laquerre (1):
  2250. Fix path quoting in Qt4 macros
  2251. Robert Dailey (1):
  2252. VS: Add VS_SCC_AUXPATH target property (#12549)
  2253. Rolf Eike Beer (4):
  2254. libarchive: fix typo in CheckFileOffsetBits.cmake
  2255. Tell people that link_directories() is not what they are searching for
  2256. FindBISON: Fix matching output of "bison --version"
  2257. Tests: ExternalProject: Remove unnecessary 'svn --version' call
  2258. Stephen Kelly (13):
  2259. Add features from KDE for arguments to qdbusxml2cpp.
  2260. Remove unused define.
  2261. Build each library only once instead of once for each test.
  2262. Initialize LINK_INTERFACE_LIBRARIES target property with a variable
  2263. Also run moc automatically with Qt5.
  2264. Fix typo.
  2265. Don't assume the existence of QT_MAJOR_VERSION.
  2266. Update comments and method names to not be Qt4 specific.
  2267. Fix style.
  2268. target_link_libraries: Trim trailing whitespace
  2269. target_link_libraries: Add LINK_(PUBLIC|PRIVATE) options
  2270. moc is now part of the Qt5Core module
  2271. Add a test case for the use of Q_PRIVATE_SLOT.
  2272. Changes in CMake 2.8.6 (since 2.8.6-rc4)
  2273. ----------------------------------------
  2274. Alex Neundorf (5):
  2275. Remove trailing whitespace
  2276. Minor improvements to the UsePkgConfig.cmake docs
  2277. Remove trailing whitespace
  2278. Improve behaviour of --find-package mode with try_run/try_compile
  2279. Use makefile->IssueMessage() for better error messages
  2280. Bill Hoffman (2):
  2281. Use version 11.0 for 12.x and 9.10 for 10.x intel versions to fix 12.1 vsIDE.
  2282. Also, check for 11.x as an intel fortran version.
  2283. Brad King (2):
  2284. Add Visual Studio 11 generator for x86 and x64 tools
  2285. Teach our tests about special cases for VS 11
  2286. David Cole (1):
  2287. CTestCustom.cmake: Ignore clang's summary warning
  2288. Philip Lowman (1):
  2289. FindBullet: Also search for _Debug postfixed library names
  2290. Raphael Kubo da Costa (1):
  2291. Fix typo in set_target_properties' documentation.
  2292. Rolf Eike Beer (1):
  2293. Fix typo in UsePkgConfig.cmake
  2294. Changes in CMake 2.8.6-rc4 (since 2.8.6-rc3)
  2295. --------------------------------------------
  2296. Alex Neundorf (3):
  2297. FindFLEX.cmake: also search the include dir
  2298. Fix typos in FeatureSummary.cmake (#12462)
  2299. Don't warn when setting a property multiple times to the same value #12464
  2300. Bill Hoffman (2):
  2301. For VS Intel Fortran IDE builds, add a check to find the Fortran library PATH.
  2302. Enable Fortran tests for IDE builds.
  2303. Brad King (5):
  2304. FortranCInterface: Compile separate Fortran lib in VerifyC[XX]
  2305. Move IntelVSImplicitPath project to better location
  2306. Simplify IntelVSImplicitPath detection project
  2307. libarchive: Fix ssize_t detection with mingwrt 3.20
  2308. Make file(DOWNLOAD) fail on http error
  2309. David Cole (8):
  2310. Tests: Add a KWStyle test, equivalent to the make StyleCheck target
  2311. KWStyle Test: Activate by default if KWStyle is found
  2312. Xcode: Use EFFECTIVE_PLATFORM_NAME reference in ComputeOutputDir
  2313. Xcode: Add test to demonstrate iOS project in Xcode
  2314. CMake: Reference test targets only when BUILD_TESTING is ON
  2315. Tests: Add the more modern Mac64 nightly build
  2316. Release Scripts: Use Qt 4.7.4 on dashmacmini5 (#12460)
  2317. Revert "FindThreads: Try pthreads with no special option first (#11333)"
  2318. Eric NOULARD (4):
  2319. CPack fix #12449 doc mispelled
  2320. CPack fix template too
  2321. CPackDeb fix #10325 automagically use fakeroot for DEB if fakeroot is found
  2322. CPackRPM authorize per-component pre/post-[un]install scripts (#0012063)
  2323. Marcus D. Hanwell (4):
  2324. Just code style changes.
  2325. Don't warn when nothing to do in visibility function.
  2326. Made ADD_COMPILER_EXPORT_FLAGS into a macro.
  2327. Make add_compiler_export_flags a function again.
  2328. Rolf Eike Beer (1):
  2329. remove stray brace in CPackDeb documentation
  2330. Changes in CMake 2.8.6-rc3 (since 2.8.6-rc2)
  2331. --------------------------------------------
  2332. Alexey Ozeritsky (2):
  2333. FindBLAS/LAPACK fixes
  2334. FindBLAS/LAPACK fixes
  2335. Andreas Schneider (1):
  2336. Modules: Add support for more java archives in add_jar().
  2337. Björn Ricks (4):
  2338. Search for the installed python interpreter first
  2339. Determine python version
  2340. Update documentation of FindPythonInterp.cmake
  2341. Use FIND_PACKAGE_HANDLE_STANDARD_ARGS second mode
  2342. Brad King (5):
  2343. VS: Map per-source Fortran flags to IDE options
  2344. VS: Map Fortran free- and fixed-format flags to IDE options
  2345. Fortran: Add support for free- and fixed-form flags
  2346. Xcode: Honor Fortran_FORMAT target and source file property
  2347. Set CMAKE_<lang>_COMPILER_ID for VS generators
  2348. David Cole (8):
  2349. KWSys: Remove always-true dir_only parameter
  2350. KWSys: Add symlinks to directories as files (#12284)
  2351. FindPackageMessage: Eliminate new lines in cache entries
  2352. FindPackageMessage: Eliminate new lines using REGEX REPLACE
  2353. CMake: Add SaveCache at the end of successful Generate calls
  2354. Suppress Qt warning for dashmacmini5 builds
  2355. Suppress Qt warning for dashmacmini5 builds
  2356. Tests: Look for "Illegal" or "SegFault" in the output
  2357. Eric NOULARD (2):
  2358. CPack fix #12366 components RPM packages have the same package name
  2359. CPackRPM fix #12305, include directories in RPM package
  2360. Johan Björk (5):
  2361. Xcode: No spaces in makefile target names (#12370)
  2362. CMake: Write symlinks to directories as files in archives (#12284)
  2363. CPack: Do not recurse through directory symlinks (#12284)
  2364. Xcode: Do not emit the ZERO_CHECK target more than once
  2365. Xcode: Honor -g0 to disable debugging (#12377)
  2366. Johannes Stallkamp (1):
  2367. CTest: Fixed valgrind output parsing (#12260)
  2368. Matt McCormick (1):
  2369. CMake: Remove documentation for -E build (#12446)
  2370. Stephen Kelly (2):
  2371. Add some more unit tests.
  2372. Don't put what some compilers consider junk at the end of the line.
  2373. Thomas Jarosch (3):
  2374. CTest: Fix memory leaks on error
  2375. Fix file() command descriptor leak on error
  2376. ccmake: Fix off-by-one memory access error
  2377. Changes in CMake 2.8.6-rc2 (since 2.8.6-rc1)
  2378. --------------------------------------------
  2379. Brad King (2):
  2380. KWSys: Add hash function for std::string
  2381. KWSys: Fix std::string hash function for Borland
  2382. Clinton Stimpson (1):
  2383. qt4: also find QtUiTools when cross compiling with mingw.
  2384. David Cole (3):
  2385. Xcode4: Requires more quoting of single quote char
  2386. cmake.m4: Use modern signature of install(FILES ...)
  2387. CMake Release Scripts: Changes for next release candidate...
  2388. David Faure (1):
  2389. Don't use a variable name that might be used in other files.
  2390. Stephen Kelly (73):
  2391. Create moc files in the current binary dir, not the top level.
  2392. Make the formatting of feature_summary output a little better.
  2393. Add the GenerateExportMacro with unit tests.
  2394. Handle the case where the user changes the DEFINE_SYMBOL property.
  2395. Add a newline at the end of the file.
  2396. Add a newline at the end of the file.
  2397. Add missing licence header.
  2398. Remove the fatal_warnings option which is no longer used.
  2399. Test for features, not specific compilers.
  2400. Simplify. We already know we have hidden visibility at this point.
  2401. Simplify the compiler feature check
  2402. Add some debug output.
  2403. Short-circuit the tests on unsupported compilers.
  2404. Test expected no-op instead of aborting the build.
  2405. Fix tests with clang.
  2406. Fix typo and tests failing as a result.
  2407. Only run the failure tests with gcc >= 4.2
  2408. Set the CMAKE_RUNTIME_OUTPUT_DIRECTORY for windows builds.
  2409. Only set the COMPILER_HAS_HIDDEN_VISIBILITY if GCC >= 4.2
  2410. Disable all export macros on Borland.
  2411. Another attempt to fix the tests on Borland.
  2412. Use the correct project name compiletest not compilefail
  2413. Fix off-by-not in test for Borland.
  2414. Another attempt at fixing Borland.
  2415. Add some debug output to narrow down deprecation test issues
  2416. Export deprecated free methods too.
  2417. Remember to surround the other deprecated test in the Borland check.
  2418. Only set the deprecated attribute if hidden visibilty is enabled.
  2419. Make sure the hidden visibility variables never get set on MINGW.
  2420. Don't use hidden visibility on non-mingw windows either.
  2421. Don't export methods on already exported classes.
  2422. Split the deprecated available check from setting macro values.
  2423. Test for compiler features, instead of for specific platforms.
  2424. Exclude the XL compiler from the hidden-visibility test.
  2425. Add the COMPILER_HAS_DEPRECATED only if it has a declspec variant
  2426. Don't change the expected build result based on the platform.
  2427. Expect the tests to pass if hidden visibilty is not enabled.
  2428. Test -Werror instead of enabling it per compiler.
  2429. Add some messaging output to make remaining issues findable.
  2430. Perform the -Werror test only once.
  2431. Test for deprecated attribute before declspec.
  2432. Try to error on deprecated on Intel and SunCC.
  2433. Borland can't do deprecated.
  2434. Fixup forgotten part of aed84517c942a4c40f493fcf997cdf6a047349f8
  2435. Disable testing of deprecated macros.
  2436. Don't enable deprecated on HP.
  2437. Don't enable deprecated on old GCC
  2438. Exclude cygwin from the hidden visibility feature.
  2439. Exclude PGI from exports and deprecated.
  2440. Start testing expected values for compiler flags.
  2441. Exclude win32 from hidden visibility checks.
  2442. Comment the test assertion for now
  2443. Test the correct cxx variable.
  2444. Fix the version extraction regex for clang.
  2445. Hopefully add version extraction for Intel.
  2446. Add some settings for non-truncation of test output.
  2447. Fix up the regex command for Intel.
  2448. Test for too-old-intel compilers.
  2449. Possibly fix test on HPUX.
  2450. Possibly fix configuration test on AIX.
  2451. Try to make the macros do almost nothing for Watcom.
  2452. More consistency in the macro options.
  2453. Add missing NO_EXPORT macro variant.
  2454. Look for errors reported by PGI too.
  2455. Quote paths in case there is a space in one of them.
  2456. Disable the tests for Watcom.
  2457. Fix Compiler id variable name.
  2458. Add quotes in case cmake is installed in a prefix with a space.
  2459. Fix the feature of using a specific prefix for macros.
  2460. Add documentation about the prefix and no_deprecated options.
  2461. Remove blank line at the start of the file.
  2462. Don't start a line with a dash(-)
  2463. Fix up verbatim code sections of the dox.
  2464. Todd Gamblin (3):
  2465. FindBoost: Call find_package with NO_MODULE first
  2466. Fix XL compilers on non-AIX machines.
  2467. Fixed link bugs in BlueGeneP build.
  2468. Changes in CMake 2.8.6-rc1 (since 2.8.5)
  2469. --------------------------------------------
  2470. Aaron C. Meadows (1):
  2471. FindSubversion: Invoke svn non-interactively (#12304)
  2472. Alex Neundorf (92):
  2473. Add a switch to disable a find_package() call completely
  2474. Add documentation for the CMAKE_DISABLE_FIND_PACKAGE_<Name> switch
  2475. Add a basic test for CMAKE_DISABLE_FIND_PACKAGE_<package>
  2476. Add macros cmake_push/pop_check_state() as discussed on the list.
  2477. Fix copyright notice test
  2478. Add CheckCXXSymbolExists.cmake, so this can be used also for C++
  2479. Minor fix to try_compile() docs (#12333)
  2480. Fix #12342: Add APPEND_STRING option to set_property()
  2481. Extend FeatureSummary: add PURPOSE of package and TYPE
  2482. FeatureSummary.cmake: remove "comment" field
  2483. FeatureSummary.cmake: add INCLUDE_QUIET_PACKAGES keyword
  2484. FeatureSummary.cmake: error out when a REQUIRED package is missing
  2485. FeatureSummary.cmake: only higher TYPEs can override previous TYPEs
  2486. FeatureSummary.cmake: cosmetics
  2487. FeatureSummary.cmake: update documentation
  2488. Remove debug output from CheckSymbolExists
  2489. Don't put files from CMAKE_ROOT into CodeBlocks projects (#12110)
  2490. More PATH_SUFFIXES for finding Postgresql and also search catalog/pg_type.h
  2491. Use FPHSA(), remove unnecessary stuff and don't recommend link_directories()
  2492. Mark the results from find() as advanced
  2493. FindPostgreSQL: fix PATH_SUFFIXES, better output for FPHSA
  2494. Strip trailing whitespace
  2495. FindGIF/FindFreetype.cmake: remove standard search paths from find-calls
  2496. FindGif: add giflib4 as one more name for the library under Windows
  2497. Add basic version check for giflib
  2498. Patch by Campbell Barton: puts definitions into C::B project file
  2499. Remove useless line of code
  2500. Also put builtin include dirs into CodeBlocks project file
  2501. Remove trailing whitespace
  2502. Also search for libxkbfile, XSync and SM include dir
  2503. Provide macro write_basic_config_version_file()
  2504. Add example to documentation
  2505. Add some tests for write_basic_config_version_file()
  2506. Fix copyright notice
  2507. Really fix copyright notice
  2508. Set UNSUITABLE instead of not COMPATIBLE
  2509. Improve documentation for WriteBasicConfigVersionFile.cmake
  2510. Add macros GETTEXT_PROCESS_POT() and GETTEXT_PROCESS_PO_FILES()
  2511. Support REQUIRED in FindGettext.cmake (using FPHSA.cmake)
  2512. Fix #12358: make optionally enabling ASM work again
  2513. Start work on automoc: add empty cmQtAutomoc class
  2514. Start implementing skeleton for automoc in cmake
  2515. Add actual automoc code from automoc
  2516. Remove the need to check for .h/.cxx during buildtime
  2517. Add the cmake module required currently for automoc
  2518. Add AUTOMOC to the add_library() command
  2519. Fix line lengths
  2520. Move code for parsing a cpp-file from the big loop to separate function
  2521. Initialize verbose based onb the env.var.
  2522. Color output when running moc
  2523. Add the generated automoc.cpp file to the cleaned files
  2524. Use cout instead of printf()
  2525. Remove trailing whitespace
  2526. Refactor SetupAutomocTarget() so it can be run after creating the target
  2527. Remove trailing whitespace
  2528. Move automoc processing from add_executable/library to cmGlobalGenerator
  2529. Nicer progress message for the automoc target
  2530. Add a test for automoc
  2531. Add documentation for AUTOMOC, add initialization via CMAKE_AUTOMOC
  2532. Fix logic which decides when to execute automoc test
  2533. Automoc.cmake is not needed anymore
  2534. Fix build: non-void function must return a value
  2535. Fix warnings
  2536. Fix bootstrap test with automoc
  2537. Only enable the automoc test after checking that Qt4 works
  2538. Fix build: use std::ios::out|ios::trunc instead of std::ios_base::out
  2539. Silence warning in automoc: use long instead of int
  2540. Fix automoc with VS builds: apply patch from Bill
  2541. Make clLocalGenerator::GetTargetFlags() public
  2542. Add find-package mode, which does nothing yet
  2543. Implement find-package mode of cmake
  2544. Replace cmake::GetScriptMode() with GetWorkingMode()
  2545. Fix copyright notice in new CMakeFindPackageMode.cmake
  2546. Better support for lib64 and Debian multiarch
  2547. Use the file-utility to test for 64bit if there is no /usr/lib64
  2548. Add a cmake.m4 for using cmake in autoconf projects instead of pkgconfig
  2549. Improve documentation for --find-package mode
  2550. Add a test for the new --find-package mode
  2551. Only run the test if we are using a makefile generator under UNIX
  2552. The makefile for the test was kindof wrong
  2553. Fix test on OpenBSD with BSD make
  2554. Rename helper macros print_compile_flags() to set_compile_flags_var()
  2555. Dont check for -isysroot and -mmacosx-version on OSX in --find-package mode
  2556. Disable any STATUS output in --find-package mode
  2557. Much improved test, should now be executed on all UNIXes
  2558. Make the --find-package test harder
  2559. Make the test harder by always having a space in the include dirs
  2560. Only enable the test when using GNU make
  2561. Fix line length
  2562. Use $(CXXFLAGS) and $(LDFLAGS) in the --find-package test Makefile
  2563. Require the current cmake version in --find-package mode
  2564. Fix --find-package mode on Cygwin, where enable_language(RC) is called
  2565. Alexey Ozeritsky (5):
  2566. fixed: search of acml libraries
  2567. gotoblas supported
  2568. ACML-GPU supported
  2569. ACML-GPU supportede
  2570. fixed: search of ATLAS library for C/C++-only projects
  2571. Andreas Schneider (6):
  2572. FindJava: Find missing java development executables.
  2573. Modules: Added CMake Java support.
  2574. Tests: Java tests should test UseJava.cmake
  2575. Tests: Check for the new Java exeutable variables.
  2576. Java: Use set_property/get_property for target variables.
  2577. Java: Fix documentation format and indentation
  2578. Arnaud Gelas (1):
  2579. Search for the ASPELL executable
  2580. Bill Hoffman (5):
  2581. Only pay for unused variable checking if it is on.
  2582. Initial support for Intel Fortran VS2010.
  2583. Fix custom commands in VS2010 Fortran projects using CFG_INTDIR and test.
  2584. Use MSBuild when devenv is not around, since VCExpress seems broken.
  2585. Fix for bug #12413, nmake did not handle targets with + in the name.
  2586. Brad King (13):
  2587. MinGW: Remove old workaround and use native echo (#12283)
  2588. Document caveat of custom commands in multiple targets (#12311)
  2589. cmSystemTools: Remove trailing whitespace
  2590. RunSingleCommand: Fix indentation
  2591. RunSingleCommand: Avoid assignment in condition
  2592. Documentation: WIN32 not defined on Cygwin (#12334)
  2593. KWSys: Simplify SystemTools::GetTime implementation (#12261)
  2594. KWSys: Avoid conversion warning in SystemTools::GetTime
  2595. KWSys: Fix using long long and __int64 with hash_(set|map)
  2596. KWSys: __int64 and long long may be same type in specialization
  2597. XL: Fix old VisualAge branding of Fortran compiler
  2598. Do not crash when an imported target depends on a missing target
  2599. Fix CHECK_(C|CXX)_COMPILER_FLAG for Clang (#12394)
  2600. Clinton Stimpson (5):
  2601. Add -DQT_NO_DEBUG if no build type is specified so Qt plugins will work.
  2602. Add qt4/QtCore to help find Qt headers when cross-compiling.
  2603. Qt4: Fix reference of undefined variable when detecting frameworks on Mac OS X
  2604. Remove C compiler requirement from FindQt4.cmake
  2605. CPack/NSIS: Fix reinstall and multiple install issues when using components.
  2606. David Cole (26):
  2607. Begin post-2.8.5 development
  2608. Fix Architecture test to work with Xcode 4
  2609. Fix BuildDepends test to work with Xcode 4
  2610. Base architecture choice logic on Xcode version
  2611. Use correct default multiple architecture values in test
  2612. Add use of EFFECTIVE_PLATFORM_NAME to generated Xcode projects.
  2613. Correct KWStyle line too long error
  2614. Add fail regex to detect supported warning flags correctly.
  2615. Add support for Visual Studio project-specific globals (#8707)
  2616. Fix machine-specific UpdateGIT test failures
  2617. Ensure libgmp-10.dll is in the PATH for CMakeTestAllGenerators
  2618. Watcom: Add -c flag to wlib calls (#12245)
  2619. Add Watcom support to InstallRequiredSystemLibraries (#11866)
  2620. Watcom: Use correct args for execute_process call (#11866)
  2621. CTest: print failed tests in index order (#11746)
  2622. Fix line too long style violation
  2623. Documentation: Fix comments in the source code (#10941)
  2624. Add more find_path locations for DCMTK header files (#12323)
  2625. VS9: Add include_directories to midl command lines
  2626. KWSys: Remove translation path for "/tmp_mnt/" (#10595)
  2627. VS10: Avoid unnecessary rebuilds for custom commands
  2628. QtAutomoc test: Pass QT_QMAKE_EXECUTABLE
  2629. QtAutomoc: Eliminate compiler warning
  2630. CheckSymbolExists: Use IMMEDIATE flag for configure_file (#11333)
  2631. Xcode: Suppress same-old warning again.
  2632. Xcode: Save object id values in CMakeCache.txt (#11690)
  2633. Johan Björk (5):
  2634. Xcode: Remove PREBINDING attribute for Xcode 4 and above
  2635. RunSingleCommand: Replace verbose boolean with enum
  2636. RunSingleCommand: Add a OUTPUT_NORMAL flag.
  2637. Xcode: Quote ',' in Xcode string values (#12259)
  2638. Xcode: Rearrange CMakeReRun to enable parallel builds
  2639. Matej Hribernik (2):
  2640. VS: Factor Find64BitTools out of Win64 generator to parent
  2641. Add VisualStudio 9 and 10 generators for Itanium platform
  2642. Modestas Vainius (1):
  2643. multiarch: Treat lib/<arch> as implicit link dir (#12326)
  2644. Oliver Buchtala (3):
  2645. Java: Create java_class_filelist only if it does't exist.
  2646. Java: Added some dependency magic to avoid recompilations.
  2647. Java: Create correct jar archive dependencies.
  2648. Rolf Eike Beer (2):
  2649. remove extra output message from FindJava.cmake
  2650. FindThreads: Try pthreads with no special option first (#11333)
  2651. Steven Velez (1):
  2652. VS10: Add SCC support
  2653. Todd Gamblin (2):
  2654. Try regular compiler when no MPI compiler.
  2655. Fix issues with removing try_compile input file.
  2656. Will Dicharry (1):
  2657. Added HDF5 high level Fortran bindings to available components.
  2658. Changes in CMake 2.8.5 (since 2.8.5-rc3)
  2659. --------------------------------------------
  2660. Brad King (1):
  2661. Revert "Add a new function SWIG_GET_WRAPPER_DEPENDENCIES to UseSWIG.cmake"
  2662. (this revert means that issue #4147 has been re-opened)
  2663. Changes in CMake 2.8.5-rc3 (since 2.8.5-rc2)
  2664. --------------------------------------------
  2665. Bill Hoffman (4):
  2666. Use devenv instead of msbuild for vs2010.
  2667. Revert "With very long file names, VS 2010 was unable to compile files."
  2668. Use relative paths for custom command inputs.
  2669. Look for VCExpress as a possible build tool as well as devenv.
  2670. Brad King (3):
  2671. KWSys: Recognize color TERM=screen-256color-bce (#12287)
  2672. find_library: Use lib->lib64 conversion in CXX-only projects (#12247,#12248)
  2673. libarchive: Install COPYING with CMake documentation
  2674. Christoph Höger (1):
  2675. FindJNI: Search in Fedora arch-specific JVM location (#12276)
  2676. Julien Malik (1):
  2677. FindSWIG: Use NAMES in find_program directives (#12280)
  2678. Modestas Vainius (1):
  2679. Documentation: Fix spelling / formatting errors (#12287)
  2680. Philip Lowman (3):
  2681. FindBoost: Fixes #12188
  2682. FindBoost: Also search for 1.46.1
  2683. Detect VS 2010 SP1, faster and more robust detection
  2684. Changes in CMake 2.8.5-rc2 (since 2.8.5-rc1)
  2685. --------------------------------------------
  2686. Bill Hoffman (6):
  2687. Fix a memory leak.
  2688. Fix for bug#10798. VS10 did not append -I flags with COMPILE_FLAGS prop.
  2689. Append and do not clobber CMAKE_CXX_FLAGS in the test.
  2690. Use bin tree for inclues to avoid -I with spaces in the path.
  2691. One more try. Use full path by default, and relative on broken compilers.
  2692. Fix for bug #11927, external project git clone step always runs vs10.
  2693. Brad King (9):
  2694. XL: Place Fortran modules with -qmoddir= flag (#12246)
  2695. Teach file(DOWNLOAD|UPLOAD) to timeout after inactivity
  2696. Xcode: Fix parallel build depends with universal binaries (#11844)
  2697. Fix style errors added by parent and grandparent
  2698. Use cascading-if for per-config test and install code
  2699. CTest: Report tests not run due to unknown configuration
  2700. GNU: Fix CMAKE_INCLUDE_SYSTEM_FLAG_<lang> value (#12258)
  2701. Teach find_(library|package) about Linux multiarch (#12037)
  2702. Test find_package multiarch support (#12037)
  2703. Clinton Stimpson (11):
  2704. BundleUtilities: Work w/ non .app exes on Mac (#12034)
  2705. BundleUtilities: Fix regex to extract dependents from ldd (#12034)
  2706. BundleUtilities: Fix test when using xcode (#12034)
  2707. BundleUtilities: Fix issues with custom target DEPENDS in test (#12034)
  2708. BundleUtilities: Disable running test on Windows unless using MSVC.
  2709. BundleUtilities: Run test on Windows if either MSVC or dumpbin was found.
  2710. BundleUtilities: Print reason for not loading module.so
  2711. BundleUtilities: Add rpath to loadable modules in test.
  2712. Revert "BundleUtilities: Run test on Windows if either MSVC or dumpbin was found."
  2713. Qt4: complete module dependencies in UseQt4.cmake
  2714. Add imported targets support for frameworks on Mac.
  2715. Daniel R. Gomez (1):
  2716. Fix plugin API for gcc 2.9-aix51-020209 (#12233)
  2717. David Cole (3):
  2718. BundleUtilities: Avoid a cryptic and unhelpful error message
  2719. BundleUtilities: Avoid test on Watcom dashboards (#12034)
  2720. CMake: eliminate use of cvs in the Release scripts
  2721. Eric NOULARD (2):
  2722. CPackRPM: Enhance documentation
  2723. Add some more Specs file tag handling.
  2724. Johan Björk (3):
  2725. CMake: Move tokenize to cmSystemTools
  2726. Xcode: Support multiple level nesting of XCode folders (#10039)
  2727. XCode: Support target folders on XCode.
  2728. Modestas Vainius (1):
  2729. multiarch: Set CMAKE_LIBRARY_ARCHITECTURE_REGEX for Linux|Hurd|kFreeBSD
  2730. Philip Lowman (3):
  2731. FindProtobuf: Better MSVC support, Searching for protobuf lite
  2732. Fix , to - in Copyright message so it passes CMake.ModuleNotices test
  2733. 10997: PROTOBUF_GENERATE_CPP now supports proto files outside current dir
  2734. Rolf Eike Beer (1):
  2735. CMake: Update documentation of STRING(SUBSTRING) for length -1 (#10740)
  2736. Sean McBride (1):
  2737. Fix XCode -> Xcode typos, notably in man page (#12231)
  2738. Tim Gallagher (1):
  2739. Modified the FindHDF5.cmake file to locate the Fortran bindings.
  2740. Will Dicharry (7):
  2741. HDF5 high level library is a find COMPONENT now.
  2742. Add logic for CMake built HDF5 install.
  2743. Use CMAKE_CURRENT_LIST_DIR to locate FindPackageHandleStandardArgs.
  2744. Use HDF5_FOUND to control autoconf and CMake built FindHDF5.
  2745. Fix for bug 11752, mixed debug and release libraries.
  2746. FindHDF5 ensures good link lines when libraries are duplicated.
  2747. Remove unnecessary mark_as_advanced from FindHDF5.
  2748. Zach Mullen (3):
  2749. Dynamic analysis test output should not be compressed.
  2750. We will actually compress memcheck output if the server supports it.
  2751. Fix type conversion warning
  2752. Changes in CMake 2.8.5-rc1 (since 2.8.4)
  2753. ----------------------------------------
  2754. Alex Neundorf (33):
  2755. Rework the way assembler is handled, use the C/CXX compiler by default
  2756. Make it possible to exlude external libs from dot files
  2757. GRAPHVIZ_IGNORE_TARGETS is now a list of regular expressions
  2758. Also generate dependers-graphviz files.
  2759. Fix XML escaping for the project() name in Eclipse projects (#11658)
  2760. Fix XML escaping for target names in Eclipse project files (#11658)
  2761. Add XML escaping for directory name in Eclipse projects (#11658)
  2762. Eclipse projects: created one linked resource for each subproject
  2763. Also add the SOURCES from add_custom_target() to CodeBlocks projects (#11736)
  2764. Add ASM support for the Intel compiler
  2765. Actually use CMAKE_ASM_COMPILER for asm, instead of CMAKE_C_COMPILER
  2766. Add support for ASM for the SunPro compiler
  2767. Add suport for ASM for the IBM XL compiler
  2768. Add support for ASm for the HP compiler.
  2769. Set the HP asm file suffix
  2770. Change the default rules so they fit better to the new ASM handling
  2771. Fix the default CMAKE_ASM_COMPILE_OBJECT, make XL-ASM use it
  2772. Add assemble- and preprocess commands for HP
  2773. The Assembler test now tests ASM for GNU, Intel, HP, XL and SunPro
  2774. Use a regexp instead a lot of ORs for checking the compiler ID
  2775. Only try assembler support for Makefile-based generators
  2776. Fix bad comparison in the detect assembler-code
  2777. It's ELSEIF(), not ELSIF()
  2778. Add temporary debug output for compiler ID detection for ASM
  2779. Add more regex for gcc, always print the ASM compiler ID
  2780. Add support for the Intel compiler used for ASM under Windows
  2781. -use CMAKE_C_FLAGS when generating the assembler file
  2782. -only enable the asm test for the Intel compiler if we are under UNIX
  2783. Remove trailing whitespace
  2784. Make use_mangled_mesa() available in cmake script mode (#11926)
  2785. Fix parsing include dirs and builtin macros for CXX-only projects
  2786. Don't skip the last builtin include dir for the Eclipse project file
  2787. -fix VirtualFolders in Eclipse under Windows
  2788. Alexey Ozeritsky (1):
  2789. ACML search improvement
  2790. Andreas Schneider (6):
  2791. Modules: Added CheckPrototypeDefinition module.
  2792. Tests: Added test for check_prototype_definition.
  2793. FindOpenSSL: Added support for pkg-config.
  2794. FindOpenSSL: We should only use hints to find OpenSSL.
  2795. FindOpenSSL: Fixed crypto und ssl variable names.
  2796. FindOpenSSL: Use find_package_handle_standard_args for version check.
  2797. Bill Hoffman (2):
  2798. With very long file names, VS 2010 was unable to compile files.
  2799. Fix for bug where VS2010 did not use .obj files as part of the build.
  2800. Brad King (94):
  2801. Reject directory names containing '=' (#11689)
  2802. FindQt4: Include builtin FindPackageHandleStandardArgs directly
  2803. Handle trailing slashes on add_custom_command DEPENDS
  2804. Handle relative WORKING_DIRECTORY in add_custom_(command|target)
  2805. Pass -o after -c for Fortran to avoid mpif77 ordering bug
  2806. Add link flag table entries for VS 7,8,9
  2807. VS: Create a Fortran DLL's import library directory
  2808. Fix linker flag initialization from LDFLAGS (#11840)
  2809. ccmake: Remove extra parens around comparison
  2810. Avoid direct use of std::stringstream
  2811. Honor module .def files with MinGW tools (#9997)
  2812. CTest: Update Git submodules with --recursive
  2813. libarchive: Remove unused build/windows directory (#11885)
  2814. Pass .def files directly to MinGW tools (#9997)
  2815. Fix Fortran test .def file symbol mangling
  2816. Require at least CMake 2.6.3 to build current CMake
  2817. GNUInstallDirs: Simplify and clarify documentation
  2818. KWSys: Require at least CMake 2.6.3
  2819. Remove unused CMAKE_BACKWARDS_COMPATIBILITY mark
  2820. Factor AIX and XL compiler flags into common module
  2821. Move RPATH flags to AIX per-compiler information files
  2822. Initialize ASM rpath flags for executables with those for shared libs
  2823. Add ASM platform information for XL compiler on AIX
  2824. Factor HP compiler flags into per-platform/per-compiler files
  2825. Add ASM platform information for HP compiler on HP
  2826. Add target property LINK_SEARCH_START_STATIC to aid static linking
  2827. Test static linking with LINK_SEARCH_START_STATIC
  2828. Fix Assembler test to parse C flags string before using
  2829. Teach Assembler test to generate main.s at build time
  2830. Do not bother enabling C++ in Assembler test
  2831. The link interface of MODULE libraries is empty (#11945)
  2832. CTest: Do not fail with submodules and Git < 1.6.5.0
  2833. Remove trailing whitespace
  2834. Add parens in cmTarget::ComputeLinkInterface logic
  2835. Validate custom command arguments (#11963)
  2836. Factor old-style -D flags out from -I flag generation
  2837. FindMPI: Fix documentation formatting
  2838. Generate target-wide flags before individual build rules
  2839. Optionally pass include directories with response files
  2840. Pass include directories with response files to GNU on Windows
  2841. Enable Java test more carefully on Apple
  2842. Disable Java test with Xcode generator
  2843. Allow '.' in target names in generator expressions (#12002)
  2844. GNUInstallDirs: Propagate DATAROOTDIR changes to dependent defaults
  2845. KWSys: Do not trust EXECUTABLE_OUTPUT_PATH for ProcessFwd9x encoding
  2846. Refine unused cache variable warning
  2847. Fix unused cache warning after multiple configure iterations
  2848. FortranCInterface: Fix mangling detection with Cray Fortran >= 7.3.2
  2849. Fix typo in include_directories documentation (#12020)
  2850. KWSys: Recognize rxvt-unicode-256color terminal (#12013)
  2851. Normalize slashes of add_custom_(command|target) DEPENDS (#11973)
  2852. COMP: Fix build against non-standard outside libarchive
  2853. Modules: Add comment and copyright notice validation to readme.txt
  2854. cmArchiveWrite: Clear xattr and acl from entries (#11958)
  2855. find_package: Forward component list for recursive calls in modules
  2856. XL: Set C++ and Fortran flags consistently with C
  2857. XL: Consolidate compiler flag information
  2858. XL: Avoid copying archives into shared libraries that link them
  2859. VS10: Fix working directory of consecutive custom commands (#11938)
  2860. Fix working drive of make rules on Windows
  2861. Change working drive only in MinGW Makefiles
  2862. VS: Use setlocal/endlocal only in VS 10 custom commands
  2863. VS10: Fix exit code of custom commands with setlocal/endlocal (#11938)
  2864. KWSys: Remove unused CheckCXXSourceRuns cmake module
  2865. find_package: Rename implementation of user package registry
  2866. find_package: Cleanup user package registry less aggressively
  2867. find_package: Document user package registry locations
  2868. find_package: Search a "system package registry"
  2869. find_package: Check both 32-bit and 64-bit registry views
  2870. find_package: Test system package registry when possible
  2871. find_package: Fix system package registry test path conversion
  2872. FindITK: Use passthru find_package config mode for messages
  2873. OpenBSD: Use 'arch -s' for host processor (#12143)
  2874. Fix case typo in CMAKE_BUILD_TYPE docs (#12148)
  2875. KWSys: Fix leaked FILE in EncodeExecutable error case
  2876. ENH: Fix Intel 12 plugin project generation for VS < 10
  2877. Revert "Honor RULE_MESSAGES property for build target messages" (#12190)
  2878. Fix signed/unsigned comparison in EscapeJSON
  2879. Fix run_compile_commands build on Apple GCC 3.3
  2880. Make std::map usage more portable in language=>flags/defines maps
  2881. Provide std::map<>::at for use in run_compile_commands
  2882. run_compile_commands: Avoid shadow in std::map<>::at workaround
  2883. Improve string(RANDOM) default seed
  2884. run_compile_commands: Avoid extra stl vector conversion
  2885. VS 6: Define _WIN32_WINNT to load wincrypt.h correctly
  2886. run_compile_commands: Cast istream::get() result to char
  2887. Fix CompileCommandOutput test for Make tools not supporting spaces
  2888. Explicitly cast time value in cmSystemTools::RandomSeed
  2889. Fix CompileCommandOutput test build on Windows
  2890. Add Absoft Fortran compiler id and basic flags
  2891. Absoft: Detect implicit link libraries on Linux and Mac
  2892. Absoft: Enable FortranCInterface check in Fortran test
  2893. Document status of output_required_files command (#12214)
  2894. Fix forced-seed argument type in string(RANDOM)
  2895. Clement Creusot (2):
  2896. Add new module Armadillo
  2897. Corrected copyright format in FindArmadillo.cmake
  2898. Clinton Stimpson (8):
  2899. Change to use fphsa to check required variables and version.
  2900. Fix grouping bug where "Ungrouped Entries" showed up as a child.
  2901. When checking find_package() components, special case qtmain.
  2902. Fix issues with find_path() for QtCore include dir on Mac. Fixes 11868.
  2903. Fix regression in 43cb9b8.
  2904. Speed up creation of parameters file for moc custom command.
  2905. Combine component packaging methods into an enum.
  2906. Add component support to DragNDrop generator.
  2907. David Cole (34):
  2908. ExternalProject Test: Increase test timeout value
  2909. CFBundle Test: Add PATHS for finding Rez (#11295)
  2910. CTest: Mark DART_TESTING_TIMEOUT as advanced (#10150)
  2911. Xcode: Allow override of CMAKE_CONFIGURATION_TYPES (#8914)
  2912. Tests: Eliminate unnecessary files and variables.
  2913. VS9: Map enable/disable PREfast flags (#10638)
  2914. Strip trailing space from xcode-select output (#10723)
  2915. CTest: Add alias for make test target (#4564)
  2916. Add CMAKE_SCRIPT_MODE_FILE variable (#2828)
  2917. Add CMAKE_ARGC and CMAKE_ARGV0..N-1 variables (#2828)
  2918. Fix KWStyle line-too-long complaint (#2828)
  2919. Documentation: Sync two differing copies of -E docs (#10446)
  2920. Clarify list subcommand documentation (#8154)
  2921. VS2010: Fixed GenerateManifest flag (#10704)
  2922. VS: Only use /MANIFEST if hasManifest is true (#11216)
  2923. Make file DOWNLOAD less noisy (#11761)
  2924. Begin post-2.8.4 development
  2925. Use stable_sort to preserve test order (#11877)
  2926. Implement file(UPLOAD (#11286)
  2927. Fix KWStyle line too long error (#11286)
  2928. ExternalProject: Extract file names from more urls
  2929. InstallRequiredSystemLibraries: Read reg values with get_filename_component
  2930. Add correct module notice header.
  2931. If getconf returns empty output, try cpuinfo. (#11302)
  2932. Add ProcessorCount support for QNX via pidin. (#11302)
  2933. Compare ProcessorCount to SystemInformation count. (#11302)
  2934. ProcessorCount test: more output, do not fail. (#11302)
  2935. ProcessorCount: Add support for remaining platforms (#11302)
  2936. ProcessorCount: Test fails if count is 0 (#11302)
  2937. ProcessorCount: Use ERROR_QUIET with execute_process (#11302)
  2938. ExternalProject: Add SVN_TRUST_CERT argument
  2939. CMake: Clarify the --debug-trycompile help text
  2940. ExternalProject: Always use --non-interactive with svn
  2941. VS10: Write header-only files in correct xml element (#11925)
  2942. Eric NOULARD (25):
  2943. CPackRPM honors all the different ways of packaging components
  2944. CPackRPM fix IRIX compiler warning (variable never used)
  2945. CPack remove "-ALL" suffix for ALL-IN-ONE packages
  2946. CPack Authorize DISPLAY_NAME usage in component package
  2947. CPack fix KWStyle warning
  2948. CPack remove previously CPack generated files (if any) before running CPack
  2949. CPackRPM Replace space in some CPACK_ vars (Fix bug 9932)
  2950. CPackRPM activate CPackRPM test on Linux systems where rpmbuild is found
  2951. CPackArchive package all components specified in CPACK_COMPONENTS_ALL
  2952. CPack more robust way to collect files belonging to a component
  2953. CPackRPM do not run test if build dir contains space
  2954. CPack fix compile error on VS70 and avoid KWStyle warnings
  2955. CPackRPM add more trace output in order to help failing diagnostics
  2956. CPackRPM even more trace in debug mode or in case of failure
  2957. CPackRPM non matching ENDIF
  2958. CPack try to please SUSE 64 bits and install lib in lib64 and not lib.
  2959. Remove debbuging typo
  2960. CPack fix CPackDeb crash when CPackDeb.cmake ends with a FATAL_ERROR
  2961. CPack fix #11930 and simplifies component packaging options
  2962. Fix #11964 Handle lib64 library on Linux
  2963. Fix KWStyle warnings
  2964. Split CPack.cmake in more manageable parts
  2965. Fix KWStyle warnings
  2966. CPackRPM Fix #12096: handle absolute install path with component install
  2967. CPack make RPM work on AIX. fix #0012183 merge patch from Pasi Valminen
  2968. James Bigler (1):
  2969. Add FloatingPointModel to the list of known VS7 generator flags.
  2970. Johan Björk (1):
  2971. XCode: Also qoute [] as needed to set build-configurations.
  2972. Kovarththanan Rajaratnam (1):
  2973. Documentation: document platform specific -E commands (#10446)
  2974. M. Konrad (1):
  2975. CPackDeb add Component Support to DEB generator fix #0011655
  2976. Manuel Klimek (6):
  2977. refactor flags and defines
  2978. cache flags and defines
  2979. implement cxx command output
  2980. make compile command output optional
  2981. Adds a test for the compile command line output.
  2982. Only offer the compile command output feature on unix systems
  2983. Marco Craveiro (1):
  2984. CTest: Use the gcov --preserve-paths flag (#11717)
  2985. Markus Rathgeb (1):
  2986. When cross compiling, don't double-root paths when using find_*.
  2987. Martin Konrad (2):
  2988. CPackDeb: Fix #12006 broken package names
  2989. CPackDeb: Handle dirs for CONTROL_EXTRA correctly when packaging components
  2990. Mathieu Malaterre (8):
  2991. This commit fixes bug #0010316
  2992. Add a new function SWIG_GET_WRAPPER_DEPENDENCIES to UseSWIG.cmake
  2993. Add support for Java on HP
  2994. Add support for java on fedora
  2995. UseSWIG.cmake does not expand $(OutDir)
  2996. Add support for new swig 2.0 application
  2997. UseSWIG.cmake did not support multiple modules and parallel builds
  2998. Add support for FindJava on HP-UX and alpha
  2999. Michael Wild (1):
  3000. Add module ProcessorCount.cmake (#11302)
  3001. Modestas Vainius (1):
  3002. Documentation: Fix a few typos (#11883)
  3003. Nikita Krupen'ko (1):
  3004. Add GNUInstallDirs module to define GNU layout (#3976)
  3005. Philip Lowman (1):
  3006. VS7/8/9: Map whole program optimization flags (#10263)
  3007. Richard Bateman (1):
  3008. Add support for CFBundle targets on the Mac (#11295)
  3009. Rolf Eike Beer (2):
  3010. CTest: catch warning output of Apache Maven
  3011. FindZLIB: print library instead of include directory
  3012. Sean McBride (1):
  3013. Removed most usage of Carbon in favour of CoreFoundation
  3014. Sebastian Herbst (2):
  3015. VS8/9: Add flag map entries for /Zc:wchar_t (#10397)
  3016. VS7/8/9: Add flag map for string pooling option (#10397)
  3017. Tim Hütz (1):
  3018. Add a string(FIND) sub-command (#11795)
  3019. Todd Gamblin (2):
  3020. FindMPI: Handle multiple languages
  3021. Added backward compatibility for input as well as output vars.
  3022. Wesley Turner (1):
  3023. Ensure executable files have executable permissions.
  3024. Zach Mullen (5):
  3025. Implement ctest_upload command
  3026. Change 'Files' tag to 'Upload' in Upload.xml
  3027. Don't tar/gz ctest_upload() files
  3028. Add the FILES keyword to ctest_upload command
  3029. cmCTestUploadCommand::CheckArgumentKeyword should return false if not FILES
  3030. Changes in CMake 2.8.4 (since 2.8.4-rc2)
  3031. ----------------------------------------
  3032. Alex Neundorf (1):
  3033. Fix crash in GraphVizWriter when GRAPHVIZ_TARGET_IGNORE_REGEX is used
  3034. Andreas Schneider (1):
  3035. FindPerlLibs: Add notice of copyright
  3036. Brad King (3):
  3037. libarchive: Define major/minor/makedev only where needed (#11648)
  3038. libarchive: Use OpenSSL only if CMAKE_USE_OPENSSL (#11815)
  3039. Fix documentation of MSVC_VERSION (#11833)
  3040. David Cole (1):
  3041. Silence the may be used uninitialized warnings: initialize stuff.
  3042. Eric NOULARD (2):
  3043. CPack Tests the different ways of packaging components
  3044. Avoid foreach IN LISTS syntax which is not supported by CMake 2.6
  3045. Changes in CMake 2.8.4-rc2 (since 2.8.4-rc1)
  3046. --------------------------------------------
  3047. Alex Neundorf (3):
  3048. Make cmake build again with cmake < 2.6.3
  3049. Strip trailing whitespace.
  3050. Fix parsing of compiler name with a version number
  3051. Ben Boeckel (86):
  3052. ... 86 commit messages summarized as:
  3053. Fix ADD_TEST regression when WORKING_DIRECTORY not given
  3054. Add new "strict-mode" CMake variable checking
  3055. Activate / avoid using new command line arguments:
  3056. --warn-uninitialized
  3057. --warn-unused-vars
  3058. --no-warn-unused-cli
  3059. --check-system-vars
  3060. Bill Hoffman (3):
  3061. For macros make sure the FilePath points to a valid pointer in the args.
  3062. Add a warning when variables are used uninitialized.
  3063. Make --strict-mode option, and integrate with cmake-gui
  3064. Brad King (34):
  3065. bootstrap: Granular system library selection (#11431)
  3066. bootstrap: Clarify --init flag documentation (#11431)
  3067. bootstrap: --verbose implies verbose Makefiles (#11708)
  3068. Combine duplicate COMPILE_DEFINITIONS disclaimer
  3069. Document COMPILE_DEFINITIONS known limitations (#11660, #11712)
  3070. Document try_compile behavior more clearly (#11688)
  3071. Document Check(C|CXX)SourceCompiles behavior more clearly (#11688)
  3072. Fix get_(cmake|test)_property documentation (#11703)
  3073. Reference get_property() from old get_*_property() commands
  3074. Replace misleading example in the if() documentation (#10773)
  3075. Clarify auto-dereference cases in if() command (#11701)
  3076. Document CheckFunctionExists more clearly (#10044)
  3077. Document CheckSymbolExists more clearly (#11685)
  3078. Update CheckSymbolExists copyright year
  3079. Report directory with missing source file (#11677)
  3080. Test that missing source mentions directory (#11677)
  3081. Teach Simple_Mingw_Linux2Win test to use windres
  3082. Disable SubDirSpaces parens with GNU Make 3.82 (#11654)
  3083. libarchive: Fix major() check for LSB 4.0 (#11648)
  3084. Xcode: Make generation depend on all input directories
  3085. Recognize SCO UnixWare C/C++ compilers (#11700)
  3086. Factor SCO compiler info out of platform file (#11700)
  3087. Honor CMAKE_TRY_COMPILE_CONFIGURATION in Makefile generators (#10809)
  3088. Document CMAKE_TRY_COMPILE_CONFIGURATION variable
  3089. Honor VS_SCC_* properties in Fortran targets (#10237)
  3090. Normalize slashes in scanned #include lines (#10281)
  3091. Improve try_compile and try_run error messages
  3092. Use shortest extension to verify try_compile language (#11731)
  3093. Modules: Include builtin FindPackageHandleStandardArgs directly
  3094. Fix relative CMAKE_USER_MAKE_RULES_OVERRIDE (#11725)
  3095. Clarify CMAKE_USER_MAKE_RULES_OVERRIDE documentation (#11724)
  3096. Always place try_compile executables predictably (#11724)
  3097. try_compile: Allow only languages loaded in caller (#11469)
  3098. Fix ArgumentExpansion test expected results
  3099. Clinton Stimpson (1):
  3100. Replace exec_program with execute_process for qmake queries.
  3101. David Cole (16):
  3102. Update script with new machine name
  3103. VS10: Fix problems with InstallRequiredSystemLibraries.
  3104. Add CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS_NO_WARNINGS variable
  3105. Add CPACK_NSIS_INSTALL_ROOT for CMake's own installer (#9148)
  3106. Xcode: Disable implicit make rules in custom rules makefiles.
  3107. Add freeglut as library name (#10031)
  3108. Add new names for PNG and ZLIB libraries
  3109. Avoid exceptions when ccmake terminal window is too small (#11668)
  3110. VS10: Load projects with obj "source" files (#11147)
  3111. VS10: Enable using devenv as CMAKE_MAKE_PROGRAM (#11459)
  3112. Xcode: Fix crash: avoid strlen call on NULL char *
  3113. CTestTest2: Avoid running purify unless requested
  3114. VS10: Escape double quote chars in defines for rc files (#11695)
  3115. Fix line too long KWStyle issue (#11695)
  3116. Avoid space in rc /D values for VS6 and Cygwin (#11695)
  3117. VSResource: Avoid windres /D with quoted spaces (#11695)
  3118. Marcus D. Hanwell (1):
  3119. Bug #11715 - generate header in the build tree.
  3120. Nicolas Despres (1):
  3121. bootstrap: Add --enable-ccache option (#11707)
  3122. Changes in CMake 2.8.4-rc1 (since 2.8.3)
  3123. ----------------------------------------
  3124. Alex Neundorf (32):
  3125. Add support for nasm assembler, patch by Peter Collingbourne (see #10069)
  3126. Improve misleading comments.
  3127. Add missing copyright headers
  3128. We already have 2010, fix copyright year.
  3129. Make FindBISON work properly with non-C locales (#11326)
  3130. Add support for yasm, a nasm compatible assembler
  3131. Use CMAKE_ASM_NASM_FLAGS for nasm instead of FLAGS
  3132. Remove trailing whitespace and minor formatting changes for the dot-code
  3133. Move the code for collecting targets and libraries into separate functions
  3134. Properly insert all targets, also those which don't link to anything.
  3135. Generate separate dot files for each target, and a big one with everything.
  3136. Move the code for generating dot-files into separate class cmGraphVizWriter
  3137. Fix #11421: FindQt3.cmake doesn't honor the REQUIRED keyword
  3138. Remove trailing whitespace
  3139. Don't enforce VERBOSE makefiles for the CodeBlocks generator
  3140. Remove the "early alpha stage" comments about Eclipse and C::B
  3141. Don't disable colors in the CodeBlocks generator and minor cleanup.
  3142. Some more fixes for nasm support, from Etienne (#10069)
  3143. Enable/disable generating graphs depending on the target type
  3144. Use std::cout instead of fprintf
  3145. Collect targets and libs on demand instead of in the ctor
  3146. Exclude targets from the graphviz file based on a regex
  3147. Include CMakeDetermineCompilerId in CMakeDetermineASMCompiler.cmake (#11467)
  3148. Fix typos in the doc
  3149. Add cache var CMAKE_ECLIPSE_MAKE_ARGUMENTS when using the Eclipse generator
  3150. Add ECLIPSE_CDT4_GENERATE_SOURCE_PROJECT as a ADVANCED cache variable (#9631)
  3151. Fix crash in Eclipse generator with empty project (#11616)
  3152. Fix indentation in cmPolicies::ApplyPolicyVersion()
  3153. Remove trailing whitespace
  3154. Prefer files from CMAKE_ROOT when including from CMAKE_ROOT
  3155. Improve documentation and messages for the new CMP0017
  3156. Remove usage of CMAKE_CURRENT_LIST_DIR now that we have CMP0017
  3157. Alexey Ozeritsky (5):
  3158. FindBLAS works in C/C++ projects without Fortran
  3159. ACML find fixes (issue 0011219)
  3160. find ACML fixes
  3161. fix for Fortran-only projects
  3162. FindLAPACK works with C/C++ only projects (issue 0009976)
  3163. Andrius Štikonas (1):
  3164. Modules: Fix spelling 'becase' -> 'because'.
  3165. Ben Boeckel (25):
  3166. Fix parsing of cache variables without a type
  3167. Use cmCacheManager to load entries from the cache
  3168. Support manual cache entries
  3169. Condense parsing of cache entries
  3170. Use FPHSA in FindOpenGL
  3171. Ignore strerror_r since CMake isn't threaded
  3172. Use _POLL_EMUL_H_ instead of HAVE_POLL_FINE
  3173. Rename WorkingDirectory test
  3174. Add WORKING_DIRECTORY argument to add_test
  3175. Add tests for WORKING_DIRECTORY arg to add_test
  3176. Rename the project to match the test
  3177. Fix header includes for C++ and Visual Studio
  3178. Add ctype.h include for toupper()
  3179. Flip slashes around on Windows
  3180. Use --><-- markers to denote the path
  3181. Simplify the _default_cwd derivation
  3182. Only test the default cwd with Makefiles
  3183. Group adding tests with its properties
  3184. Fully specify the path to old-signature add_test
  3185. Use iostream to make Borland happy
  3186. Check for poll when looking for _POLL_EMUL_H_
  3187. Toss out strerror_r macros
  3188. Fix missed _POLL_EMUL_H_ and HAVE_POLL combo
  3189. Make TestsWorkingDirectory test a C file
  3190. Pass the expected value as the first argument
  3191. Bill Hoffman (17):
  3192. Fixes for the OSF operating system build.
  3193. Add a fix for the inline keyword on the osf os.
  3194. Add a "Contract" test for VTK. The test downloads and builds VTK.
  3195. Fix contract test so it is not hard coded to the vtk542 test.
  3196. Fix incremental linking for VS2010 with nmake or make.
  3197. Change cpack run and verify script to work with multi-config generators.
  3198. Fix vs2010 project generation error when HEADER_FILE_ONLY is set.
  3199. Add more documentation for LANGUAGE property.
  3200. Add flags to resource builds on vs 2010 with a test.
  3201. Disable incremental testing for this test, it crashes vs9 linker.
  3202. Only run resource test for MSVC compilers.
  3203. Add support for windows resources with mingw/msys.
  3204. Add support for windres to cygwin.
  3205. Add testing for windows resources for mingw/msys/cygwin and remove for watcom.
  3206. Enable resource building with the intel compiler on windows.
  3207. Add support for source files in custom targets for VS 10 (Bug#11330).
  3208. Change the nightly tests to build from the nightly branch and not next.
  3209. Brad King (90):
  3210. Store direct dependencies in solutions for VS >= 8
  3211. BUG: Fix compiler flag test for non-English MSVC (#11336)
  3212. Document custom command behavior without DEPENDS (#11407)
  3213. Consolidate duplicate link rule make dependency code
  3214. Define LINK_DEPENDS target property (#11406)
  3215. KWSys: Teach SystemInformation about WinXP Pro and Win7
  3216. Fix Intel .vfproj SubSystem attribute values
  3217. Set Intel .vfproj RuntimeLibrary attribute
  3218. Create Fortran info variables for .mod behavior
  3219. Teach CMake about Cray C, C++, and Fortran compilers
  3220. Speedup find_* commands (#11412)
  3221. Prefer non-empty prefixes when matching lib names (#11468)
  3222. Record edge type in global dependency graph
  3223. Use modern global dependency graph for VS < 8 deps
  3224. Allow add_dependencies() on imported targets (#10395)
  3225. Pass Mac linker flag through PGI compiler using "-Wl,"
  3226. Modernize FindITK module (#11494)
  3227. Fix find_* argument parsing crash (#11513)
  3228. Skip VS <= 7.1 dependency analysis for VS >= 8
  3229. Enable 64-bit tools with VS 2010 Express (#9981, #10722)
  3230. KWSys: Associate installed library with an EXPORT
  3231. Fix try_compile RemoveFile anti-virus loop (#11503)
  3232. Fix Fortran .mod timestamps with Cray compiler
  3233. Make Fortran $obj.provides.build targets not .PHONY
  3234. Honor custom command dependencies on imported targets (#10395)
  3235. Improve signature of cmLocalGenerator::GetRealDependency
  3236. Skip file-level dependencies on custom targets (#11332)
  3237. Simplify VS generator ConstructScript interface
  3238. Factor out common custom command generator
  3239. Remove cmLocalGenerator::GetRealLocation
  3240. KWSys: Remove realpath from SystemTools::GetPath (#10335)
  3241. Fix parallel "make install" of CMake itself
  3242. CTest: Fix ctest_sleep documentation (#11554)
  3243. Fix soname in cross-compiled targets with Mac host (#11547)
  3244. Detect object files in implicit link information
  3245. Allow Fortran platform files to set empty values
  3246. Recognize the NAG Fortran compiler
  3247. Add NAG Fortran compiler information files
  3248. FortranCInterface: Recognize NAG Fortran module symbols
  3249. Remove unused variable "rootdir" in VS generators
  3250. Avoid msbuild idiosyncrasy that builds multiple configs (#11594)
  3251. Remove unused parameter "root" in some VS generator methods
  3252. Fix dependency tracing of INSTALL and PACKAGE (#11598)
  3253. Remove unused GLOBAL_TARGET generation code
  3254. KWSys: Use EXPORT name only if installing library
  3255. Write full version into try_compile CMakeLists
  3256. KWSys: Do not mangle UNC paths in ConvertToUnixOutputPath (#10206)
  3257. Normalize add_custom_command OUTPUT names (#10485)
  3258. Make link rule depend on ".def" file (#11014)
  3259. Document target_link_libraries target scope (#11058)
  3260. Record backtrace in cmCustomCommand
  3261. Factor generator expression docs out of add_test
  3262. Factor per-config sample targets out of 'Testing' test
  3263. Optionally suppress errors in cmGeneratorExpression
  3264. Record set of targets used in cmGeneratorExpression
  3265. Introduce "generator expression" syntax to custom commands (#11209)
  3266. CTest: Fix test DEPEND cycle detection
  3267. Make Intel defines consistent with MSVC on Windows (#9904)
  3268. CTest: Fix line-too-long style in DEPEND cycle error
  3269. Detect Fortran target architecture on Windows
  3270. Modernize Intel compiler info on Windows
  3271. Remove unused old-style g++ info file
  3272. CheckCCompilerFlag: Strict signature of 'main' (#11615)
  3273. Warn in find(GLOB) docs about bad use case (#11617)
  3274. Remove call to SystemTools::GetMaximumFilePathLength
  3275. Xcode: Generate native 3.2 projects
  3276. Declare min CMake version in --system-information project
  3277. Cygwin: Fix tests to check CYGWIN instead of WIN32
  3278. Cygwin: Do not define 'WIN32' (#10122)
  3279. Revert "Remove unused parameter "root" in some VS generator methods"
  3280. Revert "Avoid msbuild idiosyncrasy that builds multiple configs" (#11633)
  3281. Avoid msbuild ".\" idiosyncrasy that builds multiple configs (#11594)
  3282. Mark CustomCommand test perconfig.out as SYMBOLIC
  3283. CTest: Factor out duplicate Git author/committer code
  3284. KWSys: Avoid buffer overflow in SystemInformation (#11018)
  3285. Fix sentence break in add_test documentation
  3286. Pass Mac linker flag through all compilers with -Wl,
  3287. KWSys: Avoid passing string literal as char*
  3288. Avoid passing string literal to char* type
  3289. Fix constness in compiler id detection
  3290. Build enable_language command during bootstrap
  3291. Map multiple /FI flags for VS < 10 (#11649)
  3292. KWSys: Remove useless include <sys/procfs.h> (#11648)
  3293. Allow users to specify defaults for unset policies
  3294. ccmake: Use LSB 4.0 curses API conditionally
  3295. CTest: Do not truncate UTF-8 test output too early (#10656)
  3296. ccmake: Use LSB 4.0 getmaxyx conditionally
  3297. Allow platform files to set large archive rules (#11674)
  3298. Document reading LOCATION early as undefined (#11671)
  3299. Document reading LOCATION_<CONFIG> early as undefined (#11671)
  3300. Brian Bassett (1):
  3301. VS: Fix linking of Fortran-only DLL projects (#10803)
  3302. Campbell Barton (1):
  3303. Honor RULE_MESSAGES property for build target messages
  3304. Chuck Atkins (1):
  3305. CTest: Teach launcher to ignore empty/no-op make commands
  3306. Clinton Stimpson (11):
  3307. Fix regex for moc includes when looking for frameworks.
  3308. cmake-gui: use BundleUtilities in place of custom script.
  3309. Fix regression in 2dae2f1 which added find of Qt imports dir.
  3310. Force cmake to run again when qrc dependency scanning needs to happen.
  3311. Fix regression to allow specifying a CMakeCache.txt file on the command line.
  3312. BundleUtilities: only do rpath strip on copied prerequisites.
  3313. Fix build issues cross compiling with static Qt.
  3314. CTest: multiple ctest_test calls w/LABEL regexs (#11487)
  3315. cmake-gui: always enable generate button.
  3316. allow absolute paths for dbus interface.
  3317. Add support for using static/dynamic Qt plugins.
  3318. Craig Scott (1):
  3319. ccmake: Port for LSB 4.0 (#11648)
  3320. Dave Abrahams (1):
  3321. FindPerlLibs: Fix for Mac locally applied patches
  3322. David Cole (31):
  3323. Add a contract test for building the CSE.
  3324. Enable overriding contract test timeout values.
  3325. Update tag in the Contracts/cse-snapshot test.
  3326. Make HTML test fail when --nonet arg is not available.
  3327. Begin post-2.8.3 development
  3328. No CMake.HTML test if xmllint has no --nonet.
  3329. Suppress "loop was vectorized" "warnings."
  3330. Add contract test for Trilinos 10.6.1 snapshot.
  3331. Honor FOLDER on include_external_msproject targets (#11436)
  3332. Correct misspelling in error message text.
  3333. BundleUtilities: error if fixup_bundle_item called on non-embedded item
  3334. VS10: stop build on custom command error (#11533)
  3335. CPack: look for makensis in the PATH (#8210)
  3336. VS10: avoid warning, no nologo when verbose (#10587)
  3337. Use m prefix in shorttag value to indicate "md5 of tarball"
  3338. Establish pass criteria for the Trilinos contract test.
  3339. Suppress erroneous warnings from Intel compiler
  3340. Avoid running CMake.Install test simultaneously with other tests
  3341. VS10: Finish Midl support (#11461)
  3342. Prohibit space in HOME value for VSMidl test.
  3343. KWSys: Fix CPU speed calculations (#9963)
  3344. KWSys: Retrieve QNX specific memory and processor info (#11329)
  3345. Improve build error detection.
  3346. VSMidl Test: Use correct include_directories with VS6 (#11461)
  3347. Add PATH_SUFFIXES for finding git.
  3348. ExternalProject: Avoid bleed-through output when logging.
  3349. Fix WOW64 registry mode on Windows 2000 (#10759)
  3350. ExternalProject: Replace location tags in CMAKE_CACHE_ARGS
  3351. CPack: Detect more URLs in CPACK_NSIS_MENU_LINKS (#10644)
  3352. KWSys: Fix WOW64 registry mode on Windows 2000 (#10759)
  3353. CPack: Add CPACK_NSIS_INSTALL_ROOT variable (#9148)
  3354. Eric NOULARD (13):
  3355. CPackRPM add basic component support to CPackRPM
  3356. CPack fix kwstyle breakage and make CPackRPM backward compatible
  3357. CPack backward compatibility fix 2.8.3-2.8.2 (bug 11452)
  3358. CPack Fix KWStyle error
  3359. CPack Honor CPACK_MONOLITHIC_INSTALL at CPack time too
  3360. CPack use IsOn when it's better than IsSet
  3361. CPackRPM fix bug 0011595 : Can't generate RPMs (on FC11...)
  3362. CPack new tests for component install
  3363. CPack Default component test for ZIP should be OK
  3364. CPackTest spit out more output in case of failure
  3365. Arrange output in a better way
  3366. Precise the project config type when invoking cpack
  3367. CPackSTGZ quote here-doc, fix bug10518
  3368. Kai Wasserbäch (1):
  3369. FindTCL: Fix TCL and TK version variable references (#11528)
  3370. Marcus D. Hanwell (5):
  3371. BUG 11451 - pass CMAKE_EXTRA_GENERATOR down.
  3372. Added CMAKE_CACHE_ARGS to ExternalProject.
  3373. Escape file write expansion, and build up lists.
  3374. Fixed bug where last entry would be lost.
  3375. Python additional version support, bug #10279.
  3376. Matthias Kretz (1):
  3377. Inline help in vim with vertical split.
  3378. Mike McQuaid (6):
  3379. Fix incorrect variable documentation (#11127)
  3380. Add variable for InstallRequiredSystemLibraries dir (#11140)
  3381. InstallRequiredSystemLibraries debug-only (#11141)
  3382. Allow NSIS package or uninstall icon (#11143)
  3383. Add CPACK_NSIS_EXECUTABLES_DIRECTORY (#7828)
  3384. Add CPack NSIS MUI_FINISHPAGE_RUN support (#11144)
  3385. Philip Lowman (8):
  3386. 11363: FindBoost.cmake fails to find debug libraries in tagged layout install
  3387. 11429: FindGTK2 does not find libraries built for Visual Studio 2010
  3388. 11430: FindBullet doesn't find header files installed by Bullet >= 2.77
  3389. 11384: FindCxxTest now includes test code in VS project
  3390. [patch] Add Boost 1.45 to search, simplify a check removing VERSION_LESS
  3391. Add Boost 1.46
  3392. Fix spelling BOOST_LIBRARYDIR message. Add error for common misspellings.
  3393. Lowercase all function names and improve consistency
  3394. Rolf Eike Beer (2):
  3395. allow STRING(SUBSTRING) work with length -1 as "rest of the string"
  3396. Add the WORKING_DIRECTORY property to tests
  3397. Wojciech Migda (1):
  3398. Recognize the Texas Instruments DSP compiler (#11645)
  3399. Yaakov Selkowitz (2):
  3400. Cygwin: Use 'cyg' prefix for module DLLs (#10122)
  3401. Cygwin: Fix release script libncurses search patterns (#10766)
  3402. Zach Mullen (4):
  3403. Remove debugging message from parallel ctest
  3404. CTest git update should pass the committer as well as the author
  3405. Support explicitly set test costs in non-parallel testing.
  3406. Test TIMEOUT property explicitly set to zero should be honored
  3407. No changes in CMake 2.8.3 since 2.8.3-rc4.
  3408. Changes in CMake 2.8.3-rc4 (since 2.8.3-rc3)
  3409. --------------------------------------------
  3410. Bill Hoffman (1):
  3411. When processing DartMeasurements use the tests working directory.
  3412. David Cole (2):
  3413. ExternalProject: No svn --username if empty (#11173)
  3414. Avoid problem reading jni.h on Macs.
  3415. David Partyka (5):
  3416. Fixed appending PATH to dumpbin tool from growing without bounds.
  3417. Switch to CMAKE_PATH when doing PATH comparisons on Windows.
  3418. Remove unecessary TO_CMAKE_PATH for gp_cmd_dir.
  3419. Append the gp_tool path to the system PATH using native slashes.
  3420. Fixes to GetPrerequisites for cygwin
  3421. Eric NOULARD (1):
  3422. CPackDeb Added several optional debian binary package fields
  3423. Marcus D. Hanwell (2):
  3424. ENH: Added case for Python 2.7.
  3425. Fixed parallel build for generators with EXTRA.
  3426. Changes in CMake 2.8.3-rc3 (since 2.8.3-rc2)
  3427. --------------------------------------------
  3428. Alex Neundorf (4):
  3429. Remove trailing whitespace
  3430. Add automatic variable CMAKE_CURRENT_LIST_DIR(dir of CMAKE_CURRENT_LIST_FILE)
  3431. Use absolute path to FindPackageHandleStandardArgs.cmake everywhere
  3432. CodeBlocks Generator: Do not omit files in the project file listing.
  3433. Brad King (4):
  3434. VS10: Order .vcxproj dependencies deterministically (#10502)
  3435. Document ENABLE_EXPORTS behavior on Mac (#11295)
  3436. FindHDF5: Fix typo in parallel-IO support check (#11291)
  3437. Xcode: Recognize .hh as C++ (#11307)
  3438. Clinton Stimpson (1):
  3439. Find imports dir in Qt 4.7
  3440. David Partyka (1):
  3441. Update module to locate newely released MS MPI HPC Pack R2.
  3442. Philip Lowman (1):
  3443. Remove superfluous variable Boost_COMPAT_STATIC_RUNTIME.
  3444. Rolf Eike Beer (2):
  3445. FindSubversion: Fix for German localized client (#11273)
  3446. FindSubversion: Use C locale to detect version (#11273)
  3447. Changes in CMake 2.8.3-rc2 (since 2.8.3-rc1)
  3448. --------------------------------------------
  3449. Alex Neundorf (5):
  3450. APPEND and not-APPEND mode of feature_summary() were swapped
  3451. Set a default DESCRIPTION if none is given for ALL mode of feature_summary()
  3452. Close ENDFUNCTION() properly with the same name as FUNCTION()
  3453. Make cmake-gui remember whether the "Advanced" checkbox was checked or not
  3454. Also store the required version number in the details message.
  3455. Ben Boeckel (3):
  3456. Add test that CMake errors with empty libs
  3457. Fix which string is checked for in the test
  3458. XCode generation should fail if lang isn't known
  3459. Bill Hoffman (5):
  3460. Fix the name of the variable being tested.
  3461. Fix KWStyle line length issues.
  3462. Add a delay after untar on windows to make external project work on windows 7
  3463. Add a new line to the end of the generated main.cxx for the hpux compiler.
  3464. Fix for bug #11274, VS10 custom commands that create files in INTDIR fix.
  3465. Brad King (12):
  3466. Evaluate <OBJECT_DIR> rule variable for executables
  3467. ccmake: Fix search with '/'
  3468. MinGW: Support long object file lists
  3469. Document IMPORTED_NO_SONAME target property
  3470. FindMPI: Recoginze -f flags from mpicc (#10771)
  3471. Add module-dir flag for Compaq Visual Fortran (#11248)
  3472. FindPythonInterp: Look for python2.7 interpreter
  3473. VS10: Use $(IntDir) for per-source output directory (#11270)
  3474. Reset platform/compiler info status for each language
  3475. Remove trailing whitespace from Xcode generator source
  3476. VS10: Skip targets with no linker language (#11230)
  3477. VS10: Encode custom command comments for echo (#11283)
  3478. Clinton Stimpson (1):
  3479. Fix regression in cross-compile patches with finding Qt libs.
  3480. David Cole (7):
  3481. Enable calling commands with : in argv[1] (#9963)
  3482. No extra spaces in CustomCommand test (#9963)
  3483. Avoid CustomCommand test failure on VS71 (#9963)
  3484. Update release scripts.
  3485. Avoid CustomCommand test failure on VS71 (#9963)
  3486. Honor MAKECOMMAND value saved in cache (#11026)
  3487. New USE_FOLDERS property OFF by default. (#3796)
  3488. David Gobbi (1):
  3489. Set the module prefix, updated Windows suffix.
  3490. Eric NOULARD (2):
  3491. InstallGen/CPack fix handling absolute installed file regression
  3492. CPackRPM Handle parenthesis in CPACK_SYSTEM_NAME (fix bug 10737)
  3493. James Bigler (2):
  3494. Fix for bug 0011263.
  3495. Allow -g3 for CUDA v3.0+.
  3496. Mikkel Krautz (2):
  3497. Xcode: Avoid trailing space in ARCHS list (#11244)
  3498. Xcode: Quote string values containing '$' (#11244)
  3499. Philip Lowman (12):
  3500. FindBoost.cmake fixes for issues 11204 & 8529
  3501. FindBoost.cmake: Miscellaneous changes and refactoring
  3502. FindBoost.cmake: Add Boost_NO_SYSTEM_PATHS option
  3503. FindBoost.cmake: Fix compiling against a boost source tree
  3504. FindBoost.cmake: Fixes 11246
  3505. FindBoost.cmake: Fixes 11121
  3506. FindBoost.cmake: Fixes 10436
  3507. FindBoost.cmake: Implements 11160
  3508. Fix 11136: [patch] FindThreads.cmake documents the wrong variable
  3509. FindBoost.cmake: Fix library search path glitch introduced in earlier commit
  3510. FindFLEX.cmake: Fix issue 11249
  3511. Fixes issue 11279: CMakeDetermineVSServicePack support for VS10
  3512. Yaakov Selkowitz (2):
  3513. FindFLTK*: Use Cygwin fltk on Cygwin (#11290)
  3514. Use 'uname -m' for processor on Cygwin (#10774)
  3515. Changes in CMake 2.8.3-rc1 (since 2.8.2)
  3516. ----------------------------------------
  3517. Alex Neundorf (39):
  3518. fix build on SUSE 11.2 in cmcurl due to ssize_t
  3519. -add an additional name for finding libtiff on Windows
  3520. -fix typo in docs of deprecated MacroAddFileDependencies.cmake
  3521. add 2nd, more powerful mode to find_package_handle_standard_args()
  3522. -fix indentation of the documentation
  3523. Add version checking support to FindFlex and FindPerlLibs
  3524. FindSquish doesn't detect the version, remove that from the documentation
  3525. Improved version checking for FindRuby using the new mode of FPHSA()
  3526. Improved version checking for FindJava using the new FPHSA() mode
  3527. Fix DETAILS string with version number in FHPSA()
  3528. Improved version checking for FindSubversion using the new mode of FPHSA()
  3529. Improved version checking for FindCUDA using the new mode of FPHSA
  3530. Use FPHSA() in FindSWIG, including version checking.
  3531. Change documentation of Subversion_FOUND and SUBVERSION_FOUND.
  3532. Add macro CMakeParseArguments() and use it in FPHSA()
  3533. Fix ZLIB version parsing if no TWEAK version exists
  3534. Fix EclipseCDT include path parsing with spaces (#10868)
  3535. Fix EclipseCDT parsing of builtin macros with spaces (#10868)
  3536. Remove trailing spaces
  3537. Detect a COMPILER_ID also for ASM.
  3538. Add timeout to execute_process() in CMAKE_DETERMINE_COMPILER_ID().
  3539. Fix parsing of builtin macros so Eclipse handles them properly (#10868)
  3540. Log the required package version and major improvement to FeatureSummary
  3541. Improve documentation.
  3542. Improve wording of the documentation.
  3543. Add macro ADD_FEATURE_INFO() and improve docs.
  3544. Remove trailing whitespace
  3545. Make target_link_libraries() complain if bad target name is used
  3546. Just warn in case of a bad target as only argument for t_l_l()
  3547. Remove trailing whitespace
  3548. New CMP0016 for deciding whether an unknown target in TLL() is an error.
  3549. Record all considered Config files and their versions.
  3550. Improve error message in Config-mode when no appropriate version was found
  3551. Replace the two vector<string,string> with one vector<struct{string,string}>
  3552. Small cleanup of FindPackageHandleStandardArgs.cmake
  3553. Don't create an empty element at the end of Foo_CONSIDERED_CONFIGS/VERSIONS
  3554. Add option CONFIG_MODE to FPHSA()
  3555. Improve version notice in the generated message
  3556. Improve wording of the error message of find_package() in config-mode
  3557. Andrew Maclean (3):
  3558. Adding a FindPostgreSQL.cmake module
  3559. Forgot the copyright notice.
  3560. Changed ADDITIONAL_SEARCH_PATHS to PostgreSQL_ADDITIONAL_SEARCH_PATHS.
  3561. Arjen Verweij (1):
  3562. Pass objects to Intel linker using a response file
  3563. Bill Hoffman (9):
  3564. Disable gcc 33 on OpenBSD because it crashes CPack by default.
  3565. Fix for bug#10483, INCLUDE_EXTERNAL_MSPROJECT: ProjectGUID now ProjectGuid
  3566. Remove the ctest submit larget output test.
  3567. Let CMake recognize .CPP .CXX and .C++ as c++ files.
  3568. Fix for bug 10388, fix various default flags.
  3569. Only use .CPP .CXX and .C++ do not work by default with g+++.
  3570. Fix targets with . in the name for VS 10 IDE.
  3571. Only test for .CPP on Microsoft compilers which will handle .CPP as c++.
  3572. Allow testing of .CPP on WIN32 as it is a case insensitive OS and should work.
  3573. Brad King (69):
  3574. ExternalProject: Add LOG_* options to hide step output
  3575. FindMPI: Do not parse -l in middle of library name
  3576. FindMPI: Parse mpicc flags more carefully (#9093)
  3577. Fix or cast integer conversions in cmake
  3578. Begin post-2.8.2 development
  3579. FindMPI: Failure is not an error if not REQUIRED
  3580. FindMPI: Trust mpicc -showme on BlueGene/L
  3581. VS: Always separate preprocessor defs by semicolon (#10902)
  3582. KWSys: Cleanup putenv leak option implementation
  3583. KWSys: Pass ptrdiff_t check result to System.c
  3584. Fix or cast more integer conversions in cmake
  3585. Use same type in both cases of '?:' operator
  3586. FindMPI: Fix parsing of mpicc -Wl,-L link flags (#9093)
  3587. Fix signed/unsigned comparison warnings in ccmake
  3588. Fix integer conversions in cpack
  3589. bootstrap: Detect known C/C++ compiler toolchains
  3590. KWSys: Use short fallback timeout for Process tests
  3591. KWSys: Optionally suppress consistent test failures
  3592. KWSys: Avoid Clang optimizer bug in testProcess-[45]
  3593. Poison GCC 3.3 on OpenBSD a bit later
  3594. KWSys: Avoid undefined behavior in Process crash tests
  3595. Optionally use system bzip2 library (#10932)
  3596. ctest_update: Abort if Git FETCH_HEAD has no candidates
  3597. ctest_update: Support ".git file" work trees
  3598. ctest_update: Run 'git submodule' at top level
  3599. FindBoost: Search for Boost 1.42
  3600. Add FindLibArchive module (#10923)
  3601. Add option CMAKE_USE_SYSTEM_LIBARCHIVE (#10923)
  3602. Refer to self with CMake_(SOURCE|BINARY)_DIR (#10046)
  3603. ExternalProject: Fix $(MAKE) with cygpath on Windows
  3604. FindBoost: Search for Boost 1.43 and 1.44
  3605. Include headers from chosen libarchive (#10923)
  3606. No response files with GNU ld <= 2.16 (#10913)
  3607. Create class cmArchiveWrite to wrap libarchive (#11020)
  3608. Include entries for directories in tarballs (#11020)
  3609. cmArchiveWrite: Fix signed/unsigned compare/convert
  3610. cmArchiveWrite: Fix signed/unsigned again
  3611. CPack: Avoid member shadowing after API refactor
  3612. KWSys: Fix SplitPath for leading '\' on Windows
  3613. KWSys: Fix GetActualCaseForPath for UNC paths
  3614. ModuleNoticesTest: Do not require "Kitware" copyright
  3615. Modules: Fix CMakeParseArguments copyright notice
  3616. FortranCInterface: Fix doc typo FC.h -> FCMangle.h
  3617. CTest: Avoid use of old EscapeSpaces method
  3618. Remove cmSystemTools::EscapeSpaces method
  3619. Clarify install(TARGETS) docs for EXPORT option
  3620. Factor out global generator ComputeTargetDepends method
  3621. Factor out duplicate VS target dependency code
  3622. Refactor VS <= 7.1 utility-depends workaround
  3623. Restore GetTargetDirectDepends const return
  3624. Split notion of node lists and edge lists
  3625. Distinguish "strong" and "weak" target dependency edges
  3626. Honor strong intra-component target dependencies
  3627. libarchive: Remove SCHILY dev,ino,nlink attributes (#11176)
  3628. Fix unused parameter warning in VS 7.1 generator
  3629. KWSys: Avoid empty string dereference in SplitString
  3630. KWSys: Improve SplitPath method documentation
  3631. KWSys: Use SplitPath in GetActualCaseForPath
  3632. Add whitespace=tab-in-indent attribute for sources
  3633. Search MacPorts /opt/local prefix on Mac
  3634. HP-UX: Always add /usr/lib to rpath (#10571)
  3635. No CMAKE_CONFIGURATION_TYPES in single-config generators (#10202)
  3636. KWSys: Suppress -Wcast-align warning in MD5.c
  3637. Suppress -Wcast-align in curl and bzip2
  3638. libarchive: Fix purposeful crash
  3639. bootstrap: Honor CFLAGS during "make" test (#10545)
  3640. file(DOWNLOAD): Fix error message formatting
  3641. Fix line-too-long style errors
  3642. Report missing source files with context of target
  3643. Clinton Stimpson (10):
  3644. Fix performance issue with getting version from zlib.h
  3645. Fix bug 10418 - GetPrerequisites returning "not" as a dependency.
  3646. Fix regression in 5e6634fd77969433a87c150a2fb3f2079131484f for Windows.
  3647. Change Qt4ConfigDependentSettings to use more standard find modules.
  3648. Add cross-compiling support to FindQt4.cmake
  3649. Tweak for cygwin, don't convert : to ;
  3650. Fix some issues with refinding when qmake executable is changed.
  3651. Find correct Qt plugins for cross-compiling.
  3652. Fix mingw/VS warning message with cross compile re-org.
  3653. Make sure moc parameters file goes in binary directory.
  3654. David Cole (20):
  3655. CheckSourceTree test: read UpdateCommand from Update.xml.
  3656. Eliminate -Wconversion warnings.
  3657. Detect CMake warnings and errors in build output.
  3658. Activate retry code on any curl submit failure.
  3659. Add another expected output for the failed submit tests.
  3660. ExternalProject: Use $(MAKE) whenever possible.
  3661. Copy Resources in Frameworks during fixup_bundle (#10020)
  3662. Update path to git. dashmacmini2 was "upgraded."
  3663. ExternalProject: Remove 'unknown keyword' warning (#11034)
  3664. Add documentation for CPACK_PROJECT_CONFIG_FILE.
  3665. Add STEP_TARGETS to ExternalProject module.
  3666. Refine formatting for cmake --help-module output.
  3667. Improve documentation of OPTION command.
  3668. Add FOLDER target property, for IDEs (#3796)
  3669. Avoid adding self as prerequisite. (#10417)
  3670. Correct CMAKE_INSTALL_PREFIX value for Win64 apps (#9992)
  3671. Preserve timestamps on files on tar extract.
  3672. Use QUIET to avoid Java status messages.
  3673. VS2010: Honor PROJECT_LABEL target property (#10611)
  3674. VS2010: Set IntDir for utility and global targets.
  3675. David Genest (1):
  3676. Honor CMAKE_USER_MAKE_RULES_OVERRIDE in try_compile (#10902)
  3677. Eric NOULARD (20):
  3678. CPackRPM:: Replace - with _ in RPM Version (fix bug 0010934)
  3679. Provides default changelog if no file is provided
  3680. CPackRPM:: Quote every filenames in %file section (see bugs 10701,10871,10345)
  3681. CPackRPM:: [partially] support relocatable package
  3682. CPackDEB: merge wrong installed size patch. see bugs 10296 (and 10292)
  3683. CPackDeb optionally generates auto-dependency list part fix of bug 10292
  3684. Proposal for bash-completion support file
  3685. CPack: Refactor API in order to handle multi-file packages
  3686. CPack: Avoid member shadowing after API refactor (part2)
  3687. Improve cmake-completion (install doc, ctest -R completion)
  3688. Add ZIP archive format and LZMA compress support to libarchive-wrapper
  3689. Add XZ compress support to libarchive-wrapper
  3690. Add Compress compress support to libarchive-wrapper
  3691. CPack Backward-compatibly enforce DESTDIR for DEB and RPM
  3692. CPack Enable better handling of absolute installed files
  3693. CPackArchiveGenerator use cmArchiveWrite wrapper
  3694. CPackArchiveGenerator add component supports
  3695. CPackArchiveGenerator improve usability and robustness
  3696. CPack fix broken compilation for CygwinSource generator
  3697. CPack handle symlinks in CPACK_INSTALLED_DIRECTORIES fix for bug5430
  3698. James Bigler (1):
  3699. Added CUDA 3.2 directory changes. Disable emulation mode for CUDA 3.1+.
  3700. Kai Wasserbäch (1):
  3701. Fix spelling errors reported by Lintian.
  3702. Kovarththanan Rajaratnam (4):
  3703. FindZLIB: optimize zlib.h version parsing
  3704. FindCygwin: add new registry entry for Cygwin 1.7 (#10951)
  3705. FindZLIB: use the FPHSA version mode
  3706. FindSubversion: set compatibility variables based on FPHSA()
  3707. Marcel Loose (1):
  3708. Issue 10199: Fixed code documentation and now set <prefix>_WC_ROOT
  3709. Marcus D. Hanwell (1):
  3710. Bug with default library type of Python modules.
  3711. Mathieu Malaterre (3):
  3712. Add missing PATHS to find_path commands to fix openssl searching
  3713. BUG: 0009611 Fix Arch independent FindJNI.cmake on Linux
  3714. Fix 11035 : debug/release library configuration mistake
  3715. Michael Wild (2):
  3716. Improve documentation of BundleUtilities.cmake
  3717. Improve documentation of GetPrerequisites.cmake
  3718. Miguel A. Figueroa-Villanueva (7):
  3719. ENH: #9775 Added support for new wxWidgets 2.9 libraries.
  3720. BUG: #9775 Fixed patch FindwxWidgets-fixed-bug-9775.
  3721. BUG #10658: FindwxWidgets USE_FILE should not include .cmake extension.
  3722. STYLE: Clarified/Fixed documentation of UsewxWidgets.
  3723. BUG #11123: Generic include dir should come after config specific one.
  3724. BUG #8184: Fixed FindwxWidgets wrong order of default libs for MinGW.
  3725. ENH #8993: FindwxWidgets add support for wx-config custom options.
  3726. Mike McQuaid (1):
  3727. Make bundle items writable before fixup (#9284)
  3728. Modestas Vainius (1):
  3729. CTestTestFailedSubmit-xmlrpc: Pass with "Submission problem"
  3730. Patrick Gansterer (4):
  3731. VS: Convert PlatformName member to a virtual method
  3732. VS: Add more TargetMachine option values
  3733. VS: Map /ENTRY linker option to EntryPointSymbol
  3734. VS: Add ArchitectureId to VS 8 and 9 generators
  3735. Philip Lowman (7):
  3736. Fixes problem finding libraries under Boost (#9510)
  3737. Add detection for new pangommconfig.h header file
  3738. Several fixes needed to improve Windows support
  3739. 11041: Improve FindCxxTest to use Python or Perl automatically; custom flags
  3740. 10241: FindBISON.cmake clears wrong variable
  3741. 10688: FindGTK2.cmake doesn't auto-detect macports
  3742. Merge patch for detecting gdk-pixbuf library
  3743. Pino Toscano (1):
  3744. GNU/Hurd platform support fixes (#9873)
  3745. Robert Goulet (1):
  3746. VS2010: Disable PDBs when there is no debug info
  3747. Rolf Eike Beer (2):
  3748. clean up some stuff in CPack RPM script
  3749. Set MSVC_VERSION for MSVC 6, 7, 7.1 (#7944)
  3750. Todd Gamblin (3):
  3751. Modules: Fix spelling 'To distributed' -> 'To distribute'
  3752. Teach find_* commands to ignore some paths
  3753. Add platform files for BlueGene/P systems
  3754. Zach Mullen (12):
  3755. Checksums on CTest submit files, and retry timed out submissions.
  3756. Cross-platform fixes for checksum/retry code
  3757. Fix subscript out of range crash
  3758. CTest should resubmit in the checksum failed case
  3759. Testing for CTest checksum
  3760. Mock checksum failure output for old CDash versions
  3761. Checksum test should use CMAKE_TESTS_CDASH_SERVER
  3762. Fix cycle detection for test dependencies
  3763. More robust cost-based scheduling impl
  3764. Fix hard-coded CDash URI in version query
  3765. Added CTest command --print-labels
  3766. We shouldn't ask CDash for its version info until/unless we actually need it.
  3767. No changes in CMake 2.8.2 since 2.8.2-rc4.
  3768. Changes in CMake 2.8.2-rc4 (since 2.8.2-rc3)
  3769. --------------------------------------------
  3770. Bill Hoffman (1):
  3771. Fix for bug #10859, ctest exit exception incorrectly reported.
  3772. Brad King (3):
  3773. Run CMake.HTML test without net access (#10857)
  3774. Run CMake.HTML test with older xmllint (#10857)
  3775. CTest: Parse empty Git commits correctly
  3776. David Cole (2):
  3777. Qualify name of extraction location with ExternalProject name.
  3778. For VS10: Really use full path file names.
  3779. James Bigler (1):
  3780. Add support for the emulation version of the cudart library.
  3781. Mathieu Malaterre (1):
  3782. Cleanup FindOpenSSL. Add support for win64 installation.
  3783. Zach Mullen (1):
  3784. Parallel CTest hangs if serial test has depends
  3785. Changes in CMake 2.8.2-rc3 (since 2.8.2-rc2)
  3786. --------------------------------------------
  3787. Brad King (1):
  3788. Preserve ENV{MAKEFLAGS} in CMake script mode
  3789. David Cole (4):
  3790. Remove "Microsoft Visual Studio .NET" from VS8 and VS9 find modules.
  3791. Use full path file names in generate.stamp.list.
  3792. Use full path file names to express dependencies.
  3793. Look in the ctest ini file for GitCommand.
  3794. James Bigler (2):
  3795. Fixed: CUDA_VERSION_MAJOR/MINOR now computed after first run.
  3796. CUDA_VERSION variable passed to REGEX needs quotes to work when not defined.
  3797. Mathieu Malaterre (1):
  3798. Cleanup FindDCMTK (using foreach). Fix linking on win32 static libs.
  3799. Zach Mullen (2):
  3800. Do not exit if stoptime is passed.
  3801. Document ctest_build() TARGET option
  3802. Changes in CMake 2.8.2-rc2 (since 2.8.2-rc1)
  3803. --------------------------------------------
  3804. Bill Hoffman (1):
  3805. Make sure libarchive uses cmzlib and not the system libz if found.
  3806. Brad King (12):
  3807. Use forward slashes for objects in response files
  3808. Use platform variable for response file flag
  3809. Use response file for objects on MinGW and MSYS
  3810. Generalize CTest.Update* test dashboard script helpers
  3811. ctest_update: Support custom Git update command
  3812. ctest_update: Support Git upstream branch rewrites
  3813. Fix CMake data and doc paths in Cygwin package
  3814. Document scope of source file properties
  3815. Run CTest.NoNewline test using built CMake
  3816. Tru64: Place cmOStringStream vtable uniquely (#10541)
  3817. Enable BootstrapTest on MSYS
  3818. Tru64: Use full-path include directives in Makefiles (#10569)
  3819. Christoph Watzl (1):
  3820. Fix nested source groups with VS 10 (#9863)
  3821. Clinton Stimpson (2):
  3822. Support pthreads on irix.
  3823. Remove macro for querying qmake for qmake variables.
  3824. David Cole (2):
  3825. Fix issue #10346. Error if SOURCE_DIR is empty.
  3826. Remove CTestTest3.
  3827. Zach Mullen (1):
  3828. Extra coverage glob should subtract the explicitly defined excluded files
  3829. Changes in CMake 2.8.2-rc1 (since 2.8.1):
  3830. - Build on Tru64 (#10542)
  3831. - Build on mingw-w64
  3832. - Build on old Sun (#10550, #10543)
  3833. - CPack: Add native BZip2 support
  3834. - CPack: Set compression type in RPM spec (#10363)
  3835. - CPack: Try harder to initialize staging directory (#10793)
  3836. - CTest: Add --stop-time argument
  3837. - CTest: Cost data with '-j'
  3838. - CTest: Fix memory report
  3839. - CTest: Glob for uncovered files during coverage tests
  3840. - CTest: Option to specify cdash server
  3841. - CTest: PHP Coverage support
  3842. - CTest: Process tree kill for OpenBSD, FreeBSD, kFreeBSD, GNU/Hurd
  3843. - CTest: Report failure in Update.xml
  3844. - CTest: Submit author email in Update.xml
  3845. - CTest: Teach ctest_update about Git submodules
  3846. - CTest: Teach ctest_update to handle Git upstream branch rewrites
  3847. - Cygwin: Export all symbols with ENABLE_EXPORTS (#10122)
  3848. - Do not list file names during 'cmake -E tar xz'
  3849. - Documentation: Comply with "XHTML 1.0 Strict"
  3850. - Documentation: Fix typo in CMAKE_LIBRARY_PATH (#10291)
  3851. - Documentation: Fix typo in HAS_CXX docs (#10578)
  3852. - Documentation: More consistent command signatures
  3853. - Eclipse: Do not add INCLUDE to environment twice
  3854. - Enable extra CodeBlocks generator on Cygwin
  3855. - ExternalProject: Support .zip and .bz2 archives, MD5 verification
  3856. - ExternalProject: Reconfigure when args change (#10258)
  3857. - ExternalProject: Support Git, SVN username/password
  3858. - FindCurses: Fix for cygwin ncurses package
  3859. - FindHSPELL: Version support
  3860. - FindJava: Error if version is not found only when REQUIRED
  3861. - FindJava: Support runtime and development components (#9840)
  3862. - FindKDE4: Prefer kdeconfig results over system paths
  3863. - FindMPEG: Check for 'vo' library
  3864. - FindPNG: Support png 1.4 versioned lib names (#10551)
  3865. - FindPkgConfig: Add QUIET keyword to pkgconfig macros (see #10469)
  3866. - FindZLIB: GnuWin32 support, version support (#5588)
  3867. - FindwxWidget: Fix CXX flag parsing (#10209)
  3868. - Fix .pdb name attribute in VS project files (#10614)
  3869. - Fix CodeBlocks to work with Fortran-only
  3870. - Fix VS 2010 custom commands (#10503)
  3871. - Fix VS 6 support for COMPILE_DEFINITIONS_MINSIZEREL (#10700)
  3872. - Fix cross-compiling from Linux to iPhone (#10526)
  3873. - Fix documentation typos
  3874. - Fix g95 Fortran compiler support
  3875. - Fix uname masking in file(WRITE) and write_file (#10789)
  3876. - GetPrerequisites: Provide an override hook
  3877. - Handle non-ASCII terminators in file(STRINGS)
  3878. - Module fixes: FindPythonLibs, FindQt4, FindX11, FindwxWidgets
  3879. - PathScale Fortran compiler tool detection
  3880. - Qt4 OpenGL framework fix
  3881. - Qt4ConfigDependentSettings.cmake Qt4Macros.cmake UseQt4.cmake
  3882. - Recognize ARM ABI/EABI with GNU compilers
  3883. - Recognize Clang compiler
  3884. - Search basic directories on "Generic" platform
  3885. - Set MSVC* variables consistently on all generators, and test
  3886. - Support SunPro C++ 5.11 on Linux (new compiler)
  3887. - Support VS 10 Express (related to #10670)
  3888. - Support compression with 'cmake -E tar'
  3889. - Support multiple arguments in CC,CXX,FC environment variables
  3890. - Support per-configuration librarian flags (#10768)
  3891. - Support per-platform initial ASM language flags (#10577)
  3892. - Use Fortran ABI detection results conservatively
  3893. - Use libarchive to replace the unmaintained libtar
  3894. - UseQt4: Support QtMultimedia (#10675)
  3895. - bootstrap: Fix make tool detection (#10544)
  3896. - cmake-gui: Add simple grouped view
  3897. - cmake-gui: Support build tree under symlink (#9975)
  3898. - Cleanup modules FindASPELL, FindAVIFile, FindBZip2, FindDart,
  3899. FindEXPAT, FindGCCXML, FindGLU, FindHSPELL, FindJasper, FindLibXml2,
  3900. FindLibXslt, FindMPEG, FindOpenAL, FindPhysFS, FindQuickTime,
  3901. FindSubversion, FindZLIB.
  3902. Changes in CMake 2.8.1
  3903. - Fix failing test on cygwin
  3904. - Add a new serach path for MPICH2
  3905. Changes in CMake 2.8.1 RC 5
  3906. - Fix FindQt4 to work with OpenGL on the mac
  3907. - Add .git .bzr and .hg to the list of default CPack ignore directories.
  3908. Changes in CMake 2.8.1 RC 4
  3909. - CTest: Do not hide test GUI windows (fixes 2.8.0 regression)
  3910. - Documentation: Clarify CMAKE_MODULE_PATH variable
  3911. - FindQt4: Add support for QtDeclartive module
  3912. - FortranCInterface: Fix PathScale detection
  3913. - Suppress GNU flag -fPIC on Windows (fixes 2.8.1-rc1 regression)
  3914. Changes in CMake 2.8.1 RC 3
  3915. - Add CMAKE_XCODE_ATTRIBUTE_<attr> interface to set compiler (#9125)
  3916. - Fix Eclipse files for targets in subdirectories (#9978)
  3917. - Fix custom command rule hashes to avoid extra rebuilds
  3918. - Print non-make generator name in initial compiler test
  3919. Changes in CMake 2.8.1 RC 2
  3920. - CPack: Avoid deleting long PATH values with NSIS (#10257)
  3921. - CTest: Fix and test cost-based test scheduler
  3922. - CTest: Fix and test git updates for case of out-dated index
  3923. - CTest: Fix regression caused by fix for (#2336) in rc1
  3924. - CTest: Setup command-line dashboard support with Git
  3925. - FindCUDA: Improve docs, use -rpath on Apple, fix dependency scanning
  3926. - Fix OS X deployment-target and sysroot defaults (#9959,#9898,#10155)
  3927. - Recognize the Compaq Fortran compiler
  3928. Changes in CMake 2.8.1 RC 1
  3929. - Add "NMake Makefiles JOM" generator
  3930. - Add PathScale compiler support
  3931. - Add per-configuration OUTPUT_DIRECTORY properties
  3932. - Add per-target OSX_ARCHITECTURES property
  3933. - check_type_size(): Handle mixed-size universal binaries
  3934. - CPack: Document Mac generators
  3935. - CPack: Improve RPM spec files
  3936. - Create CMAKE_FORCE_Fortran_COMPILER for cross-compiling
  3937. - CTest: Add --http1.0 command-line option
  3938. - CTest: Add --timeout command-line option
  3939. - CTest: Do not munge UTF-8 output in XML files
  3940. - CTest: Document CTEST_USE_LAUNCHERS option
  3941. - CTest: Fix killing of whole test process trees
  3942. - CTest: Handle failure of running invalid executables
  3943. - CTest: Honor the -C arg to ctest (#2336)
  3944. - CTest: Improve host system introspection
  3945. - CTest: Optionally randomize test order (--schedule-random)
  3946. - CTest: Skip tests with unsatisfied REQUIRED_FILES test property
  3947. - CTest: Submit arbitrary results with ATTACHED_FILES test property
  3948. - ctest_build(): Enhance signature
  3949. - ctest_start(): Add APPEND option
  3950. - ctest_start(): Move CTEST_CHECKOUT_COMMAND from ctest_update
  3951. - ctest_update(): Submit global tree revision in Update.xml
  3952. - Cygwin: Do not export all symbols from DLLs (#10122)
  3953. - Cygwin: Name DLLs with SOVERSION, not VERSION (#10122)
  3954. - Detect 32/64-bit Windows with Intel compiler
  3955. - Eclipse generator enhancements
  3956. - ExternalProject: Add TIMEOUT parameter
  3957. - FindCUDA: Respect CUDA version differences
  3958. - FindCURL: Find import libraries on Windows
  3959. - FindDCMTK: Look in more places
  3960. - FindGTest: Handle spaces better (#10065)
  3961. - FindGTK2: Look in fink locations on Mac OS X
  3962. - FindHDF5: Follow find-module API conventions
  3963. - FindJava: Support for versioned find
  3964. - FindJNI: Honor find_package() REQUIRED and QUIET options
  3965. - FindMPI: Improve Windows support
  3966. - FindOpenSSL: Fix MinGW support
  3967. - FindPythonLibs: Look in config for static library
  3968. - FindQt4: Misc enhancements, sync with KDE vesion
  3969. - FindRuby: Fix version convention on Windows
  3970. - FindX11: Improve documentation
  3971. - Fortran: Detect address size (#10119)
  3972. - FortranCInterface: Honor user flags
  3973. - Improve VS 2010 beta2 support
  3974. - link_directories(): Treat relative paths consistently (CMP0015)
  3975. - Modernize FindLibXslt and FindLibXml.cmake
  3976. - Refactor platform info to simplify adding new compilers
  3977. - Support cross-compiling versioned DLLs
  3978. - UseQt4: Provide dependencies only for static Qt (#10021)
  3979. - Address issues:
  3980. #2336, #3571, #5041, #7541, #8725, #9011, #9042, #9054, #9163,
  3981. #9171, #9450, #9697, #9764, #9782, #9792, #9862, #9894, #9913,
  3982. #9916, #9917, #9918, #9949, #9965, #9970, #9982, #9985, #10003,
  3983. #10014, #10021, #10032, #10055, #10060, #10065, #10114, #10119,
  3984. #10122, #10126, #10136.
  3985. Changes in CMake 2.8.0 Release
  3986. - CPack: Honor CPACK_NSIS_DISPLAY_NAME (fixes regression)
  3987. Changes in CMake 2.8.0 RC 7
  3988. - Partially sync FindQt4 with KDE version
  3989. - Improve implementation of fix for #9090
  3990. - Fix CTest infinite loop when test executable could not be found
  3991. - Fix #9833: Document ctest --help-command
  3992. - FindCUDA: Fix -fPIC from being used on executable object files
  3993. - Fix #9654: %files section in spec file should not list directories
  3994. - Fix #9851: Better STRING(RANDOM) seeding
  3995. - Fix double bootstrap build for in source builds
  3996. - Fix CTest to use allowed value for valgrind --num-callers
  3997. - Remove non-language implicit link dependencies
  3998. - Implement LINK_FLAGS_<CONFIG> property on Xcode
  3999. Changes in CMake 2.8.0 RC 6
  4000. - Partially sync FindQt4 with KDE version
  4001. - Fix #9090: Teach CTest subdirs() command to handle absolute paths
  4002. - Fix CTest bug that could start a test twice
  4003. Changes in CMake 2.8.0 RC 5
  4004. - CTest now detects cycles in test dependency graph
  4005. - Warn on set(PARENT_SCOPE) at top scope
  4006. - Fix Xcode <= 2.0 projects with CMAKE_BUILD_TYPE
  4007. - Fix flags for Intel Fortran on Windows
  4008. - Fix #2199: UseSWIG documentation for swig_generated_file_fullname
  4009. - Fix #7915: UseSWIG interaction with JNI
  4010. - Fix #8971: FindOpenSSL now works on windows
  4011. - Fix #9124: CPackDeb documentation
  4012. - Fix #9722: cmake-gui reports error when not able to create build directory
  4013. - Fix #9767: Match more valgrind-reported leaks in CTest memcheck
  4014. - Fix #9777: Sync CMakeDetermineJavaCompiler paths with FindJava
  4015. - Fix #9793: FindJNI should find matching jni.h and jni_md.h
  4016. - Fix #9817: FindJNI on Solaris
  4017. - Fix FindHDF5 when hdf5.h exists without H5pubconf.h
  4018. - Fix FindZLIB to follow variable name conventions
  4019. - Fix invalid use of auto_ptr on array
  4020. - Mention temp var convention in Modules/readme.txt documentation
  4021. Changes in CMake 2.8.0 RC 4
  4022. - Fix try_compile when file cannot be found
  4023. - Add new module to test manifest installation issues on windows.
  4024. - Add more test coverage
  4025. -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.
  4026. - Look for nvcc in the 32 bit bin directory before the 64 bin directory.
  4027. - BUG: hardcore some values so output matches cmVS10CLFlagTable.h (addresses bug #9753)
  4028. - Avoid Intel linker crash in BuildDepends test
  4029. - Fix Intel Fortran SHARED libraries on Linux
  4030. - Fix working dir issue for ctest
  4031. - Fix if() command and CMP0012 OLD/NEW behavior
  4032. - Allow for /D to change install directory on the command line for NSIS
  4033. - 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.
  4034. - Fix Intel and MinGW Fortran DLL import libraries
  4035. - Fix Xcode dylib version default
  4036. - Fix the showing of non-cpp files in the IDE for VS 10
  4037. - Fix optionally-valued booleans in VS 10 flag table
  4038. - Detect and set Unicode character set in VS 10
  4039. - Add support for the g95 Fortran compiler
  4040. - Test all target types in Fortran
  4041. - Add Xcode file association for Fortran
  4042. - Fix VS 10 flag table for precompiled headers
  4043. - Fix VS 10 .sln files for Windows Explorer
  4044. - Fix Microsoft.Cpp.$(Platform).user.props in VS10b2
  4045. - Fix up file(DOWNLOAD ) a bit, better error checking and uses of long not double for timeout as curl needs, bug# 9748
  4046. - Add a VS 10 Win64 generator
  4047. - Fix for bug#9686 convert java_home to a cmake path before using.
  4048. - fix for bug# 9751, add check for MSVC10
  4049. - Fix for bugs #9756, #9690 and #9755, header files were not included, and link_directories we incorrect
  4050. - Add a module to test an install tree to verify that the MS CRT version is correct.
  4051. - Fix seg fault for empty ENV{} call bug #9747
  4052. - Better fix for finding the MSBuild that matches the VS 10 install.
  4053. - make testing the CodeBlocks and Eclipse generators easier by not requiring the CMAKE_EDIT_COMMAND variable
  4054. - Do not link library dependencies in VS solutions
  4055. - Ctest was broken for subdirs. Restored working directory state for tests so that their executables could be found.
  4056. - Fixes version detection using osg/Version on Mac OSX when OSG is installed as a framework
  4057. - Avoid C++ linker language in VS Fortran project
  4058. - Avoid duplicate ZERO_CHECK in VS solutions
  4059. - Fixed bug 8319, search for the Python shared library in the standard locations.
  4060. - Fix bug#9714, should not crash when version file is not where it should be...
  4061. - Fix ctest output alignment for cases where total tests run is not the same width as max test index.
  4062. - make it more robust wrt. #9621
  4063. - Add another possible error message that curl might emit with an empty drop location.
  4064. - 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.
  4065. - CTest-side support for compiler name and compiler version information. Requires CDash update to show on CDash.
  4066. - Add a bunch more testing coverage.
  4067. Changes in CMake 2.8.0 RC 3
  4068. - CTest Added OS Platform (cpu architecture) detection support to windows system
  4069. - Several minor FindBoost changes to address posts on mailing list
  4070. - Resolve #9685: Fix include dir to be correct path for gnutils
  4071. - Fix color check for dependency scanning
  4072. - Remove CMP00015 for now as it breaks more things than it fixes
  4073. - 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.)
  4074. - Do not use -fPIC to link executables
  4075. - Split Borland compiler information files
  4076. - Trimmed off the newline from sw_vers output on mac, it could cause xml parsing errors if left in
  4077. - Check for openssl-linked option with Qt 4.4+ before making ssl a dependency.
  4078. - Make Complex test of CMakeLib more optional
  4079. - Modernize FindVTK module
  4080. - Fix find_package() when <pkg>_DIR is wrong
  4081. - Do not collapse path of NOTFOUND values
  4082. - More robust implicit link line detection regex
  4083. - fix Xcode 30 generator
  4084. - Use the correct CMake (the freshly built one) to drive the CMakeWizardTest.
  4085. - Support more special characters in file(STRINGS)
  4086. - Log implicit link line detection regex
  4087. - speedup C dependency scanning even more
  4088. - Avoid non-root copies of root-only targets
  4089. - Added better OS information for Mac OS X
  4090. - Use work-around from bug 4772 for C++ and Fortran
  4091. - FortranCInterface: Mangling for Intel on Windows
  4092. - cmake-gui don't allow consecutive generates without a configure.
  4093. - Fix Preprocess test for Intel on Windows
  4094. - Teach intel compiler on windows to place .lib files and .pdb files.
  4095. - CPack: Fix bash-isms in launch script
  4096. - BUG: #0009648 Change "The following tests FAILED" message to print on stdout rather than stderr
  4097. - Avoid (Unix|Windows)Paths.cmake multiple include
  4098. - When getting include dirs for moc, also watch for framework includes and use -F instead of -I.
  4099. - Find locally installed software first
  4100. - Add '#!/bin/sh' to cygwin-package.sh
  4101. - Fix permsissions of installed SquishRunTestCase.sh
  4102. - Fix module docs to be manpage (groff) friendly
  4103. - Support GNU/kFreeBSD
  4104. - Remove old Encoding field from CMake.desktop
  4105. - FindQt3: Prefer (moc|uic)-qt3 names over (moc|uic)
  4106. - Match width of ctest "Start xx: " line to line up with the end test line
  4107. - Remove old license from FindPkgConfig.cmake module
  4108. - Test target link information invalidation
  4109. - Invalidate target link info when necessary
  4110. - Use new style header generation and get rid of OBJECT_DEPENDS in tutorial
  4111. - 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.
  4112. - add the additional features for the dbus macros from KDE's FindQt4.cmake
  4113. fc9f7a5 Fix warnings in CMake source code.
  4114. - 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.
  4115. - Create INTERPROCEDURAL_OPTIMIZATION build feature
  4116. - Document CMAKE_CURRENT_LIST_FILE more precisely
  4117. - Fix the documentation to say what it really does. Bug #9638
  4118. - document how the minimum version can be specified
  4119. - Fix warnings in CMake source code. Suppress rampant warnings emanating from Qt files.
  4120. - Add documentation for Cocoa flag and move Motif under X11 flag.
  4121. Changes in CMake 2.8.0 RC 2
  4122. - Fix FindQt4 so that QtHelp depends on QtNetwork
  4123. - Add missing copyright notice to CMake.cmake module
  4124. - Add alternative _UTILITY targets to all VS solutions
  4125. - FindGTest.cmake some bugfixes, also added public function for closer integration btwn GoogleTest & CTest, contributed by Dan Blezek.
  4126. - 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.
  4127. - Fix for bug #9611, some more paths for OpenJDK.
  4128. - Fix get_filename_component() registry view with wow64
  4129. - Fix warnings in CMake source code.
  4130. - Fix module definition file reference for VS6 NMake
  4131. - Fix for bug #9611 do not hard code archs for search paths of java, look at the machine type.
  4132. - Fix bug#9619 add a link to module maintainers page in readme.txt for Modules
  4133. - Add cmake-help-command function to emacs-mode
  4134. - Add initial XL C compiler flags for safer builds
  4135. - Split XL compiler information files
  4136. - Fix default install prefix on Haiku
  4137. - Fix use of module .def files for MS tools
  4138. - Add StringProperty options includeing /def: for VS 10 flag table
  4139. - Convert copyright to OSI BSD and clean up licenses
  4140. - ENH: Added ctest test coverage for a test timeout
  4141. - CTest honors test timeouts again.
  4142. - Remove ctest_submit from CTestTestParallel
  4143. - Fix shared library creation flag for XL on Linux
  4144. - Fix BUG: 0009612: --output-on-failure option doesn't work with
  4145. the new parallel CTest handler
  4146. - Removed support for cutil library and header file.
  4147. - Fixed CUDA_PROPAGATE_HOST_FLAGS, added path for Mac SDK.
  4148. - Make sure LINK_FLAGS are seen by generator, fix for part of bug#9613
  4149. - Fix issue #9412 - remove RPATH from files copied by
  4150. BundleUtilities.cmake on Linux. Thank
  4151. - Fix support for OLD behavior of policy CMP0002
  4152. - Fix issue #8818 - escape quotes in the license file when using the
  4153. DragNDrop cpack genera
  4154. - Fix .vfproj file version for Intel Fortran 10.1
  4155. - Use BeAPI for per-user package registry on Haiku
  4156. - Correct comments and use ASM${ASM_DIALECT} env. var instead of ASM
  4157. env. var to initialize
  4158. - Fix bug #9529.
  4159. - Fix Windows GUI implib and image version in VS 6
  4160. - Convert newlines from CRLF to LF
  4161. - Oops. Last commit did not create subdir before doing a touch on a
  4162. file in it. So it fails of a type that is expected to have a
  4163. location...
  4164. - Policies 14 and 15 will be first released in 2.8.0
  4165. - Document full version number with policy default
  4166. - Simplify bootstrap script source dir detection
  4167. - Documentation fixes, new CUDA_PROPAGATE_HOST_FLAGS, changed output
  4168. directory.
  4169. Changes in CMake 2.8.0 RC 1
  4170. - Qt based GUI cmake-gui is now the default GUI, MFC CMakeSetup is no
  4171. longer included in CMake. ccmake is still supported.
  4172. - cmake-gui supports multi-state values options.
  4173. - CMake now has cmake --build command that can build any CMake generated
  4174. project from the command line.
  4175. - Visual Studio 2010 beta support has been added.
  4176. - KDevelop generator now has color output for builds.
  4177. - CTest supports running tests in parallel with a -j N option.
  4178. - A new CTest CTEST_USE_LAUNCHERS option can be used to get better
  4179. dashboard error reports with make based tools.
  4180. - CTest has support for sub-projects and labels which can interact
  4181. with CDash.
  4182. - CTest now supports Git, Mercurial, and Bazaar.
  4183. - It is now possible to use DESTDIR in CPack for any CMake based projects
  4184. giving more flexibility on the final path names.
  4185. - The CPack Deb generator now computes the arch instead of hard coding it.
  4186. - Fortran/C mixed language projects made much easier. CMake now
  4187. automatically can compute the run time libraries for a compiler. In
  4188. addition, a new FortranCInterface module can determine the correct
  4189. name mangling needed to mix C and Fortran.
  4190. - Intel compiler support added to OSX, and support for embedded
  4191. manifests in the windows intel compiler was added.
  4192. - Depend scanning is now much faster with makefiles.
  4193. - Many FindQt4 improvements to stay working with current Qt releases
  4194. - FindMPI has improvements for windows.
  4195. - FindBoost has been updated to work with the most recent boost releases.
  4196. - New External Project Module. The 'ExternalProject_Add' function
  4197. creates a custom target to drive download, update/patch, configure,
  4198. build, install and test steps of an external project.
  4199. - xmlrpc dependancy has been removed
  4200. - CMAKE_OSX_DEPLOYMENT_TARGET cache variable has been created to set the
  4201. deployment OS for a build on OSX.
  4202. - Several new policies were added:
  4203. CMP0012
  4204. The if() command can recognize named boolean constants.
  4205. CMP0013
  4206. Duplicate binary directories are not allowed.
  4207. CMP0014
  4208. Input directories must have CMakeLists.txt.
  4209. CMP0015
  4210. The set() CACHE mode and option() command make the cache value
  4211. visible.
  4212. - Lots of bug fixes.