ChangeLog.txt 174 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773
  1. -+- -+- -+- -+- -+- -+- -+- -+- -+- -+- -+- -+- -+- -+- -+- -+- -+- -+-
  2. NOTE: This file was automatically generated by `cvs2cl.pl'. If you
  3. edit this file, your changes will be lost when someone next runs
  4. cvs2cl.pl. See http://www.red-bean.com/~kfogel/cvs2cl.shtml for more.
  5. -+- -+- -+- -+- -+- -+- -+- -+- -+- -+- -+- -+- -+- -+- -+- -+- -+- -+-
  6. 2001-10-01 15:55 hoffman
  7. * Source/cmaketest.cxx: BUG: add missing include
  8. 2001-10-01 14:14 hoffman
  9. * Source/cmaketest.cxx, Source/MFCDialog/CMakeSetupDialog.cpp: ENH:
  10. change checkboxes back to pull down menus, remove leak
  11. 2001-09-29 15:12 hoffman
  12. * Source/cmSystemTools.cxx: BUG: fix full path for file in current
  13. directory
  14. 2001-09-28 17:35 berk
  15. * Source/cmSystemTools.cxx: BUG: fix realpath problem again...
  16. 2001-09-28 16:14 berk
  17. * Source/cmSystemTools.cxx: BUG: separate path from file name
  18. before calling realpath
  19. 2001-09-28 14:40 hoffman
  20. * Source/cmSystemTools.cxx, Source/cmUnixMakefileGenerator.cxx:
  21. BUG: get correct library name
  22. 2001-09-28 14:34 hoffman
  23. * CMakeLists.txt: BUG: optional in wrong order
  24. 2001-09-28 13:57 hoffman
  25. * CMakeLists.txt: make the include of the initial config flags
  26. optional, for builds that do not use configure
  27. 2001-09-27 20:50 hoffman
  28. * Source/cmSystemTools.cxx, Source/cmUnixMakefileGenerator.cxx:
  29. BUG: use realpath instead of cd/pwd
  30. 2001-09-27 19:54 hoffman
  31. * CMakeLists.txt, Source/CMakeLists.txt: BUG: fix install prefix
  32. 2001-09-27 18:58 hoffman
  33. * configure, configure.in, Source/CMakeLists.txt,
  34. Source/InitialConfigureFlags.cmake.in: ENH: pass prefix from
  35. configure into cmake
  36. 2001-09-26 20:23 berk
  37. * Modules/Dart.cmake: Typo.
  38. 2001-09-25 18:39 martink
  39. * Source/MFCDialog/CMakeSetupDialog.cpp: improved registry handling
  40. 2001-09-25 18:39 martink
  41. * Modules/FindVTK.cmake: changes to chamghe
  42. 2001-09-25 15:06 martink
  43. * Source/cmVTKWrapTclCommand.cxx: memory leak
  44. 2001-09-21 15:48 martink
  45. * Modules/FindVTK.cmake: better install targets
  46. 2001-09-21 13:40 king
  47. * Source/cmSystemTools.cxx: BUG: CopyFile should return immediately
  48. after an error occurs.
  49. 2001-09-20 21:31 martink
  50. * Modules/FindVTK.cmake: updates
  51. 2001-09-20 20:43 berk
  52. * Source/ctest.cxx: handle spaces in commands and args
  53. 2001-09-20 19:29 martink
  54. * Source/MFCDialog/CMakeSetupDialog.cpp,
  55. Source/MFCDialog/PropertyList.cpp, Source/MFCDialog/PropertyList.h:
  56. ENH: check for values that switch to internal, can happen with a
  57. load cache command
  58. 2001-09-20 19:08 hoffman
  59. * Source/cmAbstractFilesCommand.cxx,
  60. Source/cmAbstractFilesCommand.h,
  61. Source/cmAddCustomTargetCommand.cxx,
  62. Source/cmAddCustomTargetCommand.h,
  63. Source/cmAddDefinitionsCommand.cxx,
  64. Source/cmAddDefinitionsCommand.h,
  65. Source/cmAddDependenciesCommand.cxx,
  66. Source/cmAddDependenciesCommand.h,
  67. Source/cmAddExecutableCommand.cxx, Source/cmAddExecutableCommand.h,
  68. Source/cmAddLibraryCommand.cxx, Source/cmAddLibraryCommand.h,
  69. Source/cmAddTestCommand.cxx, Source/cmAddTestCommand.h,
  70. Source/cmAuxSourceDirectoryCommand.cxx,
  71. Source/cmAuxSourceDirectoryCommand.h, Source/cmBuildCommand.cxx,
  72. Source/cmBuildCommand.h, Source/cmBuildNameCommand.cxx,
  73. Source/cmBuildNameCommand.h, Source/cmCableClassSetCommand.cxx,
  74. Source/cmCableClassSetCommand.h, Source/cmCableWrapTclCommand.cxx,
  75. Source/cmCableWrapTclCommand.h, Source/cmCommand.h,
  76. Source/cmConfigureFileCommand.cxx, Source/cmConfigureFileCommand.h,
  77. Source/cmConfigureGccXmlCommand.cxx,
  78. Source/cmConfigureGccXmlCommand.h, Source/cmElseCommand.cxx,
  79. Source/cmElseCommand.h, Source/cmEnableTestingCommand.h,
  80. Source/cmEndForEachCommand.cxx, Source/cmEndForEachCommand.h,
  81. Source/cmEndIfCommand.cxx, Source/cmEndIfCommand.h,
  82. Source/cmExecProgramCommand.cxx, Source/cmExecProgramCommand.h,
  83. Source/cmFindFileCommand.cxx, Source/cmFindFileCommand.h,
  84. Source/cmFindLibraryCommand.cxx, Source/cmFindLibraryCommand.h,
  85. Source/cmFindPathCommand.cxx, Source/cmFindPathCommand.h,
  86. Source/cmFindProgramCommand.cxx, Source/cmFindProgramCommand.h,
  87. Source/cmForEachCommand.cxx, Source/cmForEachCommand.h,
  88. Source/cmGetFilenameComponentCommand.cxx,
  89. Source/cmGetFilenameComponentCommand.h, Source/cmIfCommand.cxx,
  90. Source/cmIfCommand.h, Source/cmIncludeCommand.cxx,
  91. Source/cmIncludeCommand.h, Source/cmIncludeDirectoryCommand.cxx,
  92. Source/cmIncludeDirectoryCommand.h,
  93. Source/cmIncludeRegularExpressionCommand.cxx,
  94. Source/cmIncludeRegularExpressionCommand.h,
  95. Source/cmInstallFilesCommand.cxx, Source/cmInstallFilesCommand.h,
  96. Source/cmInstallProgramsCommand.cxx,
  97. Source/cmInstallProgramsCommand.h,
  98. Source/cmInstallTargetsCommand.cxx,
  99. Source/cmInstallTargetsCommand.h, Source/cmLibraryCommand.h,
  100. Source/cmLinkDirectoriesCommand.cxx,
  101. Source/cmLinkDirectoriesCommand.h,
  102. Source/cmLinkLibrariesCommand.cxx, Source/cmLinkLibrariesCommand.h,
  103. Source/cmLoadCacheCommand.cxx, Source/cmLoadCacheCommand.h,
  104. Source/cmMakeDirectoryCommand.cxx, Source/cmMakeDirectoryCommand.h,
  105. Source/cmMakefile.cxx, Source/cmMakefile.h,
  106. Source/cmMessageCommand.cxx, Source/cmMessageCommand.h,
  107. Source/cmOptionCommand.cxx, Source/cmOptionCommand.h,
  108. Source/cmOutputRequiredFilesCommand.cxx,
  109. Source/cmOutputRequiredFilesCommand.h, Source/cmProjectCommand.cxx,
  110. Source/cmProjectCommand.h, Source/cmSetCommand.cxx,
  111. Source/cmSetCommand.h, Source/cmSiteNameCommand.cxx,
  112. Source/cmSiteNameCommand.h, Source/cmSourceFilesCommand.cxx,
  113. Source/cmSourceFilesCommand.h,
  114. Source/cmSourceFilesRemoveCommand.cxx,
  115. Source/cmSourceFilesRemoveCommand.h,
  116. Source/cmSourceGroupCommand.cxx, Source/cmSourceGroupCommand.h,
  117. Source/cmSubdirCommand.cxx, Source/cmSubdirCommand.h,
  118. Source/cmSubdirDependsCommand.cxx, Source/cmSubdirDependsCommand.h,
  119. Source/cmTargetLinkLibrariesCommand.cxx,
  120. Source/cmTargetLinkLibrariesCommand.h,
  121. Source/cmUseMangledMesaCommand.cxx,
  122. Source/cmUseMangledMesaCommand.h,
  123. Source/cmUtilitySourceCommand.cxx, Source/cmUtilitySourceCommand.h,
  124. Source/cmVTKWrapJavaCommand.cxx, Source/cmVTKWrapJavaCommand.h,
  125. Source/cmVTKWrapPythonCommand.cxx, Source/cmVTKWrapPythonCommand.h,
  126. Source/cmVTKWrapTclCommand.cxx, Source/cmVTKWrapTclCommand.h,
  127. Source/cmWrapExcludeFilesCommand.cxx,
  128. Source/cmWrapExcludeFilesCommand.h: ENH: change InitialPass to take
  129. a const reference to the argument string, to avoid changes to the
  130. file cache
  131. 2001-09-20 17:44 martink
  132. * Source/cmMakefile.cxx: BUG: make a copy of the arguments before
  133. passing them to Execute
  134. 2001-09-20 16:00 martink
  135. * CMake.rtf: fixed some problems
  136. 2001-09-20 14:57 king
  137. * Modules/FindCABLE.cmake: ENH: Added support for finding cable
  138. when it is built in a configuration subdirectory by MSVC.
  139. 2001-09-20 14:53 king
  140. * Source/cmFindFileCommand.cxx, Source/cmFindLibraryCommand.cxx,
  141. Source/cmFindPathCommand.cxx, Source/cmFindProgramCommand.cxx,
  142. Source/cmSystemTools.cxx, Source/cmSystemTools.h: ENH: Added
  143. cmSystemTools::GlobDirs function to allow wildcards in paths (like
  144. /foo/bar/*).
  145. 2001-09-20 14:53 king
  146. * Source/cmSetCommand.cxx: ENH: Added extra newline in an error
  147. message to improve readability.
  148. 2001-09-20 14:27 martink
  149. * Modules/FindVTK.cmake: minor changes
  150. 2001-09-20 13:11 martink
  151. * Modules/FindVTK.cmake, Modules/UseVTKIncludes.cmake,
  152. Modules/UseVTKLibraries.cmake: removed some VTK stuff
  153. 2001-09-19 18:52 martink
  154. * Modules/FindVTK.cmake, Modules/UseVTKIncludes.cmake,
  155. Modules/UseVTKLibraries.cmake: updated to how FindVTK works
  156. 2001-09-19 18:20 martink
  157. * Source/cmMakefile.h: version rev to 94
  158. 2001-09-19 18:20 martink
  159. * Source/cmMakefile.h: version rev to 95
  160. 2001-09-18 14:45 hoffman
  161. * ChangeLog.txt: [no log message]
  162. 2001-09-18 14:38 will
  163. * CMake.pdf: ENH:Updated documentation
  164. 2001-09-17 21:40 hoffman
  165. * CMake.rtf: ENH: update for new version
  166. 2001-09-17 20:34 hoffman
  167. * Source/cmFindFileCommand.cxx: BUG: fix return when file is not
  168. found
  169. 2001-09-17 20:34 hoffman
  170. * Source/cmUseMangledMesaCommand.cxx,
  171. Source/cmUseMangledMesaCommand.h: ENH: change to take a path as
  172. input
  173. 2001-09-17 18:16 king
  174. * Modules/FindCABLE.cmake: ENH: Added find support for looking at
  175. Cable's build directory if the user sets the CABLE_BUILD_DIR cache
  176. entry.
  177. 2001-09-17 17:58 hoffman
  178. * Source/cmCommands.cxx, Source/cmUseMangledMesaCommand.cxx,
  179. Source/cmUseMangledMesaCommand.h: ENH: add Use mangled mesa command
  180. 2001-09-17 16:07 blezek
  181. * Modules/Dart.cmake: ENH: NightlyCoverage got lost
  182. 2001-09-14 20:36 martink
  183. * Source/cmVTKWrapTclCommand.cxx, Source/cmVTKWrapJavaCommand.cxx,
  184. Source/cmVTKWrapPythonCommand.cxx: now uses five argument version
  185. of wrap commands
  186. 2001-09-14 20:26 hoffman
  187. * Source/cmMakefileGenerator.cxx, Source/cmStandardIncludes.h,
  188. Source/cmUnixMakefileGenerator.cxx,
  189. Source/cmUnixMakefileGenerator.h, Source/cmakemain.cxx,
  190. Source/MFCDialog/CMakeSetupDialog.cpp: remove memory leaks
  191. 2001-09-14 19:18 hoffman
  192. * Source/cmDSPWriter.cxx: fix error in cygwin
  193. 2001-09-14 19:18 hoffman
  194. * Source/cmMakefileGenerator.cxx, Source/cmMakefileGenerator.h: add
  195. support for clean up
  196. 2001-09-14 19:18 hoffman
  197. * Source/cmListFileCache.h: initialize class
  198. 2001-09-14 14:14 martink
  199. * Templates/DLLHeader.dsptemplate, Templates/EXEHeader.dsptemplate,
  200. Templates/EXEWinHeader.dsptemplate,
  201. Templates/UtilityHeader.dsptemplate,
  202. Templates/staticLibHeader.dsptemplate: made Debug the default
  203. configuration
  204. 2001-09-14 12:34 barre
  205. * Modules/FindTCL.cmake: move cygtclsh80 to the end of list,
  206. otherwise it might be found while the non-cygwin wish8x.exe will be
  207. found too. If wish8x.exe is found, then the non-cygwin tclsh8x.exe
  208. must be found too.
  209. 2001-09-13 18:45 martink
  210. * Modules/Dart.cmake: added back some targets for UNIX
  211. 2001-09-13 15:27 martink
  212. * Source/cmSystemTools.h, Source/cmSystemTools.cxx: added shortest
  213. ext function
  214. 2001-09-12 21:09 lorensen
  215. * Source/cmSiteNameCommand.cxx: ENH: drop the case of the site
  216. name. This makes it consistent with Dart's usage.
  217. 2001-09-12 21:09 lorensen
  218. * Source/cmSystemTools.cxx, Source/cmSystemTools.h: ENH: Added
  219. LowerCase method.
  220. 2001-09-12 19:18 king
  221. * Source/cmCableWrapTclCommand.cxx, Source/cmCableWrapTclCommand.h:
  222. ENH: Added parsing of gccxml flags into separate arguments for
  223. setting the custom command. This is necessary since the custom
  224. command now takes a vector of individual command line options
  225. instead of a single string.
  226. 2001-09-12 01:45 biddi
  227. * Templates/CMakeWindowsBorlandConfig.cmake: ERR: Spelling
  228. 2001-09-12 01:45 biddi
  229. * Source/cmBorlandMakefileGenerator.cpp,
  230. Source/cmBorlandMakefileGenerator.h, Source/cmSystemTools.cxx: ERR:
  231. Change to EscapeSpaces forces rework of Borland generator <sigh>
  232. Add clause to prevent adding quotes when they're already present,
  233. then stuff them onto all lib paths to prevent forward slashes
  234. causing trouble.
  235. 2001-09-11 23:58 biddi
  236. * Source/cmSystemTools.cxx, Source/cmSystemTools.h: ENH: Add a
  237. findfile routine (as opposed to find executable or library) which
  238. doesn't add any extensions - Borland make needs full paths to
  239. certain dependencies otherwise linking doesn't work properly
  240. (dependencies aren't checked)
  241. 2001-09-11 23:58 biddi
  242. * Source/cmBorlandMakefileGenerator.cpp,
  243. Source/cmBorlandMakefileGenerator.h: ENH: Major fix of the Borland
  244. generator which addresses the problem of libraries with
  245. dependencies (other libraries) not linking when required.
  246. Dependency checking required the full path to be supplied to each
  247. file when they're not in the current directory (very tedious). All
  248. seems to be working nicely now.
  249. 2001-09-11 19:17 martink
  250. * Source/ctest.cxx: updated testing
  251. 2001-09-11 18:58 martink
  252. * Source/cmDSPWriter.cxx: include fixes
  253. 2001-09-11 18:42 martink
  254. * Modules/Dart.cmake: reduced the number of targets
  255. 2001-09-11 18:42 martink
  256. * Source/cmaketest.cxx: bug in testing code
  257. 2001-09-11 17:44 hoffman
  258. * Source/cmBorlandMakefileGenerator.cpp: BUG: fix build with
  259. non-borland compiler
  260. 2001-09-11 17:40 martink
  261. * Source/cmDSPWriter.cxx: fix for include paths
  262. 2001-09-10 19:11 martink
  263. * Modules/Dart.cmake: reduced targets and merged tclsh commands
  264. 2001-09-10 19:11 martink
  265. * Source/cmCableWrapTclCommand.cxx, Source/cmDSPWriter.cxx,
  266. Source/cmMakefile.cxx, Source/cmMakefile.h,
  267. Source/cmSystemTools.cxx, Source/cmVTKWrapJavaCommand.cxx,
  268. Source/cmVTKWrapPythonCommand.cxx, Source/cmVTKWrapTclCommand.cxx:
  269. various windows fixes
  270. 2001-09-10 15:03 berk
  271. * Source/CMakeLists.txt: Typo in link command.
  272. 2001-09-08 16:09 biddi
  273. * Source/cmBorlandMakefileGenerator.cpp,
  274. Source/cmBorlandMakefileGenerator.h: ERR: Forgot to put back a
  275. backslash
  276. 2001-09-08 14:02 biddi
  277. * Source/cmBorlandMakefileGenerator.cpp: ERR: LINK_DIR must ot have
  278. backslah at end. Fix plus cleanup of some code.
  279. 2001-09-07 14:08 martink
  280. * Source/cmDirectory.cxx: fixed bug in mismatched directory opens
  281. consuming file descriptors
  282. 2001-09-07 13:40 king
  283. * Source/cmConfigureGccXmlCommand.cxx: ENH: Removed addition of
  284. compiler support directory include option since the find_*_options
  285. scripts now include it automatically.
  286. 2001-09-06 22:02 hoffman
  287. * Source/CMakeLists.txt, Source/cmBorlandMakefileGenerator.cpp:
  288. BUG: clean up lib and exe output paths
  289. 2001-09-06 21:28 hoffman
  290. * Source/CMakeLib.dsp, Source/cmBorlandMakefileGenerator.cpp,
  291. Source/cmBorlandMakefileGenerator.h, Source/cmMSProjectGenerator.h,
  292. Source/cmMakefileGenerator.cxx, Source/cmMakefileGenerator.h,
  293. Source/cmUnixMakefileGenerator.h, Source/cmake.cxx, Source/cmake.h,
  294. Source/MFCDialog/CMakeSetup.rc,
  295. Source/MFCDialog/CMakeSetupDialog.cpp,
  296. Source/MFCDialog/CMakeSetupDialog.h, Source/MFCDialog/resource.h,
  297. Templates/CMakeWindowsBorlandConfig.cmake: ENH: integrate borland
  298. support
  299. 2001-09-04 20:29 biddi
  300. * Source/cmBorlandMakefileGenerator.cpp,
  301. Source/cmBorlandMakefileGenerator.h,
  302. Templates/CMakeWindowsBorlandConfig.cmake: NEW: First check in of
  303. Borland Makefile Generator and template stuff
  304. 2001-09-04 20:07 hoffman
  305. * Source/cmAddCustomTargetCommand.cxx, Source/cmCustomCommand.cxx,
  306. Source/cmCustomCommand.h, Source/cmDSPWriter.cxx,
  307. Source/cmDSWWriter.cxx, Source/cmMakefile.cxx, Source/cmMakefile.h,
  308. Source/cmSourceGroup.cxx, Source/cmSourceGroup.h,
  309. Source/cmVTKWrapJavaCommand.cxx: ENH: separate command from its
  310. arguments in the custom command. This allows the generator on
  311. windows to change the slashes for just the command
  312. 2001-09-01 21:13 biddi
  313. * Source/cmBuildCommand.cxx: ENH: Added a clause for Borland
  314. compiler compatibility
  315. 2001-09-01 20:55 barre
  316. * Source/cmDSPWriter.cxx: Convert path format back to Windows
  317. slashes syntax. Mandatory for Win98 build.
  318. 2001-09-01 20:55 barre
  319. * Source/cmSystemTools.cxx: fix comment pb
  320. 2001-09-01 20:12 biddi
  321. * Source/cmSystemTools.cxx, Source/cmSystemTools.h: ENH: Windows
  322. and Unix slash conversions return a char*, clean function seperated
  323. from Convert function
  324. 2001-09-01 20:12 biddi
  325. * Source/cmMakefile.cxx, Source/cmMakefile.h: ENH: ExpandVariables
  326. functions return a char * for convenience
  327. 2001-09-01 01:10 starreveld
  328. * Source/cmUnixMakefileGenerator.cxx:
  329. ENH: Generate compile lines for .m, .M, and .mm files (ObjC and
  330. ObjC++)
  331. 2001-08-30 21:32 hoffman
  332. * Source/cmMakefile.cxx: BUG: fix incorrect deletion of function
  333. blockers
  334. 2001-08-30 20:19 martink
  335. * Source/cmMakefile.h, Source/cmMakefile.h: version rev
  336. 2001-08-30 20:06 hoffman
  337. * ChangeLog, ChangeLog.txt, ChangeLog: [no log message]
  338. 2001-08-30 19:54 hoffman
  339. * ChangeLog.txt: ENH: add autogenerated changelog
  340. 2001-08-29 21:21 hoffman
  341. * Source/cmake.cxx: opps
  342. 2001-08-29 21:08 king
  343. * Source/cmCableWrapTclCommand.cxx: ENH: Updated generated
  344. dependencies since cable's installation directory now uses separate
  345. CxxTypes and WrapTclFacility subdirecories for includes.
  346. 2001-08-29 21:08 king
  347. * Source/cmConfigureGccXmlCommand.cxx: BUG: GCCXML_FLAGS found from
  348. find_gcc_options or find_mpro_options should have the trailing
  349. newline stripped from the string.
  350. 2001-08-29 21:08 king
  351. * Modules/FindCABLE.cmake: ENH: Updated library finding code to
  352. handle new cable installation directory structure. It now uses
  353. separate directories for CxxTypes and WrapTclFacility headers.
  354. 2001-08-29 20:42 martink
  355. * Source/ctest.cxx, Source/ctest.h: added regexp option
  356. 2001-08-29 20:13 hoffman
  357. * Source/CMakeLib.dsp, Source/DumpDocumentation.dsp,
  358. Source/cmake.dsp, Source/ctest.dsp: remove /ZI
  359. 2001-08-29 19:57 hoffman
  360. * Source/cmake.cxx, Source/cmaketest.cxx: ENH: run cmake from
  361. cmaketest
  362. 2001-08-29 14:46 king
  363. * Source/cmMakefile.h: ENH: Added a const version of
  364. GetLinkLibraries().
  365. 2001-08-29 14:46 king
  366. * Source/cmUnixMakefileGenerator.cxx,
  367. Source/cmUnixMakefileGenerator.h: ENH: Proper dependencies between
  368. shared libraries now exist in the generated makefiles. If a shared
  369. library links to another, the other will be built before the link
  370. is attempted.
  371. 2001-08-29 13:57 hoffman
  372. * Source/cmMakefile.cxx: clean up a bit
  373. 2001-08-29 13:44 berk
  374. * Source/cmSystemTools.cxx: BUG: fix out of bounds read on string
  375. in mkdir
  376. 2001-08-29 13:26 perera
  377. * Source/cmSystemTools.cxx, Source/cmSystemTools.h: ENH: Special
  378. value IGNORE behaves like NOTFOUND, but makes FindLibrary, etc,
  379. _not_ search for a library, etc.
  380. 2001-08-28 22:35 hoffman
  381. * Source/cmListFileCache.h: remove warning
  382. 2001-08-28 22:27 hoffman
  383. * Source/CMakeLib.dsp, Source/CMakeLists.txt,
  384. Source/CMakeSetup.dsw, Source/Makefile.in,
  385. Source/cmListFileCache.cxx, Source/cmListFileCache.h,
  386. Source/cmMakefile.cxx: ENH: add caching for the input CMakeList.txt
  387. files, 2X speed up
  388. 2001-08-28 22:27 hoffman
  389. * Source/cmDSPWriter.cxx: BUG: put spaces in /I paths
  390. 2001-08-28 22:01 starreveld
  391. * Source/cmAddLibraryCommand.cxx, Source/cmAddLibraryCommand.h,
  392. Source/cmMakefile.cxx, Source/cmMakefile.h, Source/cmTarget.h,
  393. Source/cmUnixMakefileGenerator.cxx:
  394. Changes to allow MODULE type target for a shared library
  395. 2001-08-28 22:01 starreveld
  396. * Templates/CMakeSystemConfig.cmake.in, Templates/configure,
  397. Templates/configure.in:
  398. Changes to allow a MODULE target for a shared library.
  399. 2001-08-28 20:04 martink
  400. * CMakeLists.txt, Tests/Complex/CMakeLists.txt: minor fix
  401. 2001-08-28 18:55 martink
  402. * Source/cmDSPWriter.cxx, Source/cmSystemTools.cxx,
  403. Source/cmSystemTools.h: better network build support
  404. 2001-08-28 17:49 starreveld
  405. * Templates/configure, Templates/configure.in:
  406. Added support for Darwin (OSX)
  407. 2001-08-28 14:57 hoffman
  408. * Modules/FindTCL.cmake: ENH: support for cygwin
  409. 2001-08-28 14:57 hoffman
  410. * Source/cmSystemTools.cxx, Source/cmUnixMakefileGenerator.cxx:
  411. BUG: fix for broken apple mkdir and general clean up of
  412. MakeDirectory command
  413. 2001-08-27 19:48 hoffman
  414. * Source/MFCDialog/CMakeSetupDialog.cpp: BUG: fix switch projects
  415. not saving cache correctly
  416. 2001-08-27 19:19 martink
  417. * Source/cmDSPWriter.cxx: support for network path link libraries
  418. 2001-08-27 18:44 hoffman
  419. * Source/cmMakefile.cxx, Source/cmMakefile.h,
  420. Source/cmUnixMakefileGenerator.cxx: ENH: change expand variables to
  421. use GetDefinition
  422. 2001-08-27 18:35 hoffman
  423. * configure, configure.in: [no log message]
  424. 2001-08-27 18:35 hoffman
  425. * configure, configure.in, Source/Makefile.in: ENH: clean up sgi
  426. build and use non-broken autoconf
  427. 2001-08-27 16:24 hoffman
  428. * configure, Source/cmUnixMakefileGenerator.cxx,
  429. Templates/configure: [no log message]
  430. 2001-08-27 15:03 hoffman
  431. * Source/cmUnixMakefileGenerator.cxx: BUG: set CXX and CC when
  432. running configure from cmake
  433. 2001-08-27 14:23 martink
  434. * Source/ctest.cxx: better formatted output
  435. 2001-08-27 14:22 hoffman
  436. * Templates/configure, Templates/configure.in: ENH: use
  437. ANSI_CXXFLAGS for testing compiler
  438. 2001-08-27 14:11 hoffman
  439. * CMakeLists.txt, Templates/CMakeSystemConfig.cmake.in,
  440. Templates/configure, Templates/configure.in,
  441. Tests/Complex/CMakeLists.txt: ENH: sgi -LANG:std
  442. 2001-08-27 14:07 berk
  443. * Source/CMakeSetup.dsw: ken added dependancy to build everything
  444. 2001-08-25 16:31 martink
  445. * Source/CMakeSetup.dsw, Source/ctest.dsp: added ctest to win32
  446. 2001-08-24 21:50 hoffman
  447. * Templates/configure, Templates/configure.in: [no log message]
  448. 2001-08-24 21:30 hoffman
  449. * Templates/CMakeSystemConfig.cmake.in, Templates/configure,
  450. Templates/configure.in: ENH: more sgi -LANG stuff
  451. 2001-08-24 21:25 hoffman
  452. * configure, configure.in, configure, configure.in: auto detect
  453. lang:std:
  454. 2001-08-24 21:12 hoffman
  455. * Source/Makefile.in: ENH: build for sgi CC out of box
  456. 2001-08-24 21:12 hoffman
  457. * configure, configure.in, configure, configure.in: auto detect
  458. lang:std:
  459. 2001-08-24 21:00 hoffman
  460. * configure, configure.in: auto detect lang:std:
  461. 2001-08-24 20:51 hoffman
  462. * configure, configure.in: auto detect lang:std:
  463. 2001-08-24 19:54 hoffman
  464. * Tests/Complex/cmTestConfigure.h.in,
  465. Tests/Complex/Executable/complex.cxx: BUG: fix complex test for old
  466. compilers
  467. 2001-08-24 19:45 hoffman
  468. * configure, configure.in, Tests/Complex/cmTestConfigure.h.in: BUG:
  469. fix for SGI Native compiler
  470. 2001-08-24 19:41 hoffman
  471. * Templates/configure, Templates/configure.in: BUG: fix flag for
  472. building shared on HP
  473. 2001-08-23 22:30 perera
  474. * Source/cmAddTestCommand.cxx, Source/cmAddTestCommand.h: BUG:
  475. ADD_TEST now only does stuff if ENABLE_TESTING has been run.
  476. 2001-08-23 22:02 hoffman
  477. * Source/cmMakefile.cxx, Source/cmSystemTools.cxx,
  478. Source/cmSystemTools.h: ENH: improve coverage
  479. 2001-08-23 21:40 hoffman
  480. * Source/CMakeLists.txt, Source/cmDumpDocumentation.cxx,
  481. Source/cmMakefile.cxx, Source/cmMakefile.h: ENH: add dump
  482. documentation test
  483. 2001-08-23 20:28 king
  484. * Source/cmCableWrapTclCommand.cxx, Source/cmCableWrapTclCommand.h:
  485. ENH: Each cmCableWrapTclCommand instance now uses a single
  486. cmMakeDepend object for dependencies for all the gccxml input files
  487. it generates. This should significantly improve generation time.
  488. 2001-08-23 20:24 hoffman
  489. * Source/cmaketest.cxx: BUG: run make all on unix not make exename
  490. 2001-08-23 20:00 hoffman
  491. * Source/CMakeLists.txt, Source/cmStandardIncludes.h,
  492. Source/cmaketest.cxx, Source/ctest.cxx: ENH: add more testing
  493. 2001-08-23 17:57 hoffman
  494. * Tests/Complex/CMakeLists.txt, Tests/Complex/VarTests.txt,
  495. Tests/Complex/cmTestConfigure.h.in, Tests/Complex/simple.cxx,
  496. Tests/Complex/Executable/CMakeLists.txt,
  497. Tests/Complex/Executable/complex.cxx,
  498. Tests/Complex/Library/CMakeLists.txt,
  499. Tests/Complex/Library/file2.cxx, Tests/Complex/Library/file2.h,
  500. Tests/Complex/Library/sharedFile.cxx,
  501. Tests/Complex/Library/sharedFile.h,
  502. Tests/Complex/Library/ExtraSources/file1.cxx,
  503. Tests/Complex/Library/ExtraSources/file1.h: ENH: try to get better
  504. test coverage
  505. 2001-08-23 17:12 martink
  506. * Source/ctest.cxx: also check path for test executables
  507. 2001-08-23 15:39 martink
  508. * Source/ctest.cxx: fixed format
  509. 2001-08-23 15:32 martink
  510. * Source/cmUnixMakefileGenerator.cxx: better ctest support
  511. 2001-08-23 15:12 martink
  512. * Source/CMakeLists.txt, Source/cmSystemTools.cxx,
  513. Source/cmSystemTools.h, Source/cmUnixMakefileGenerator.cxx,
  514. Source/ctest.cxx, Source/ctest.h: added test driver for make test
  515. target
  516. 2001-08-22 20:33 martink
  517. * Source/cmDSPWriter.cxx: ENH: do not put a rule in to rebuild the
  518. ALL_BUILD.dsp file, as it is not possible...
  519. 2001-08-22 15:58 hoffman
  520. * Source/cmCableClassSet.h, Source/cmCableWrapTclCommand.cxx,
  521. Source/cmCacheManager.cxx, Source/cmCacheManager.h,
  522. Source/cmMakeDepend.h, Source/cmMakefile.h, Source/cmSourceGroup.h,
  523. Source/cmStandardIncludes.h, Source/cmTarget.h,
  524. Source/cmUnixMakefileGenerator.cxx: ENH: change all maps of string
  525. to be maps of cmStdString, to reduce symbol length in object files.
  526. 2001-08-22 15:26 hoffman
  527. * Source/cmMakefile.h: BUG: shorten length of symbols
  528. 2001-08-22 14:12 berk
  529. * Source/cmDSPWriter.cxx: OUTDIR->IntDir
  530. 2001-08-22 12:21 hoffman
  531. * Source/MFCDialog/CMakeLists.txt: BUG: add missing
  532. CMakeCommandLineInfo
  533. 2001-08-21 21:38 barre
  534. * Source/MFCDialog/CMakeSetup.cpp,
  535. Source/MFCDialog/CMakeSetupDialog.cpp,
  536. Source/MFCDialog/CMakeSetupDialog.h,
  537. Source/MFCDialog/CMakeCommandLineInfo.cpp,
  538. Source/MFCDialog/CMakeCommandLineInfo.h,
  539. Source/MFCDialog/CMakeSetup.dsp: CMakeSetup now handles
  540. command-line arguments (ex: /H=source_dir /B=build_dir)
  541. 2001-08-21 15:04 starreveld
  542. * Source/cmMakefile.cxx:
  543. Added support for .mm source files (ObjC++)
  544. 2001-08-20 17:32 hoffman
  545. * Templates/configure, Templates/configure.in: BUG: fix check for
  546. no std::
  547. 2001-08-20 13:23 hoffman
  548. * Source/cmSetCommand.cxx: BUG: cmSystemTools::CollapseFullPath is
  549. a bad thing to call on the compiler which is a filepath
  550. 2001-08-19 23:11 barre
  551. * Source/cmOptionCommand.cxx: Allow option value to be expanded
  552. (thus, we can use the value of another option as default)
  553. 2001-08-19 16:14 barre
  554. * Source/cmMakefile.cxx: gcc and MSVC clash on
  555. basic_string::compare(), let's try substr()
  556. 2001-08-19 11:36 barre
  557. * Source/cmSetCommand.cxx: If the value is a path, collapse it
  558. (cleaner)
  559. 2001-08-18 21:57 hoffman
  560. * Templates/configure, Templates/configure.in: BUG: get the flags
  561. right
  562. 2001-08-18 16:51 barre
  563. * Source/cmMakefile.cxx, Modules/FindDart.cmake: Support for
  564. $ENV{VAR} syntax (lookup in the environment vars)
  565. 2001-08-17 21:11 martink
  566. * Source/cmElseCommand.cxx, Source/cmIfCommand.cxx: backwards
  567. MATCHES in if and else statements
  568. 2001-08-16 22:01 hoffman
  569. * Templates/configure: ENH: default for cygwin should be pthreads
  570. 2001-08-16 21:42 hoffman
  571. * Templates/CMakeSystemConfig.cmake.in,
  572. Templates/CMakeWindowsSystemConfig.cmake, Templates/configure,
  573. Templates/configure.in: ENH: add CMAKE_USE_WIN32_THREADS to the
  574. possible thread types
  575. 2001-08-16 15:41 berk
  576. * Source/cmCacheManager.cxx, Source/cmCacheManager.h,
  577. Source/cmLoadCacheCommand.cxx, Source/cmLoadCacheCommand.h: Adding
  578. new options to LoadCache.
  579. 2001-08-15 17:40 berk
  580. * Source/cmCacheManager.cxx, Source/cmCacheManager.h,
  581. Source/cmLoadCacheCommand.cxx: 1. Added EXCLUDE option to
  582. LOAD_CACHE. 2. Entries brought in from another cache are now
  583. marked as internal.
  584. 2001-08-15 17:23 martink
  585. * Modules/FindDart.cmake: looks at same level
  586. 2001-08-15 14:03 hoffman
  587. * Templates/configure, Templates/configure.in: ENH: make pthreads
  588. the default for cygwin
  589. 2001-08-14 21:18 king
  590. * Source/cmInstallFilesCommand.cxx, Source/cmInstallFilesCommand.h,
  591. Source/cmInstallProgramsCommand.cxx,
  592. Source/cmInstallProgramsCommand.h, Source/cmMakefile.cxx: ENH:
  593. Improved INSTALL_FILES and INSTALL_PROGRAMS commands to allow each
  594. call to the command in a single directory to specify a different
  595. install path.
  596. 2001-08-13 20:04 martink
  597. * Modules/Dart.cmake: removed grep
  598. 2001-08-10 19:52 martink
  599. * Source/cmVTKWrapTclCommand.cxx, Source/cmMakefile.h: now creates
  600. output directories
  601. 2001-08-09 19:35 hoffman
  602. * CMake.pdf: ENH: update pdf to rtf
  603. 2001-08-09 19:23 hoffman
  604. * CMake.rtf: ENH: add some docs for sgi CC
  605. 2001-08-09 18:58 berk
  606. * Source/cmElseCommand.cxx, Source/cmIfCommand.cxx: BUG: or and and
  607. were inverted.
  608. 2001-08-09 15:12 hoffman
  609. * ChangeLog: add generated ChangeLog file. Should be updated each
  610. time a new version is made
  611. 2001-08-09 15:07 martink
  612. * Source/cmMakefile.h, Source/cmMakefile.h: updated version
  613. 2001-08-09 15:07 martink
  614. * README: out of date
  615. 2001-08-09 13:33 hoffman
  616. * Source/cmConfigure.cmake.h.in: BUG: add in for scope variable
  617. 2001-08-08 18:25 martink
  618. * Source/FLTKDialog/CMakeSetupGUIImplementation.cxx: ENH: update to
  619. new style of cache access
  620. 2001-08-08 17:14 hoffman
  621. * Source/cmSiteNameCommand.cxx, Source/cmUtilitySourceCommand.cxx:
  622. BUG: can not Add a definition that you just got
  623. 2001-08-08 15:54 hoffman
  624. * configure, configure.in, Source/cmBuildCommand.cxx,
  625. Source/cmBuildNameCommand.cxx, Source/cmCableWrapTclCommand.cxx,
  626. Source/cmCacheManager.cxx, Source/cmCacheManager.h,
  627. Source/cmConfigure.h.in, Source/cmConfigureGccXmlCommand.cxx,
  628. Source/cmDSPWriter.cxx, Source/cmDSWWriter.cxx,
  629. Source/cmFindFileCommand.cxx, Source/cmFindLibraryCommand.cxx,
  630. Source/cmFindPathCommand.cxx, Source/cmFindProgramCommand.cxx,
  631. Source/cmLinkLibrariesCommand.cxx, Source/cmMSProjectGenerator.cxx,
  632. Source/cmMakefile.cxx, Source/cmMakefile.h,
  633. Source/cmOptionCommand.cxx, Source/cmProjectCommand.cxx,
  634. Source/cmSetCommand.cxx, Source/cmSiteNameCommand.cxx,
  635. Source/cmStandardIncludes.h, Source/cmSystemTools.cxx,
  636. Source/cmUnixMakefileGenerator.cxx,
  637. Source/cmUtilitySourceCommand.cxx, Source/cmVTKWrapJavaCommand.cxx,
  638. Source/cmVTKWrapPythonCommand.cxx, Source/cmVTKWrapTclCommand.cxx,
  639. Source/MFCDialog/CMakeSetupDialog.cpp,
  640. Templates/CMakeSystemConfig.cmake.in, Templates/configure,
  641. Templates/configure.in: ENH: big change, only allow commands access
  642. to the cache via the cmMakefile class and GetDefinition, also the
  643. cmMakefile is the only way for commands to add to the cache. Also,
  644. some changes to configure.in that check for for scoping
  645. 2001-08-07 19:49 hoffman
  646. * Source/cmStandardIncludes.h, Source/cmSystemTools.cxx: ENH:
  647. compile with broken 720 SGI C++ compiler
  648. 2001-08-07 17:46 hoffman
  649. * Source/cmMakefile.cxx: ENH: html output for docs
  650. 2001-08-07 17:15 hoffman
  651. * CMake.rtf: ENH: update documents with current commands and new
  652. GUI
  653. 2001-08-07 12:46 king
  654. * CMakeLogo.gif: ENH: CMakeLogo for Dart to use on testing web
  655. page.
  656. 2001-08-07 12:46 king
  657. * CMakeLists.txt: ERR: CMakeLogo.gif has been moved to the root
  658. directory of the source so that the Web and Web/Art directories are
  659. not needed here.
  660. 2001-08-06 21:01 martink
  661. * Source/cmElseCommand.cxx, Source/cmElseCommand.h,
  662. Source/cmIfCommand.cxx, Source/cmIfCommand.h: added new if commands
  663. 2001-08-06 19:11 king
  664. * CMake.pdf, CMake.rtf: Re-adding doc files. They were
  665. accidentally removed due to a symlink from the CMake/Web directory
  666. when it was removed.
  667. 2001-08-06 19:01 king
  668. * Web/index.html, Web/Art/CMakeBanner.jpg, Web/Art/CMakeBanner.psd,
  669. Web/Art/CMakeGUI.jpg, Web/Art/CMakeLogo.gif, Web/Art/CMakeLogo.ppt,
  670. Web/Art/CMakeLogo.psd, Web/Art/SideBar.jpg, Web/Art/SideBar.psd,
  671. Web/Art/acl.gif, Web/Art/asci.gif, Web/Art/asci_little.gif,
  672. Web/Art/itkLogoSmallTransparentBackground.gif,
  673. Web/Art/nlm_logo.gif, Web/Art/swooshSmall.gif, Web/HTML/About.html,
  674. CMake.pdf, CMake.rtf, Web/HTML/Documentation.html,
  675. Web/HTML/Download.html, Web/HTML/Examples.html, Web/HTML/FAQ.html,
  676. Web/HTML/Features.html, Web/HTML/Head.html, Web/HTML/Install.html,
  677. Web/HTML/MailingLists.html, Web/HTML/News.html,
  678. Web/HTML/SideBar.html, Web/HTML/Sponsors.html, Web/HTML/Style.css,
  679. Web/HTML/Table.html, Web/HTML/Testing.html,
  680. Web/HTML/TestingSetup.html, Web/HTML/cmakeExample.tar.gz: Removing
  681. Web directory from CMake. It is moving to a separate, parallel CVS
  682. module called "CMakeWeb"
  683. 2001-08-03 19:47 king
  684. * Source/cmConfigureFileCommand.cxx,
  685. Source/cmConfigureFileCommand.h: ENH: Added 'IMMEDIATE' option to
  686. CONFIGURE_FILE command to force file copy and configuration on the
  687. initial pass so that current variable values are used.
  688. 2001-08-02 21:27 king
  689. * Source/cmCableWrapTclCommand.cxx, Source/cmCableWrapTclCommand.h:
  690. ENH: Added use of a class's tag to generate a better set of
  691. filenames for its wrapper configuration, xml, and generated files.
  692. This should also prevent half the classes from re-wrapping when a
  693. new one is inserted in the middle.
  694. 2001-08-02 18:42 king
  695. * Source/cmUnixMakefileGenerator.cxx: BUG: Generated link line for
  696. shared libraries had CMAKE_CXX_FLAGS instead of CMAKE_CXXFLAGS
  697. (note underscore).
  698. 2001-08-02 18:10 king
  699. * Source/cmMakefile.cxx: BUG: Fixed off-by-one error in
  700. ExpandVariablesInString for case of $ or @ as last character of
  701. string.
  702. 2001-08-02 13:07 king
  703. * Source/cmUnixMakefileGenerator.cxx: BUG: We don't want to output
  704. -I/usr/include in the INCLUDE_FLAGS variable. This causes problems
  705. with finding system headers in the wrong places for certain
  706. standard library implementations.
  707. 2001-08-01 20:11 king
  708. * Modules/FindCABLE.cmake: ENH: Support to find CABLE utility if it
  709. is installed.
  710. 2001-08-01 20:11 king
  711. * Source/cmAddDefinitionsCommand.cxx: BUG: Needed to expand
  712. variables of definitions.
  713. 2001-08-01 20:11 king
  714. * Source/cmCommands.cxx, Source/cmMakefile.cxx,
  715. Source/cmMakefile.h, Source/cmSubdirDependsCommand.cxx,
  716. Source/cmSubdirDependsCommand.h,
  717. Source/cmUnixMakefileGenerator.cxx: ENH: Added SUBDIR_DEPENDS
  718. command and corresponding support code. This command allows
  719. specification that a set of subdirectories be built before a
  720. particular directory.
  721. 2001-08-01 20:11 king
  722. * Source/cmInstallFilesCommand.cxx: BUG: Need to expand variables
  723. when a regular expression is specified.
  724. 2001-08-01 15:19 king
  725. * Modules/FindTCL.cmake: ENH: Added tk library names tk8.4 tk8.3
  726. tk8.2 and tk8.0 to correspond to tk84 tk83 tk82 and tk80.
  727. TK_LIBRARY should now be found on more platforms.
  728. 2001-07-31 15:29 king
  729. * Source/cmCommands.cxx, Source/cmDSPWriter.cxx,
  730. Source/cmDSWWriter.cxx, Source/cmInstallFilesCommand.cxx,
  731. Source/cmInstallProgramsCommand.cxx,
  732. Source/cmInstallProgramsCommand.h, Source/cmMakefile.cxx,
  733. Source/cmTarget.cxx, Source/cmTarget.h,
  734. Source/cmUnixMakefileGenerator.cxx, Templates/CMakeLists.txt: ENH:
  735. Added INSTALL_PROGRAMS command and corresponding support. This
  736. involved splitting cmTarget::INSTALL into INSTALL_FILES and
  737. INSTALL_PROGRAMS enum values. INSTALL_FILES no longer adds execute
  738. permission. The INSTALL_PROGRAMS commnad takes either a list of
  739. explicit names, or a regex. It will not expand source lists like
  740. the INSTALL_FILES command will.
  741. 2001-07-30 16:21 king
  742. * Source/cmCableClassSet.cxx: ERR:
  743. ElementCombinationGenerator::ReplacePortion needs to be a friend of
  744. ElementCombinationGenerator so that it can get access to
  745. ElementCombinationGenerator::Substitution. Also fixed one minor
  746. problem for HP build.
  747. 2001-07-30 15:34 king
  748. * Source/cmCableClassSet.cxx, Source/cmCableWrapTclCommand.cxx,
  749. Source/cmDSPWriter.cxx, Source/cmMakeDepend.cxx,
  750. Source/cmMakefile.cxx, Source/cmMakefile.h,
  751. Source/cmUnixMakefileGenerator.cxx: BUG: Changed include and link
  752. directory paths in cmMakefile back to std::vector because there is
  753. an order dependency. Only cmMakefile::AddIncludeDirectory and
  754. cmMakefile::AddLinkDirectory should be called to add directories to
  755. the paths. They make sure the paths are unique as they are
  756. inserted.
  757. 2001-07-30 11:18 scottim
  758. * Source/cmCableClassSet.cxx, Source/cmCableWrapTclCommand.cxx,
  759. Source/cmDSPWriter.cxx, Source/cmMakeDepend.cxx,
  760. Source/cmMakefile.cxx, Source/cmMakefile.h,
  761. Source/cmUnixMakefileGenerator.cxx: Removed the Uniquification of
  762. the include and link directory list in FinalPass, and achieved the
  763. same effect by makein m_LinkDirectores and m_IncludeDirectories a
  764. set rather than vector
  765. 2001-07-27 20:29 hoffman
  766. * Source/cmMakefile.cxx: ENH: Re-implemented
  767. ExpandVariablesInString to significantly improve performance.
  768. 2001-07-27 17:06 scottim
  769. * Source/cmMakefile.cxx, Source/cmMakefile.h: MAkefile now strips
  770. duplicate directores from the libraries and include paths
  771. 2001-07-26 15:07 king
  772. * Source/cmCableClassSet.cxx, Source/cmCableClassSet.h,
  773. Source/cmCableClassSetCommand.cxx,
  774. Source/cmCableWrapTclCommand.cxx: ENH: Added cable class-set
  775. expansion and tagging for alternate name generation. This should
  776. make the generated wrappers much easier to setup and use.
  777. 2001-07-26 14:18 hoffman
  778. * Source/MFCDialog/CMakeSetupDialog.cpp,
  779. Source/MFCDialog/PropertyList.cpp: ENH: change the logic of
  780. disabling the ok button a bit
  781. 2001-07-26 13:47 berk
  782. * CMakeLists.txt: ENH: Updated regexp for tracing dependencies in
  783. FLTK dialog.
  784. 2001-07-26 12:36 martink
  785. * Source/cmMakefile.h: fixed warnings
  786. 2001-07-25 22:30 hoffman
  787. * Source/cmMakefile.cxx, Source/cmMakefile.h, Source/cmake.cxx,
  788. Source/cmake.h, Source/MFCDialog/CMakeDialog.h,
  789. Source/MFCDialog/CMakeSetup.rc,
  790. Source/MFCDialog/CMakeSetupDialog.cpp,
  791. Source/MFCDialog/CMakeSetupDialog.h,
  792. Source/MFCDialog/PropertyList.cpp, Source/MFCDialog/PropertyList.h,
  793. Source/MFCDialog/resource.h: ENH: rework GUI with
  794. configure/OK/Cancel
  795. 2001-07-25 20:52 martink
  796. * Source/cmEndForEachCommand.cxx, Source/cmEndForEachCommand.h,
  797. Source/cmForEachCommand.cxx, Source/cmForEachCommand.h: new
  798. commands
  799. 2001-07-25 20:52 martink
  800. * Source/cmCommands.cxx, Source/cmFunctionBlocker.h,
  801. Source/cmIfCommand.cxx, Source/cmIfCommand.h,
  802. Source/cmMakefile.cxx, Source/cmMakefile.h: added for each command
  803. 2001-07-25 13:40 berk
  804. * Source/cmCacheManager.cxx: Removing trailing spaces after cache
  805. entry value.
  806. 2001-07-24 20:46 hoffman
  807. * Source/MFCDialog/CMakeSetupDialog.cpp,
  808. Source/MFCDialog/PropertyList.cpp, Source/MFCDialog/PropertyList.h,
  809. Source/MFCDialog/resource.h: BUG: fix on scroll with buttons
  810. 2001-07-24 20:16 king
  811. * Source/cmDSPWriter.cxx: BUG: Fixed dependency generation to work
  812. for when there are many, many dependencies. Output is now easier
  813. to ready anyway because each dependency is on its own line.
  814. 2001-07-23 18:43 king
  815. * Source/cmConfigureGccXmlCommand.cxx,
  816. Source/cmConfigureGccXmlCommand.h: BUG: CompilerIsMipsPro needs to
  817. redirect stderr to stdout so that the test output can be checked.
  818. 2001-07-23 15:53 king
  819. * Source/cmConfigureGccXmlCommand.cxx,
  820. Source/cmConfigureGccXmlCommand.h: ENH: Added support for UNIX
  821. compilers. GCC and MIPSpro are supported.
  822. 2001-07-23 15:53 king
  823. * Source/cmSystemTools.cxx, Source/cmSystemTools.h: ENH: Added
  824. support for non-verbose mode output from running a command. This
  825. can be used when it is expected that the command may fail.
  826. 2001-07-23 15:06 king
  827. * Modules/FindGCCXML.cmake: ENH: Module to find and configure
  828. GCCXML and GCCXML_FLAGS.
  829. 2001-07-23 15:06 king
  830. * Source/cmCommands.cxx, Source/cmConfigureGccXmlCommand.cxx,
  831. Source/cmConfigureGccXmlCommand.h: ENH: Added CONFIGURE_GCCXML
  832. command to do hard work of configuring GCCXML's flags for the
  833. current compiler. Currently only implemented correctly for Visual
  834. C++ in Windows.
  835. 2001-07-20 19:05 millerjv
  836. * Web/index.html: FIX: changed hyperlink color from white/white
  837. 2001-07-20 15:41 millerjv
  838. * Modules/Dart.cmake: ENH: Added Purify targets
  839. 2001-07-20 13:20 millerjv
  840. * Modules/Dart.cmake: ENH: Added purify command.
  841. 2001-07-20 08:56 scottim
  842. * Templates/DLLHeader.dsptemplate: adding what I think is a missing
  843. /pdbtype:sept
  844. 2001-07-19 18:31 ibanez
  845. * Source/FLTKDialog/CMakeSetupGUI.cxx,
  846. Source/FLTKDialog/CMakeSetupGUI.fl,
  847. Source/FLTKDialog/CMakeSetupGUI.h,
  848. Source/FLTKDialog/CMakeSetupGUIImplementation.cxx,
  849. Source/FLTKDialog/CMakeSetupGUIImplementation.h,
  850. Source/FLTKDialog/FLTKDialog.cxx: ENH: Save and Load of recent
  851. Source and Binary directories added.
  852. 2001-07-18 20:45 martink
  853. * Source/cmMakefile.h: updated version
  854. 2001-07-18 15:40 martink
  855. * Source/cmSystemTools.cxx: limit library search to appropriate
  856. extensions
  857. 2001-07-18 14:17 hoffman
  858. * Modules/Dart.cmake: BUG: enable testing even if not tcl found
  859. 2001-07-17 19:41 king
  860. * Source/cmCableWrapTclCommand.cxx: ENH: Added generation of
  861. dependencies on the CMake-generated input to gcc-xml so that
  862. re-generation of wrappers will occur if a header changes.
  863. 2001-07-17 19:41 king
  864. * Source/cmMakeDepend.cxx: BUG: Need to expand variables in search
  865. paths in case it hasn't been done yet by the makefile.
  866. 2001-07-17 19:09 king
  867. * Source/cmMakeDepend.cxx, Source/cmMakeDepend.h,
  868. Source/cmOutputRequiredFilesCommand.cxx,
  869. Source/cmUnixMakefileGenerator.cxx: ENH: Hacked together a new
  870. implementation of the dependency generator code. This should
  871. support finding dependencies for individual files without doing
  872. them for the entire makefile. Use cmMakeDepend::FindDependencies()
  873. to do this.
  874. 2001-07-17 13:54 king
  875. * Modules/CMakeLists.txt, Modules/FindDart.cmake,
  876. Modules/FindJNI.cmake, Modules/FindPythonLibs.cmake,
  877. Modules/FindTCL.cmake, Source/cmSystemTools.cxx,
  878. Source/cmSystemTools.h, Templates/configure,
  879. Templates/configure.in: ENH: Added support for using
  880. backslash-style escaping in CMakeLists.txt file arguments. This
  881. allows double quotes to be used in arguments.
  882. 2001-07-16 22:40 perera
  883. * Source/cmAuxSourceDirectoryCommand.cxx, Source/cmMakefile.cxx,
  884. Source/cmMakefile.h, Source/cmSourceFile.cxx,
  885. Source/cmSourceFile.h, Source/cmSourceFilesCommand.cxx,
  886. Source/cmSourceFilesRemoveCommand.cxx, Source/cmTarget.cxx: ENH:
  887. Source and header file extensions are in variables in cmMakefile.
  888. AUX_SOURCE_DIRECTORY will only add files that have a "source"
  889. extension.
  890. 2001-07-16 20:49 hoffman
  891. * Web/HTML/About.html, Web/HTML/Documentation.html,
  892. Web/HTML/Download.html, Web/HTML/Examples.html, Web/HTML/FAQ.html,
  893. Web/HTML/Features.html, Web/HTML/Install.html,
  894. Web/HTML/MailingLists.html, Web/HTML/News.html,
  895. Web/HTML/SideBar.html, Web/HTML/Sponsors.html,
  896. Web/HTML/Testing.html, Web/HTML/TestingSetup.html: ENH: add
  897. TestingSetup
  898. 2001-07-16 19:19 ibanez
  899. * Modules/FindGLU.cmake, Modules/FindGLUT.cmake: Search path
  900. for OpenGL related libraries
  901. 2001-07-16 15:17 king
  902. * Web/HTML/Sponsors.html: ERR: ITK is the original sponsoring
  903. project for CMake, not itself.
  904. 2001-07-16 14:14 hoffman
  905. * Templates/CMakeSystemConfig.cmake.in, Templates/configure,
  906. Templates/configure.in: ENH: add a variable for
  907. CMAKE_COMPILER_IS_GNUCXX
  908. 2001-07-16 14:14 hoffman
  909. * Source/cmMakefile.cxx, Source/cmSourceFile.cxx: ENH: add support
  910. for mac osx
  911. 2001-07-16 14:14 hoffman
  912. * Source/MFCDialog/CMakeSetupDialog.cpp: BUG: make sure cache is
  913. cleared
  914. 2001-07-16 01:10 barre
  915. * Modules/FindPythonLibs.cmake: update include/lib path to Python
  916. (Linux)
  917. 2001-07-12 23:48 hoffman
  918. * Source/MFCDialog/CMakeSetupDialog.cpp,
  919. Source/MFCDialog/CMakeSetupDialog.h,
  920. Source/MFCDialog/PropertyList.cpp, Source/MFCDialog/PropertyList.h:
  921. ENH: add a check to avoid quitting before rebuilding
  922. 2001-07-11 17:30 martink
  923. * Source/cmMakefile.h, Source/cmMakefile.h: version num
  924. 2001-07-11 17:06 martink
  925. * Source/MFCDialog/CMakeSetupDialog.cpp: fixed up resizing info
  926. 2001-07-11 16:12 hoffman
  927. * Source/cmSystemTools.cxx: BUG: make sure find program does not
  928. find directories
  929. 2001-07-10 21:13 hoffman
  930. * Source/cmIncludeCommand.cxx, Source/cmLoadCacheCommand.cxx: BUG:
  931. remove iostream.h includes
  932. 2001-07-10 20:20 berk
  933. * Source/cmUnixMakefileGenerator.cxx: Unnecessary variable
  934. 2001-07-10 20:20 berk
  935. * Source/cmMakefile.cxx: Better error checking.
  936. 2001-07-10 18:29 hoffman
  937. * Templates/configure, Templates/configure.in: BUG: fix excape of *
  938. for cmake
  939. 2001-07-10 17:57 king
  940. * Source/cmUnixMakefileGenerator.cxx: BUG: When splitting a full
  941. path library into separate -L and -l parts, the -l part may not
  942. have a "lib" prefix on cygwin.
  943. 2001-07-10 16:09 king
  944. * Source/cmake.cxx: ENH: Removing automatic setting of
  945. BUILD_SHARED_LIBS. Projects that support this should explicitly
  946. declare it with the OPTION command, or set its libraries to shared
  947. or static directly on each ADD_LIBRARY command.
  948. 2001-07-10 15:56 berk
  949. * Modules/Dart.cmake: Checking if tclshcommand is defined before
  950. running it.
  951. 2001-07-10 15:46 king
  952. * Source/cmUnixMakefileGenerator.cxx: ENH: Added
  953. -D(library_name)_EXPORTS to build rules for sources that are going
  954. to be linked into a shared library. This allows dllexport setup
  955. for DLL building on cygwin. It may also come in handy in unix in
  956. the future. This corresponds to the same definition added by the
  957. dll dsp template in windows.
  958. 2001-07-10 13:23 martink
  959. * Source/cmBuildNameCommand.cxx: changes to better handle old
  960. values or hand set values
  961. 2001-07-09 16:46 nobody
  962. * DartConfig.cmake: Disabled doxygen and gnats
  963. 2001-07-08 21:54 perera
  964. * Source/cmUnixMakefileGenerator.cxx: BUG: library extension goes
  965. after library name, not before
  966. 2001-07-06 18:41 hoffman
  967. * Source/cmUnixMakefileGenerator.cxx,
  968. Source/cmUnixMakefileGenerator.h: ENH: some clean up, and better
  969. checking to see if we are building cmake
  970. 2001-07-06 18:11 hoffman
  971. * configure, configure.in: ENH: run make depend
  972. 2001-07-06 16:46 will
  973. * Source/cmCommand.h: ERR:Spelling mistake
  974. 2001-07-06 13:22 king
  975. * Source/cmStandardIncludes.h: ENH: Warning 4503 disable for MSVC.
  976. 2001-07-05 22:15 hoffman
  977. * Templates/configure, Templates/configure.in: BUG: fix flags for
  978. cygwin and shared builds
  979. 2001-07-05 21:52 hoffman
  980. * Source/cmSystemTools.cxx: ENH: add better error output
  981. 2001-07-05 16:03 hoffman
  982. * Source/cmUnixMakefileGenerator.cxx, Templates/configure,
  983. Templates/configure.in: BUG: fix solaris problems in install and ar
  984. 2001-07-03 14:53 king
  985. * Source/cmCableWrapTclCommand.cxx: ENH: Removed -fsyntax-only flag
  986. from call to gcc-xml. It should be part of GCCXML_FLAGS.
  987. 2001-07-03 09:27 scottim
  988. * Source/cmDSPWriter.cxx, Templates/CMakeWindowsSystemConfig.cmake,
  989. Templates/DLLHeader.dsptemplate, Templates/EXEHeader.dsptemplate,
  990. Templates/EXEWinHeader.dsptemplate,
  991. Templates/UtilityHeader.dsptemplate,
  992. Templates/staticLibHeader.dsptemplate: Renamed the
  993. ReleaseWithDebugInfo Build configuration to RelWithDebInfo, because
  994. msdev does simple matching on build target, and specifying either
  995. Release or Debug builds would also build ReleaseWithDebugInfo
  996. 2001-07-02 20:52 king
  997. * Source/cmUnixMakefileGenerator.cxx: BUG: When outputting relative
  998. path of .o, the relative path of the source file must also be
  999. written (not full path).
  1000. 2001-07-02 20:30 millerjv
  1001. * Source/cmBuildNameCommand.cxx: FIX: BuildName removes path to
  1002. compiler and converts any illegal characters
  1003. 2001-07-02 19:57 king
  1004. * Source/cmCommands.cxx, Source/cmBuildSharedLibrariesCommand.cxx,
  1005. Source/cmBuildSharedLibrariesCommand.h: ENH: Removed deprecated
  1006. command completely.
  1007. 2001-07-02 19:38 king
  1008. * Source/cmAddLibraryCommand.cxx, Source/cmAddLibraryCommand.h,
  1009. Source/cmDSPWriter.cxx, Source/cmDSPWriter.h,
  1010. Source/cmDSWWriter.cxx, Source/cmMakefile.cxx, Source/cmMakefile.h,
  1011. Source/cmTarget.h, Source/cmUnixMakefileGenerator.cxx,
  1012. Source/cmUnixMakefileGenerator.h: ENH: Added support for selection
  1013. of static/shared build on a per-library basis.
  1014. 2001-07-02 18:38 martink
  1015. * Source/cmake.cxx: better arg support
  1016. 2001-07-02 18:02 berk
  1017. * Source/cmVTKWrapJavaCommand.h, Source/cmVTKWrapPythonCommand.h,
  1018. Source/cmVTKWrapTclCommand.h: Should not be inherited.
  1019. 2001-07-02 18:02 berk
  1020. * Source/cmConfigureFileCommand.cxx: Wrong place for fout
  1021. 2001-07-02 18:02 berk
  1022. * Source/cmVTKWrapJavaCommand.cxx,
  1023. Source/cmVTKWrapPythonCommand.cxx, Source/cmVTKWrapTclCommand.cxx:
  1024. Better error checking.
  1025. 2001-06-29 21:06 martink
  1026. * Web/Art/CMakeLogo.gif: cmake logo for dashboard
  1027. 2001-06-29 20:59 martink
  1028. * Web/Art/CMakeLogo.gif: cmake logo for dashboard
  1029. 2001-06-29 20:55 martink
  1030. * Web/Art/CMakeLogo.gif: cmake logo for dashboard
  1031. 2001-06-29 20:46 martink
  1032. * Source/cmConfigureFileCommand.cxx: better configure file command
  1033. 2001-06-29 20:06 nobody
  1034. * CMakeLists.txt: added logo
  1035. 2001-06-29 17:43 martink
  1036. * Web/Art/CMakeLogo.gif: cmake logo for dashboard
  1037. 2001-06-29 13:53 martink
  1038. * Source/cmaketest.cxx: minor compile fix
  1039. 2001-06-29 13:30 hoffman
  1040. * Source/cmUnixMakefileGenerator.cxx,
  1041. Templates/CMakeSystemConfig.cmake.in, Templates/configure,
  1042. Templates/configure.in: BUG: break up CMAKE_AR into program and
  1043. ARGS
  1044. 2001-06-28 21:45 hoffman
  1045. * configure, configure.in, Source/cmSystemTools.cxx,
  1046. Source/cmUnixMakefileGenerator.cxx, Templates/configure,
  1047. Templates/configure.in: ENH: various fixes to allow bootstrap on
  1048. sunos with CC
  1049. 2001-06-28 20:45 hoffman
  1050. * Source/cmEnableTestingCommand.cxx: fixed Dart issue
  1051. 2001-06-28 19:27 hoffman
  1052. * Templates/CMakeSystemConfig.cmake.in: set values in the cache not
  1053. just the current makefile
  1054. 2001-06-28 19:08 berk
  1055. * Source/FLTKDialog/FLTKPropertyItemRow.cxx: Undefined symbol
  1056. 2001-06-28 19:08 berk
  1057. * Source/cmUnixMakefileGenerator.cxx: Special rules for
  1058. out-of-package source files.
  1059. 2001-06-28 18:53 hoffman
  1060. * Source/FLTKDialog/CMakeLists.txt,
  1061. Source/FLTKDialog/CMakeSetupGUIImplementation.cxx,
  1062. Source/FLTKDialog/FLTKPropertyItemRow.cxx,
  1063. Source/FLTKDialog/FLTKPropertyList.cxx: BUG: fix for sgi compiler
  1064. 2001-06-28 18:38 hoffman
  1065. * Templates/configure, Templates/configure.in: BUG: pass flags to
  1066. compiler during configure
  1067. 2001-06-28 18:27 hoffman
  1068. * Templates/configure, Templates/configure.in: BUG: pass flags to
  1069. compiler during configure
  1070. 2001-06-28 18:01 hoffman
  1071. * Source/cmSourceFilesCommand.cxx: BUG: find files in
  1072. subdirectories
  1073. 2001-06-28 15:40 hoffman
  1074. * Source/cmSystemTools.cxx: BUG: check size of path error, HP
  1075. gcount problem
  1076. 2001-06-28 15:40 hoffman
  1077. * Source/cmStandardIncludes.h: fix for scope on hp
  1078. 2001-06-27 21:19 berk
  1079. * Source/cmSourceFilesCommand.cxx: Added variable expansion.
  1080. 2001-06-27 20:17 martink
  1081. * Source/cmMakefile.h: updated version to 0.3
  1082. 2001-06-27 20:17 martink
  1083. * Source/cmMakefile.h: updated version to 0.2
  1084. 2001-06-27 20:14 martink
  1085. * Source/cmUnixMakefileGenerator.cxx: ENH: fix install when
  1086. executable and lib path set
  1087. 2001-06-27 19:42 hoffman
  1088. * configure, configure.in, Source/CMakeLists.txt,
  1089. Source/cmSystemTools.cxx, Source/cmUnixMakefileGenerator.cxx,
  1090. Source/cmake.cxx, Templates/install-sh: ENH: fix install for
  1091. cygwin, build cmake from configure
  1092. 2001-06-27 19:13 king
  1093. * Source/cmUnixMakefileGenerator.cxx,
  1094. Source/cmUnixMakefileGenerator.h: BUG: Check for building shared
  1095. libraries should read from the make file's setting, not directly
  1096. from the cache.
  1097. 2001-06-27 19:09 king
  1098. * Source/cmDSPWriter.cxx: BUG: Check for building shared libraries
  1099. should read from makefile's setting, not directly from the cache.
  1100. 2001-06-27 17:57 will
  1101. * Web/HTML/Download.html: added binary download
  1102. 2001-06-27 17:12 martink
  1103. * CMake.rtf: updated for 0.2
  1104. 2001-06-27 17:12 martink
  1105. * Source/cmLinkLibrariesCommand.h, Source/cmSubdirCommand.h:
  1106. documentation change
  1107. 2001-06-27 16:09 perera
  1108. * Source/cmUnixMakefileGenerator.cxx: ENH: Use ${MAKE} instead of
  1109. make for dependent library rules
  1110. 2001-06-27 15:49 martink
  1111. * Source/cmCommands.cxx: alphabetized
  1112. 2001-06-27 15:35 martink
  1113. * Source/cmake.cxx: added help options
  1114. 2001-06-27 13:16 martink
  1115. * Source/cmSystemTools.cxx, Source/cmaketest.cxx,
  1116. Source/cmaketest.h.in: minor fixes to testing
  1117. 2001-06-27 13:16 martink
  1118. * CMakeLists.txt: added dependencies for testing
  1119. 2001-06-27 13:16 martink
  1120. * Source/CMakeLists.txt: mod to the testing
  1121. 2001-06-26 20:44 hoffman
  1122. * Source/MFCDialog/PropertyList.cpp: ENH: convert to unix slashes
  1123. on browse, remove font and color junk
  1124. 2001-06-26 20:19 hoffman
  1125. * Source/cmake.dsp: BUG: change to dos mode
  1126. 2001-06-26 17:41 martink
  1127. * Modules/Dart.cmake: update for CMake changes
  1128. 2001-06-26 17:23 martink
  1129. * Source/CMakeLists.txt, Source/cmAddCustomTargetCommand.cxx,
  1130. Source/cmAddCustomTargetCommand.h, Source/cmBuildCommand.cxx,
  1131. Source/MFCDialog/CMakeLists.txt: modified how paths are escaped,
  1132. added depends
  1133. 2001-06-26 14:01 martink
  1134. * Source/cmAddDependenciesCommand.cxx,
  1135. Source/cmAddDependenciesCommand.h, Source/cmCommands.cxx: added add
  1136. dependencies command
  1137. 2001-06-26 13:55 martink
  1138. * Source/MFCDialog/CMakeSetup.rc,
  1139. Source/MFCDialog/CMakeSetupDialog.cpp,
  1140. Source/MFCDialog/CMakeSetupDialog.h: better GUI resize and combo
  1141. box fixes
  1142. 2001-06-25 17:34 millerjv
  1143. * Source/cmBuildNameCommand.cxx, Source/cmSiteNameCommand.cxx: FIX:
  1144. added AddDefinition() to store site name and build name in
  1145. makefile. Also stripped white space from the result of
  1146. hostname.
  1147. 2001-06-25 14:59 martink
  1148. * CMakeLists.txt: made cmake write its execs into CMake/Source
  1149. 2001-06-22 18:53 hoffman
  1150. * Source/cmMakefile.cxx: ENH: put back stdio.h to get sprintf
  1151. 2001-06-22 18:53 hoffman
  1152. * Source/cmUnixMakefileGenerator.cxx: BUG: shared libraries should
  1153. not depend on other shared libraries, they get relinked too often.
  1154. 2001-06-22 18:23 biddi
  1155. * Source/cmCommands.cxx: ERR: Serious problems with my CVS. How did
  1156. this get committed?
  1157. 2001-06-22 16:17 king
  1158. * Source/cmSystemTools.cxx: BUG: Wrote correct implementation of
  1159. cmCopyFile.
  1160. 2001-06-22 16:17 king
  1161. * Source/cmake.cxx: BUG: Fixed generation of cMakeRoot in one case.
  1162. 2001-06-22 16:17 king
  1163. * Source/cmStandardIncludes.h: ENH: Added string.h include.
  1164. 2001-06-22 16:17 king
  1165. * Source/cmMakefile.cxx: ERR: Removed stray standard header
  1166. include. They should be added to cmStandardIncludes.h
  1167. 2001-06-22 16:17 king
  1168. * Source/cmIncludeCommand.cxx: BUG: Added missing newline in error
  1169. message.
  1170. 2001-06-22 15:32 martink
  1171. * Source/cmMakefile.cxx: removed stricmp
  1172. 2001-06-22 15:28 martink
  1173. * Source/CMakeLists.txt: escape quotes on cmaketest.h.in
  1174. 2001-06-22 15:14 martink
  1175. * Source/cmMakefile.cxx, Source/cmMakefile.h: added escape quotes
  1176. option in replace strings
  1177. 2001-06-22 15:14 martink
  1178. * Source/cmConfigureFileCommand.cxx,
  1179. Source/cmConfigureFileCommand.h: added escape quotes option
  1180. 2001-06-22 14:21 martink
  1181. * Source/cmSystemTools.cxx, Source/cmSystemTools.h: added escape
  1182. quote method
  1183. 2001-06-22 13:58 biddi
  1184. * Source/cmCommands.cxx, Source/cmSourceFilesRemoveCommand.cxx,
  1185. Source/cmSourceFilesRemoveCommand.h: ENH: Added new command
  1186. SOURCE_FILES_REMOVE which can be used to take files out of the
  1187. build. Especially useful when certain compilers choke on the odd
  1188. file.
  1189. 2001-06-22 13:47 biddi
  1190. * Source/cmMakefile.cxx, Source/cmMakefile.h: ENH: Added
  1191. RemoveSource(...) to complement AddSource. New command
  1192. SOURCE_FILES_REMOVE uses it and can be used to take files out of
  1193. the build
  1194. 2001-06-22 13:27 martink
  1195. * Source/cmaketest.cxx: namespace issues
  1196. 2001-06-21 21:55 hoffman
  1197. * Source/cmDSWWriter.cxx: allow no name project
  1198. 2001-06-21 21:52 martink
  1199. * Source/cmSystemTools.cxx, Source/cmSystemTools.h: adde
  1200. changeDirectory
  1201. 2001-06-21 21:52 martink
  1202. * Source/CMakeLists.txt: better testing
  1203. 2001-06-21 21:52 martink
  1204. * Source/cmaketest.cxx, Source/cmaketest.h.in: new test driver
  1205. 2001-06-21 21:52 martink
  1206. * Tests/Simple/CMakeLists.txt, Tests/Simple/simple.cxx: new tests
  1207. 2001-06-21 21:41 hoffman
  1208. * Source/cmake.cxx: BUG: fix for unix
  1209. 2001-06-21 21:25 hoffman
  1210. * Source/cmake.cxx: ENH: clean up
  1211. 2001-06-21 21:20 hoffman
  1212. * Source/cmake.cxx: ENH: look in the PREFIX dir for the modules
  1213. 2001-06-21 20:34 hoffman
  1214. * Source/cmConfigure.cmake.h.in, Source/cmake.cxx: ENH: better
  1215. ability to find cmake program
  1216. 2001-06-21 19:57 martink
  1217. * Templates/CMakeLists.txt: minor install fix
  1218. 2001-06-21 19:54 martink
  1219. * Source/cmUnixMakefileGenerator.cxx: better permission handling
  1220. 2001-06-21 19:02 king
  1221. * Source/cmIncludeRegularExpressionCommand.cxx,
  1222. Source/cmIncludeRegularExpressionCommand.h,
  1223. Source/cmMakeDepend.cxx, Source/cmMakeDepend.h,
  1224. Source/cmMakefile.cxx, Source/cmMakefile.h,
  1225. Source/cmUnixMakefileGenerator.cxx: ENH: Extended
  1226. INCLUDE_REGULAR_EXPRESSION to allow selective complaints about
  1227. missing dependencies.
  1228. 2001-06-21 19:02 king
  1229. * Source/CMakeLists.txt: ENH: Added BUILD_FLTK_GUI option (defaults
  1230. to ON).
  1231. 2001-06-21 17:48 hoffman
  1232. * Source/CMakeLists.txt, Source/cmSourceFile.cxx,
  1233. Source/cmStandardIncludes.h: BUG: fix bootstrap build on unix
  1234. 2001-06-21 16:43 ibanez
  1235. * Source/FLTKDialog/CMakeSetupGUIImplementation.cxx,
  1236. Source/FLTKDialog/FLTKPropertyItemRow.cxx,
  1237. Source/FLTKDialog/FLTKPropertyItemRow.h: ENH: Update the
  1238. cacheManager from the GUI after each callback. Only load the
  1239. cache from disk if the binary path has changed.
  1240. 2001-06-21 16:31 hoffman
  1241. * CMakeLists.txt: ENH: add include regexp
  1242. 2001-06-21 16:19 martink
  1243. * Source/FLTKDialog/CMakeLists.txt: added install target
  1244. 2001-06-21 16:01 martink
  1245. * CMakeLists.txt, Makefile.in, configure, configure.in, install-sh,
  1246. Modules/CMakeLists.txt, Source/cmInstallFilesCommand.cxx,
  1247. Source/cmInstallFilesCommand.h, Source/cmSystemTools.cxx,
  1248. Source/cmSystemTools.h, Source/cmake.cxx, Templates/CMakeLists.txt,
  1249. Templates/install-sh: better install support
  1250. 2001-06-21 14:58 hoffman
  1251. * Templates/CMakeSystemConfig.cmake.in: BUG: remove quotes
  1252. 2001-06-21 14:36 hoffman
  1253. * Source/cmIncludeCommand.cxx, Source/cmIncludeCommand.h: ENH: add
  1254. optional include and only allow one file per INCLUDE
  1255. 2001-06-21 14:17 ibanez
  1256. * Source/FLTKDialog/CMakeSetupGUIImplementation.cxx: ENH: INTERNAL
  1257. properties are not display any longer in the GUI
  1258. 2001-06-21 13:56 ibanez
  1259. * Source/FLTKDialog/FLTKPropertyItemRow.cxx: ENH: The cache is not
  1260. saved now after every modification of the GUI
  1261. 2001-06-21 13:45 ibanez
  1262. * Source/FLTKDialog/CMakeSetupGUIImplementation.cxx,
  1263. Source/FLTKDialog/FLTKPropertyItemRow.cxx: ENH: Clearing and
  1264. redrawing the property list after a build to load the new cache.
  1265. 2001-06-21 12:41 ibanez
  1266. * Source/FLTKDialog/CMakeSetupGUIImplementation.cxx,
  1267. Source/FLTKDialog/FLTKPropertyItemRow.cxx,
  1268. Source/FLTKDialog/FLTKPropertyItemRow.h,
  1269. Source/FLTKDialog/FLTKPropertyList.cxx,
  1270. Source/FLTKDialog/FLTKPropertyList.h: ENH: PropertyRows have now a
  1271. reference to CMakeSetupGUI and save the cache at each callback
  1272. action
  1273. 2001-06-21 11:35 ibanez
  1274. * Source/FLTKDialog/FLTKPropertyNameButtonWithHelp.h,
  1275. Source/FLTKDialog/FLTKPropertyNameButtonWithHelp.cxx: Removed: now
  1276. the help string is managed by the PropertyRow class
  1277. 2001-06-21 11:35 ibanez
  1278. * Source/FLTKDialog/CMakeLists.txt,
  1279. Source/FLTKDialog/CMakeSetupGUI.cxx,
  1280. Source/FLTKDialog/CMakeSetupGUI.fl,
  1281. Source/FLTKDialog/CMakeSetupGUI.h,
  1282. Source/FLTKDialog/CMakeSetupGUIImplementation.cxx,
  1283. Source/FLTKDialog/FLTKPropertyItemRow.cxx,
  1284. Source/FLTKDialog/FLTKPropertyItemRow.h: ENH: PropertyNameButton
  1285. was removed. PropertyRow manages all the callbacks now
  1286. 2001-06-20 21:03 hoffman
  1287. * Source/FLTKDialog/CMakeLists.txt,
  1288. Source/MFCDialog/CMakeLists.txt: ENH: add CMakeSetup as a target
  1289. 2001-06-20 20:49 hoffman
  1290. * Source/CMakeLists.txt, Source/cmDSPWriter.cxx,
  1291. Templates/DLLHeader.dsptemplate, Templates/EXEHeader.dsptemplate,
  1292. Templates/EXEWinHeader.dsptemplate,
  1293. Templates/staticLibHeader.dsptemplate: ENH: boot strap mfc gui and
  1294. support for MFC
  1295. 2001-06-20 17:56 hoffman
  1296. * Source/CMakeLists.txt, Source/cmConfigure.cmake.h.in,
  1297. Source/cmSourceFile.cxx, Source/cmStandardIncludes.h,
  1298. Source/cmake.cxx, Source/FLTKDialog/CMakeLists.txt,
  1299. Source/FLTKDialog/CMakeSetupGUIImplementation.cxx,
  1300. Templates/CMakeSystemConfig.cmake.in, Templates/configure,
  1301. Templates/configure.in: ENH: fix cmake so it can boot strap itself
  1302. better
  1303. 2001-06-19 20:29 hoffman
  1304. * Modules/FindFLTK.cmake: [no log message]
  1305. 2001-06-19 20:10 hoffman
  1306. * Source/CMakeLists.txt, Source/FLTKDialog/CMakeLists.txt,
  1307. Source/FLTKDialog/CMakeSetupGUIImplementation.cxx,
  1308. Source/FLTKDialog/FLTKPropertyNameButtonWithHelp.cxx: ENH: build
  1309. fltk cmake on unix with bootstrap
  1310. 2001-06-19 20:05 king
  1311. * Makefile.in: BUG: Exectuable installation must set permissions to
  1312. 755 in case installer has a umask like 007.
  1313. 2001-06-19 19:50 king
  1314. * Source/cmBuildSharedLibrariesCommand.cxx, Source/cmake.cxx: ENH:
  1315. CMake now always adds the BUILD_SHARED_LIBS cache entry. The
  1316. BUILD_SHARED_LIBRARIES command that used to be used is now
  1317. deprecated.
  1318. 2001-06-19 19:49 hoffman
  1319. * Source/FLTKDialog/CMakeLists.txt: ENH: add bootstrap support for
  1320. building fltk
  1321. 2001-06-19 19:33 hoffman
  1322. * Source/CMakeLists.txt, Source/FLTKDialog/CMakeSetupGUI.cxx,
  1323. Source/MFCDialog/CMakeSetupDialog.cpp: ENH: add bootstrap support
  1324. for building fltk
  1325. 2001-06-19 18:32 hoffman
  1326. * Source/MFCDialog/CMakeDialog.h, Source/MFCDialog/CMakeSetup.rc,
  1327. Source/MFCDialog/CMakeSetupDialog.cpp,
  1328. Source/MFCDialog/CMakeSetupDialog.h, Source/MFCDialog/resource.h:
  1329. ENH: add resize ability to dialog and fix tab stop orders
  1330. 2001-06-19 16:01 king
  1331. * Source/cmOutputRequiredFilesCommand.cxx: ERR: Removed unused
  1332. variable.
  1333. 2001-06-19 16:01 king
  1334. * Source/cmCableCloseNamespaceCommand.cxx,
  1335. Source/cmCableCloseNamespaceCommand.h, Source/cmCableCommand.cxx,
  1336. Source/cmCableCommand.h, Source/cmCableData.cxx,
  1337. Source/cmCableData.h, Source/cmCableDefineSetCommand.cxx,
  1338. Source/cmCableDefineSetCommand.h,
  1339. Source/cmCableInstantiateClassCommand.cxx,
  1340. Source/cmCableInstantiateClassCommand.h,
  1341. Source/cmCableInstantiateCommand.cxx,
  1342. Source/cmCableInstantiateCommand.h,
  1343. Source/cmCableOpenNamespaceCommand.cxx,
  1344. Source/cmCableOpenNamespaceCommand.h,
  1345. Source/cmCablePackageCommand.cxx, Source/cmCablePackageCommand.h,
  1346. Source/cmCablePackageEntryCommand.cxx,
  1347. Source/cmCablePackageEntryCommand.h,
  1348. Source/cmCableSourceFilesCommand.cxx,
  1349. Source/cmCableSourceFilesCommand.h, Source/cmCableWrapCommand.cxx,
  1350. Source/cmCableWrapCommand.h, Source/cmCommands.cxx: ENH: Removing
  1351. old-style cable commands related to the instantiation functionality
  1352. which has now been removed from cable.
  1353. 2001-06-19 11:41 millerjv
  1354. * Source/cmAddTestCommand.cxx, Source/cmEnableTestingCommand.cxx:
  1355. ENH: Changed generated filename to DartTestfile.txt
  1356. 2001-06-18 21:26 hoffman
  1357. * Source/cmSystemTools.cxx: BUG: use pclose not fclose
  1358. 2001-06-18 20:54 perera
  1359. * Source/cmLinkLibrariesCommand.cxx: ENH: LINK_LIBRARIES(abc) will
  1360. automatically add the path to abc to the link directories, if the
  1361. path is known.
  1362. 2001-06-18 19:35 hoffman
  1363. * Source/cmUnixMakefileGenerator.cxx: BUG: remove unused
  1364. 2001-06-18 19:31 hoffman
  1365. * Source/cmUnixMakefileGenerator.cxx: BUG: create directories in
  1366. the right place
  1367. 2001-06-18 19:31 hoffman
  1368. * Source/cmake.cxx: ENH: move EXECUTABLE_OUTPUT_PATH and
  1369. LIBRARY_OUTPUT_PATH initial creation to after the CMakeLists.txt
  1370. files have been parsed
  1371. 2001-06-18 17:16 martink
  1372. * Modules/Dart.cmake: out of source dart support
  1373. 2001-06-15 21:57 hoffman
  1374. * Source/cmUnixMakefileGenerator.cxx: ENH: do not add anything from
  1375. the current directory to the depends
  1376. 2001-06-15 14:35 perera
  1377. * Source/cmUnixMakefileGenerator.cxx: BUG: fixed so that empty
  1378. library paths are ignored
  1379. 2001-06-15 11:49 ibanez
  1380. * Source/FLTKDialog/Makefile.in: ENH: Getting headers and libs for
  1381. FLTK and OpenGL
  1382. 2001-06-15 11:49 ibanez
  1383. * Source/FLTKDialog/CMakeSetupGUIImplementation.cxx,
  1384. Source/FLTKDialog/CMakeSetupGUIImplementation.h,
  1385. Source/FLTKDialog/FLTKDialog.cxx,
  1386. Source/FLTKDialog/FLTKPropertyNameButtonWithHelp.cxx: ENH: Absolute
  1387. path to cmake resolved
  1388. 2001-06-15 11:40 will
  1389. * Web/HTML/Features.html: ENH:Added features
  1390. 2001-06-15 11:34 will
  1391. * Web/HTML/About.html, Web/HTML/Features.html,
  1392. Web/HTML/SideBar.html: ENH:Added features
  1393. 2001-06-15 11:24 will
  1394. * Web/index.html, Web/HTML/Sponsors.html: Updated ASCI link
  1395. 2001-06-14 21:29 king
  1396. * Web/HTML/Download.html: ENH: Updated anonymous checkout commands
  1397. for new repository root location.
  1398. 2001-06-14 21:06 biddi
  1399. * Source/cmSourceFile.cxx: ERR: allow *.cpp as well as *.cxx etc
  1400. etc
  1401. 2001-06-14 18:32 berk
  1402. * Source/FLTKDialog/CMakeSetupGUIImplementation.cxx,
  1403. Source/FLTKDialog/FLTKPropertyItemRow.cxx,
  1404. Source/FLTKDialog/FLTKPropertyItemRow.h,
  1405. Source/FLTKDialog/FLTKPropertyList.cxx,
  1406. Source/FLTKDialog/FLTKPropertyNameButtonWithHelp.cxx,
  1407. Source/FLTKDialog/FLTKPropertyNameButtonWithHelp.h: Include
  1408. directory names are Case sensitive in Unix.
  1409. 2001-06-14 16:48 will
  1410. * Web/HTML/Sponsors.html: Refined Jim Ahrens changes
  1411. 2001-06-14 16:42 will
  1412. * Web/index.html, Web/HTML/Sponsors.html, Web/Art/asci.gif,
  1413. Web/Art/asci_little.gif: Feedback from Jim Ahrens
  1414. 2001-06-14 15:45 martink
  1415. * Source/CMakeLib.dsp: added make depend on win32
  1416. 2001-06-14 14:19 hoffman
  1417. * Source/cmUnixMakefileGenerator.cxx: BUG: fix it so that if a
  1418. Makefile is out of date for some reason, it is only built once, it
  1419. was doing it twice.
  1420. 2001-06-14 13:10 martink
  1421. * CMakeLists.txt, DartConfig.cmake: modified testing
  1422. 2001-06-13 21:50 hoffman
  1423. * Source/cmUnixMakefileGenerator.cxx: BUG: fix so it does not jump
  1424. into the current directory for inital target builds
  1425. 2001-06-13 21:03 hoffman
  1426. * Source/cmUnixMakefileGenerator.cxx,
  1427. Source/cmUnixMakefileGenerator.h, Source/cmake.cxx: ENH: fix
  1428. EXECUTABLE_OUTPUT_PATH and LIBRARY_OUTPUT_PATH for unix
  1429. 2001-06-13 20:15 martink
  1430. * Modules/FindDart.cmake: used to find the dart testing system
  1431. 2001-06-13 18:49 martink
  1432. * CMakeLists.txt: minor dart change
  1433. 2001-06-13 17:53 martink
  1434. * Source/cmTarget.cxx, Source/cmTarget.h: duh
  1435. 2001-06-13 17:49 martink
  1436. * CMakeLists.txt, Source/cmTarget.cxx, Source/cmTarget.h: minor cvs
  1437. web changeCMakeLists.txt
  1438. 2001-06-13 14:28 ibanez
  1439. * Source/FLTKDialog/CMakeSetupGUIImplementation.cxx: ENH: Search
  1440. for cmake executable full path added (window/unix)
  1441. 2001-06-13 13:37 will
  1442. * Web/HTML/SideBar.html: Added dashboard
  1443. 2001-06-13 04:16 ibanez
  1444. * Source/FLTKDialog/FLTKPropertyItemRow.cxx,
  1445. Source/FLTKDialog/FLTKPropertyItemRow.h,
  1446. Source/FLTKDialog/FLTKPropertyList.cxx,
  1447. Source/FLTKDialog/FLTKPropertyList.h,
  1448. Source/FLTKDialog/FLTKPropertyNameButtonWithHelp.cxx,
  1449. Source/FLTKDialog/FLTKPropertyNameButtonWithHelp.h: ENH: Added
  1450. popup menu for removing a property. Some style changes
  1451. 2001-06-12 22:43 ibanez
  1452. * Source/FLTKDialog/FLTKPropertyItemRow.cxx,
  1453. Source/FLTKDialog/FLTKPropertyItemRow.h,
  1454. Source/FLTKDialog/Makefile.in: ENH: Added help blobs that popup
  1455. when the mouse is left on top of the property name
  1456. 2001-06-12 22:43 ibanez
  1457. * Source/FLTKDialog/FLTKPropertyNameButtonWithHelp.cxx,
  1458. Source/FLTKDialog/FLTKPropertyNameButtonWithHelp.h: Class derived
  1459. from Fl_Button with added help blobs
  1460. 2001-06-12 18:15 perera
  1461. * Source/cmUnixMakefileGenerator.cxx, Templates/configure,
  1462. Templates/configure.in: BUG: SHLIB_LINK was being used when linking
  1463. static executables. Missing comma in RUNTIME_FLAG for IRIX. ENH:
  1464. User supplied SHLIB_CFLAGS (-fPIC, etc) will override configure
  1465. detected flags
  1466. 2001-06-12 17:30 martink
  1467. * CMakeLists.txt, Source/CMakeLists.txt: support testing
  1468. 2001-06-12 16:20 king
  1469. * Source/cmUnixMakefileGenerator.cxx: BUG: CMake's configure needs
  1470. to run with the current directory as the project's binary
  1471. directory.
  1472. 2001-06-12 16:20 king
  1473. * Source/FLTKDialog/CMakeSetupGUI.h,
  1474. Source/FLTKDialog/CMakeSetupGUIImplementation.cxx,
  1475. Source/FLTKDialog/CMakeSetupGUIImplementation.h: ERR: Needed
  1476. virtual destructor to correspond to virtual functions. Also added
  1477. several std:: qualifiers to string.
  1478. 2001-06-12 15:55 martink
  1479. * Source/cmakemain.cxx, Source/cmakemain.cxx: cmake does not
  1480. require two arguments
  1481. 2001-06-12 15:12 martink
  1482. * Source/cmCommands.cxx: removed old added new
  1483. 2001-06-12 15:08 martink
  1484. * Source/cmOutputRequiredFilesCommand.cxx,
  1485. Source/cmOutputRequiredFilesCommand.h: added new command
  1486. 2001-06-12 15:08 martink
  1487. * Source/cmCommands.cxx: removed old added new
  1488. 2001-06-12 15:08 martink
  1489. * Source/cmConfigureFileNoAutoconf.cxx,
  1490. Source/cmConfigureFileNoAutoconf.h, Source/cmTestsCommand.cxx,
  1491. Source/cmTestsCommand.h: removed old commands
  1492. 2001-06-12 14:59 king
  1493. * Source/cmMakeDepend.cxx, Source/cmUnixMakefileGenerator.cxx: BUG:
  1494. Dependency hints must be removed by the makefile generator before
  1495. adding the dependencies generated by cmMakeDepend.
  1496. 2001-06-12 14:45 perera
  1497. * Source/cmUnixMakefileGenerator.cxx: BUG: There was no dependency
  1498. for library targets on their required libraries. (Hopefully there
  1499. aren't any cyclic dependencies for libraries.) CMAKE_SHLIB_LINK is
  1500. now used for executable targets.
  1501. 2001-06-12 13:00 martink
  1502. * Source/cmMakeDepend.h, Source/cmUnixMakefileGenerator.cxx,
  1503. Source/cmUnixMakefileGenerator.h, Source/cmMakeDepend.cxx: some
  1504. cleanup to the make depend process
  1505. 2001-06-12 12:34 ibanez
  1506. * Source/FLTKDialog/CMakeSetupGUI.cxx,
  1507. Source/FLTKDialog/CMakeSetupGUI.fl,
  1508. Source/FLTKDialog/CMakeSetupGUI.h,
  1509. Source/FLTKDialog/CMakeSetupGUIImplementation.cxx,
  1510. Source/FLTKDialog/CMakeSetupGUIImplementation.h,
  1511. Source/FLTKDialog/FLTKPropertyItemRow.cxx: ENH: Paths are now
  1512. expanded for environment variables and made absolute. The
  1513. binary directory is created if it doesn't exist.
  1514. 2001-06-12 12:30 king
  1515. * Source/cmUnixMakefileGenerator.cxx: BUG: WIN32_EXECUTABLE targets
  1516. were not being installed on unix properly. They are supposed to be
  1517. treated just like any other EXECUTABLE target.
  1518. 2001-06-12 12:30 king
  1519. * Source/cmake.cxx: ERR: int -> unsigned int.
  1520. 2001-06-12 01:50 ibanez
  1521. * Modules/FindFLTK.cmake: ENH: Added the path used in SuSe Linux
  1522. 7.1
  1523. 2001-06-11 23:14 millerjv
  1524. * Modules/Dart.cmake: Modified for new Dart source tree
  1525. 2001-06-11 22:00 martink
  1526. * Source/cmake.cxx, Source/MFCDialog/CMakeSetupDialog.cpp: minor
  1527. fix in error checking
  1528. 2001-06-11 21:09 king
  1529. * Modules/FindTCL.cmake: ENH: Added check for tcl8.4 (as against
  1530. tcl84), tcl8.3, tcl8.2, and tcl8.0 when finding the TCL_LIBRARY.
  1531. 2001-06-11 20:47 martink
  1532. * Source/cmMakefile.h: added some const versions of get methods
  1533. 2001-06-11 19:28 millerjv
  1534. * Modules/Testing.cmake: Changed Testing.cmake to Dart.cmake
  1535. 2001-06-11 19:28 millerjv
  1536. * Modules/Dart.cmake: Rename Testing.cmake to Dart.cmake
  1537. 2001-06-11 14:18 king
  1538. * Source/cmSystemTools.cxx: BUG: Fixed regular expression used to
  1539. match registry entries. The expression now matches everything
  1540. after a [HKEY until the first ']' is encountered.
  1541. 2001-06-11 06:10 ibanez
  1542. * Source/FLTKDialog/CMakeSetupGUIImplementation.cxx: ENH: Waiting
  1543. cursor color were reversed
  1544. 2001-06-11 05:20 ibanez
  1545. * Source/FLTKDialog/CMakeSetupGUIImplementation.cxx,
  1546. Source/FLTKDialog/CMakeSetupGUIImplementation.h: ENH: CMake
  1547. invokation is working.
  1548. 2001-06-11 01:36 ibanez
  1549. * Source/FLTKDialog/CMakeSetupGUIImplementation.cxx,
  1550. Source/FLTKDialog/CMakeSetupGUIImplementation.h: ENH: Cache saving
  1551. added
  1552. 2001-06-10 22:19 ibanez
  1553. * Source/FLTKDialog/CMakeSetupGUI.cxx,
  1554. Source/FLTKDialog/CMakeSetupGUIImplementation.cxx,
  1555. Source/FLTKDialog/FLTKDialog.cxx,
  1556. Source/FLTKDialog/FLTKPropertyItemRow.cxx,
  1557. Source/FLTKDialog/FLTKPropertyList.cxx: ENH: cpp renamed cxx. Copy
  1558. of data to and from the GUI is working
  1559. 2001-06-10 22:19 ibanez
  1560. * Source/FLTKDialog/FLTKPropertyItemRow.h: Class to manage
  1561. every row in the GUI scrolling, corresponding to a
  1562. single property
  1563. 2001-06-10 22:19 ibanez
  1564. * Source/FLTKDialog/Makefile.in: Template for the Makefile
  1565. 2001-06-10 22:19 ibanez
  1566. * Source/FLTKDialog/CMakeSetupGUI.fl,
  1567. Source/FLTKDialog/CMakeSetupGUI.h,
  1568. Source/FLTKDialog/CMakeSetupGUIImplementation.h,
  1569. Source/FLTKDialog/FLTKPropertyList.h: ENH: Added Fl_Tiles as row
  1570. for holding property data. Data to and from the GUI is working
  1571. 2001-06-10 22:19 ibanez
  1572. * Source/cmSystemTools.cxx: DOC: Added a comment about the risk of
  1573. using tempnam in Unix, as opposed to using mkstemp.
  1574. 2001-06-10 22:19 ibanez
  1575. * Source/FLTKDialog/CMakeSetupGUI.cpp,
  1576. Source/FLTKDialog/CMakeSetupGUIImplementation.cpp,
  1577. Source/FLTKDialog/FLTKPropertyList.cpp,
  1578. Source/FLTKDialog/FLTKDialog.cpp: .cpp renamed as .cxx
  1579. 2001-06-10 00:54 king
  1580. * Source/cmCableWrapTclCommand.cxx: BUG: Changed custom command
  1581. generation to not use full path of output file from cable.
  1582. 2001-06-08 18:38 king
  1583. * Source/cmDSPWriter.cxx: BUG: Removed generation of stray # Begin
  1584. Custom Build line.
  1585. 2001-06-08 18:38 king
  1586. * Source/cmCableWrapTclCommand.cxx, Source/cmCableWrapTclCommand.h:
  1587. ENH: Added proper request for/generation of CABLE, GCCXML, and
  1588. GCCXML_FLAGS cache entries. This also allowed the correct
  1589. generation of gccxml rules.
  1590. 2001-06-08 15:28 will
  1591. * Web/HTML/Documentation.html, Web/HTML/Documentation.html,
  1592. Web/HTML/Documentation.html, Web/HTML/Documentation.html:
  1593. Documentation updated
  1594. 2001-06-08 04:18 perera
  1595. * Source/cmUnixMakefileGenerator.cxx,
  1596. Templates/CMakeSystemConfig.cmake.in, Templates/configure,
  1597. Templates/configure.in: ENH: Runtime library search paths can be
  1598. added to the link lines for on shared builds.
  1599. 2001-06-07 20:48 martink
  1600. * CMake.pdf.gz: replaced with pdf version
  1601. 2001-06-07 20:45 will
  1602. * CMake.pdf: updated docs
  1603. 2001-06-07 20:34 martink
  1604. * CMake.doc.gz: checked in rtf version
  1605. 2001-06-07 20:24 martink
  1606. * CMake.rtf: updated docs
  1607. 2001-06-07 18:52 hoffman
  1608. * Source/cmAddTestCommand.cxx, Source/cmCablePackageCommand.cxx,
  1609. Source/cmCableWrapTclCommand.cxx, Source/cmCacheManager.cxx,
  1610. Source/cmCacheManager.h, Source/cmDSWWriter.cxx,
  1611. Source/cmMakefile.cxx, Source/cmMakefile.h, Source/cmSystemTools.h,
  1612. Source/cmTarget.h, Source/cmUnixMakefileGenerator.cxx,
  1613. Source/cmUtilitySourceCommand.cxx, Source/cmVTKWrapJavaCommand.cxx,
  1614. Source/cmVTKWrapPythonCommand.cxx, Source/cmVTKWrapTclCommand.cxx,
  1615. Source/cmake.cxx, Source/MFCDialog/CMakeSetupDialog.cpp,
  1616. Templates/CMakeWindowsSystemConfig.cmake: ENH: move utilities to
  1617. targets from makefile, and add versioning to cache
  1618. 2001-06-07 16:22 king
  1619. * Source/cmEnableTestingCommand.cxx: BUG: ENABLE_TESTING command
  1620. may need to create output directory before writing the
  1621. CMakeTestfile into it since it is invoked before the makefile
  1622. generator runs.
  1623. 2001-06-07 15:36 scottim
  1624. * Source/cmDSPWriter.cxx, Templates/CMakeWindowsSystemConfig.cmake,
  1625. Templates/DLLHeader.dsptemplate, Templates/EXEHeader.dsptemplate,
  1626. Templates/EXEWinHeader.dsptemplate,
  1627. Templates/UtilityHeader.dsptemplate,
  1628. Templates/staticLibHeader.dsptemplate: adding a "Release with
  1629. debugging Info" build to CMake for NT
  1630. 2001-06-07 14:16 king
  1631. * Source/cmCableWrapTclCommand.cxx: ERR: Fixed generation of source
  1632. name and directory for cmSourceFiles of generated Tcl wrapper
  1633. files. Changed extension of generated gcc-xml input c++ file to be
  1634. .cc so that GCC will recognize it, but MsDev will still allow a
  1635. custom command on it.
  1636. 2001-06-07 12:50 millerjv
  1637. * Source/cmConfigureFileNoAutoconf.cxx: FIX: Chaned error message
  1638. to match command
  1639. 2001-06-06 20:45 king
  1640. * Source/cmCableWrapTclCommand.cxx: ENH: Changed generation of
  1641. gccxml command to write out define and include flags explicitly
  1642. instead of using CMAKE_CXX_FLAGS and INCLUDE_FLAGS variables. This
  1643. should help it run when gccxml is not the compiler that will build
  1644. the generated wrappers.
  1645. 2001-06-06 20:14 millerjv
  1646. * Source/cmAddTestCommand.cxx: FIX: InitialPass() seg fault on
  1647. std::copy and FinalPass() was not appending to the file
  1648. 2001-06-06 17:58 martink
  1649. * Source/cmAddTestCommand.cxx, Source/cmAddTestCommand.h,
  1650. Source/cmCommands.cxx, Source/cmConfigureFileNoAutoconf.cxx,
  1651. Source/cmEnableTestingCommand.cxx, Source/cmEnableTestingCommand.h,
  1652. Source/cmMakefile.cxx, Source/cmMakefile.h,
  1653. Source/cmTestsCommand.cxx: added enable testing deprecated some
  1654. commands
  1655. 2001-06-06 17:55 hoffman
  1656. * Source/CMakeLib.dsp: [no log message]
  1657. 2001-06-06 17:48 hoffman
  1658. * Source/cmDSPMakefile.cxx, Source/cmDSPMakefile.h,
  1659. Source/cmDSPWriter.cxx, Source/cmDSPWriter.h,
  1660. Source/cmDSWMakefile.cxx, Source/cmDSWMakefile.h,
  1661. Source/cmDSWWriter.cxx, Source/cmDSWWriter.h,
  1662. Source/cmMSProjectGenerator.cxx, Source/cmMSProjectGenerator.h:
  1663. ENH: rename DSWMakefile and DSPMakefile to DSWWriter and DSPWriter
  1664. 2001-06-06 17:37 will
  1665. * Web/HTML/About.html, Web/HTML/Documentation.html: ENH:Some more
  1666. tweaks
  1667. 2001-06-06 17:18 hoffman
  1668. * Source/cmAbstractFilesCommand.cxx,
  1669. Source/cmAbstractFilesCommand.h,
  1670. Source/cmAddCustomTargetCommand.cxx,
  1671. Source/cmAddCustomTargetCommand.h,
  1672. Source/cmAddDefinitionsCommand.cxx,
  1673. Source/cmAddDefinitionsCommand.h,
  1674. Source/cmAddExecutableCommand.cxx, Source/cmAddExecutableCommand.h,
  1675. Source/cmAddLibraryCommand.cxx, Source/cmAddLibraryCommand.h,
  1676. Source/cmAddTestCommand.cxx, Source/cmAddTestCommand.h,
  1677. Source/cmAuxSourceDirectoryCommand.cxx,
  1678. Source/cmAuxSourceDirectoryCommand.h, Source/cmBuildCommand.cxx,
  1679. Source/cmBuildCommand.h, Source/cmBuildNameCommand.cxx,
  1680. Source/cmBuildNameCommand.h,
  1681. Source/cmBuildSharedLibrariesCommand.cxx,
  1682. Source/cmBuildSharedLibrariesCommand.h,
  1683. Source/cmCableClassSetCommand.cxx, Source/cmCableClassSetCommand.h,
  1684. Source/cmCableCloseNamespaceCommand.cxx,
  1685. Source/cmCableCloseNamespaceCommand.h,
  1686. Source/cmCableDefineSetCommand.cxx,
  1687. Source/cmCableDefineSetCommand.h,
  1688. Source/cmCableOpenNamespaceCommand.cxx,
  1689. Source/cmCableOpenNamespaceCommand.h,
  1690. Source/cmCablePackageCommand.cxx, Source/cmCablePackageCommand.h,
  1691. Source/cmCablePackageEntryCommand.cxx,
  1692. Source/cmCablePackageEntryCommand.h,
  1693. Source/cmCableWrapTclCommand.cxx, Source/cmCableWrapTclCommand.h,
  1694. Source/cmCommand.h, Source/cmConfigureFileCommand.cxx,
  1695. Source/cmConfigureFileCommand.h,
  1696. Source/cmConfigureFileNoAutoconf.cxx,
  1697. Source/cmConfigureFileNoAutoconf.h, Source/cmElseCommand.cxx,
  1698. Source/cmElseCommand.h, Source/cmEndIfCommand.cxx,
  1699. Source/cmEndIfCommand.h, Source/cmExecProgramCommand.cxx,
  1700. Source/cmExecProgramCommand.h, Source/cmFindFileCommand.cxx,
  1701. Source/cmFindFileCommand.h, Source/cmFindLibraryCommand.cxx,
  1702. Source/cmFindLibraryCommand.h, Source/cmFindPathCommand.cxx,
  1703. Source/cmFindPathCommand.h, Source/cmFindProgramCommand.cxx,
  1704. Source/cmFindProgramCommand.h,
  1705. Source/cmGetFilenameComponentCommand.cxx,
  1706. Source/cmGetFilenameComponentCommand.h, Source/cmIfCommand.cxx,
  1707. Source/cmIfCommand.h, Source/cmIncludeCommand.cxx,
  1708. Source/cmIncludeCommand.h, Source/cmIncludeDirectoryCommand.cxx,
  1709. Source/cmIncludeDirectoryCommand.h,
  1710. Source/cmIncludeRegularExpressionCommand.cxx,
  1711. Source/cmIncludeRegularExpressionCommand.h,
  1712. Source/cmInstallFilesCommand.cxx, Source/cmInstallFilesCommand.h,
  1713. Source/cmInstallTargetsCommand.cxx,
  1714. Source/cmInstallTargetsCommand.h, Source/cmLibraryCommand.h,
  1715. Source/cmLinkDirectoriesCommand.cxx,
  1716. Source/cmLinkDirectoriesCommand.h,
  1717. Source/cmLinkLibrariesCommand.cxx, Source/cmLinkLibrariesCommand.h,
  1718. Source/cmLoadCacheCommand.cxx, Source/cmLoadCacheCommand.h,
  1719. Source/cmMakeDirectoryCommand.cxx, Source/cmMakeDirectoryCommand.h,
  1720. Source/cmMakefile.cxx, Source/cmMessageCommand.cxx,
  1721. Source/cmMessageCommand.h, Source/cmOptionCommand.cxx,
  1722. Source/cmOptionCommand.h, Source/cmProjectCommand.cxx,
  1723. Source/cmProjectCommand.h, Source/cmSetCommand.cxx,
  1724. Source/cmSetCommand.h, Source/cmSiteNameCommand.cxx,
  1725. Source/cmSiteNameCommand.h, Source/cmSourceFilesCommand.cxx,
  1726. Source/cmSourceFilesCommand.h, Source/cmSourceGroupCommand.cxx,
  1727. Source/cmSourceGroupCommand.h, Source/cmSubdirCommand.cxx,
  1728. Source/cmSubdirCommand.h, Source/cmTargetLinkLibrariesCommand.cxx,
  1729. Source/cmTargetLinkLibrariesCommand.h, Source/cmTestsCommand.cxx,
  1730. Source/cmTestsCommand.h, Source/cmUtilitySourceCommand.cxx,
  1731. Source/cmUtilitySourceCommand.h, Source/cmVTKWrapJavaCommand.cxx,
  1732. Source/cmVTKWrapJavaCommand.h, Source/cmVTKWrapPythonCommand.cxx,
  1733. Source/cmVTKWrapPythonCommand.h, Source/cmVTKWrapTclCommand.cxx,
  1734. Source/cmVTKWrapTclCommand.h, Source/cmWrapExcludeFilesCommand.cxx,
  1735. Source/cmWrapExcludeFilesCommand.h: ENH: rename Invoke to
  1736. InitialPass
  1737. 2001-06-06 17:18 hoffman
  1738. * Source/MFCDialog/PropertyList.cpp: BUG: PATH options should not
  1739. remove the file part of the path...
  1740. 2001-06-06 15:02 millerjv
  1741. * Source/cmMakefile.cxx: Change name of file created from Testfile
  1742. to CMakeTestfile.txt
  1743. 2001-06-06 14:29 will
  1744. * Web/HTML/Examples.html: ENH:More tweaks
  1745. 2001-06-06 14:25 will
  1746. * Web/HTML/Download.html, Web/HTML/Install.html,
  1747. Web/HTML/SideBar.html: ENH:More tweaks
  1748. 2001-06-06 14:11 will
  1749. * Web/Art/CMakeGUI.jpg, Web/HTML/About.html,
  1750. Web/HTML/Documentation.html, Web/HTML/Examples.html,
  1751. Web/HTML/SideBar.html, Web/HTML/Sponsors.html, Web/HTML/Table.html,
  1752. Web/HTML/cmakeExample.tar.gz: ENH:Some enhancements to the examples
  1753. 2001-06-06 13:43 martink
  1754. * Source/cmSystemTools.cxx: better regexp for reg entries
  1755. 2001-06-06 13:43 martink
  1756. * Modules/FindJNI.cmake: better tests
  1757. 2001-06-06 13:07 will
  1758. * Web/Art/CMakeBanner.jpg: Didn't kb
  1759. 2001-06-06 13:07 will
  1760. * Web/Art/CMakeBanner.jpg: ERR:Didn't -kb
  1761. 2001-06-06 12:49 will
  1762. * Web/index.html, Web/Art/CMakeBanner.jpg, Web/Art/CMakeBanner.psd,
  1763. Web/Art/CMakeLogo.ppt, Web/Art/CMakeLogo.psd, Web/Art/SideBar.jpg,
  1764. Web/Art/SideBar.psd, Web/Art/acl.gif,
  1765. Web/Art/itkLogoSmallTransparentBackground.gif,
  1766. Web/Art/nlm_logo.gif, Web/Art/swooshSmall.gif, Web/HTML/About.html,
  1767. Web/HTML/Documentation.html, Web/HTML/Download.html,
  1768. Web/HTML/Examples.html, Web/HTML/FAQ.html, Web/HTML/Head.html,
  1769. Web/HTML/MailingLists.html, Web/HTML/News.html,
  1770. Web/HTML/SideBar.html, Web/HTML/Sponsors.html, Web/HTML/Style.css,
  1771. Web/HTML/Table.html, Web/HTML/Testing.html: ENH:First incarnation
  1772. of web pages
  1773. 2001-06-06 11:47 millerjv
  1774. * Source/cmMakefile.cxx: FIX: forgot to close the files
  1775. 2001-06-06 02:54 perera
  1776. * Source/cmUnixMakefileGenerator.cxx: ENH: Compress the library
  1777. search directories so that each appears only once.
  1778. 2001-06-06 00:32 millerjv
  1779. * Source/cmMakefile.cxx, Source/cmMakefile.h: ENH: Added AddTest,
  1780. and GenerateTestfile routines
  1781. 2001-06-06 00:32 millerjv
  1782. * Source/cmCommands.cxx: ENH: Added AddTest command
  1783. 2001-06-06 00:32 millerjv
  1784. * Source/cmAddTestCommand.cxx, Source/cmAddTestCommand.h: New cmake
  1785. command to specify a single test
  1786. 2001-06-05 21:46 berk
  1787. * Source/cmVTKWrapPythonCommand.cxx: Module name between Unix and
  1788. Windows got switched by mistake.
  1789. 2001-06-05 21:41 biddi
  1790. * Source/cmSystemTools.cxx, Source/cmSystemTools.h: ENH: Some
  1791. tweaks, hacks and #ifdefs required to compile cmake on Borland
  1792. C++Builder
  1793. 2001-06-05 21:26 hoffman
  1794. * Source/MFCDialog/CMakeSetup.dsp: ENH: add PathDialog
  1795. 2001-06-05 21:26 hoffman
  1796. * Source/MFCDialog/CMakeSetupDialog.cpp,
  1797. Source/MFCDialog/PathDialog.cpp, Source/MFCDialog/PathDialog.h,
  1798. Source/MFCDialog/PropertyList.cpp: ENH: add better path chooser
  1799. dialog
  1800. 2001-06-05 19:48 hoffman
  1801. * Source/cmDSPMakefile.cxx, Source/cmDSPWriter.cxx: BUG: fix EXE
  1802. and LIB path problems
  1803. 2001-06-04 22:23 hoffman
  1804. * Source/cmDSWMakefile.cxx, Source/cmDSWWriter.cxx: STYLE: line too
  1805. long
  1806. 2001-06-04 22:23 hoffman
  1807. * Source/cmMessageCommand.cxx: ENH: print all arguments
  1808. 2001-06-04 22:23 hoffman
  1809. * Source/cmSetCommand.cxx: ENH: add better error checking
  1810. 2001-06-04 21:16 martink
  1811. * Source/cmFindIncludeCommand.cxx, Source/cmFindIncludeCommand.h:
  1812. removed find include command
  1813. 2001-06-04 21:16 martink
  1814. * Source/cmCommands.cxx: removed find include command finally added
  1815. message
  1816. 2001-06-04 20:55 martink
  1817. * Source/cmSystemTools.cxx, Source/cmSystemTools.h: new message
  1818. command
  1819. 2001-06-04 20:55 martink
  1820. * Source/cmMessageCommand.cxx, Source/cmMessageCommand.h: new
  1821. command
  1822. 2001-06-04 20:45 martink
  1823. * Source/cmVTKWrapPythonCommand.cxx: unused variable
  1824. 2001-06-04 19:46 barre
  1825. * Templates/DLLHeader.dsptemplate, Templates/EXEHeader.dsptemplate,
  1826. Templates/EXEWinHeader.dsptemplate,
  1827. Templates/UtilityHeader.dsptemplate,
  1828. Templates/staticLibHeader.dsptemplate: the "Release" target is not
  1829. the default.
  1830. 2001-06-04 15:34 hoffman
  1831. * Source/cmGeneratedFileStream.h,
  1832. Source/cmUnixMakefileGenerator.cxx: ENH: try to better handle
  1833. control-c during make Makefiles
  1834. 2001-06-04 14:18 hoffman
  1835. * Source/cmCacheManager.cxx, Source/cmDSWMakefile.cxx,
  1836. Source/cmDSWWriter.cxx, Source/cmFunctionBlocker.h,
  1837. Source/cmMSProjectGenerator.cxx, Source/cmMakefile.cxx,
  1838. Source/cmMakefileGenerator.h,
  1839. Source/MFCDialog/CMakeSetupDialog.cpp: BUG: clean up memory leaks.
  1840. 2001-06-01 17:54 martink
  1841. * Source/cmDSPMakefile.cxx, Source/cmDSPWriter.cxx: fix for network
  1842. includ paths
  1843. 2001-06-01 17:29 berk
  1844. * Source/cmVTKWrapPythonCommand.cxx: Fixing the module name for
  1845. Unix.
  1846. 2001-05-31 19:48 hoffman
  1847. * Source/cmake.cxx, Source/MFCDialog/CMakeSetupDialog.cpp: BUG: fix
  1848. edit of directories
  1849. 2001-05-31 18:15 berk
  1850. * Source/cmVTKWrapPythonCommand.cxx: Should not use decl if not on
  1851. Windows.
  1852. 2001-05-30 19:56 hoffman
  1853. * Source/cmakemain.cxx: BUG: add missing file
  1854. 2001-05-30 19:36 hoffman
  1855. * Source/MFCDialog/CMakeSetupDialog.cpp: ENH: remove unused
  1856. includes
  1857. 2001-05-30 19:28 hoffman
  1858. * Source/CMakeLib.dsp, Source/Makefile.in,
  1859. Source/cmMSProjectGenerator.cxx, Source/cmake.cxx,
  1860. Source/cmake.dsp, Source/cmake.h, Source/MFCDialog/CMakeSetup.dsp,
  1861. Source/MFCDialog/CMakeSetupDialog.cpp,
  1862. Source/MFCDialog/CMakeSetupDialog.h: ENH: change MFC gui to use
  1863. cmake class
  1864. 2001-05-29 18:16 perera
  1865. * Source/cmUnixMakefileGenerator.cxx: BUG: Now only one makefile
  1866. rule is generated per depenency. This eliminates a number of
  1867. warnings.
  1868. 2001-05-25 21:19 geoff
  1869. * Source/cmSetCommand.cxx: bug meaning that set(a b) just set a to
  1870. "" and not to b
  1871. 2001-05-25 19:32 king
  1872. * Source/cmUnixMakefileGenerator.cxx: BUG: WIN32 executable target
  1873. rules are now generated in unix the same as any other executable
  1874. (instead of not at all).
  1875. 2001-05-25 19:32 king
  1876. * Source/cmSystemTools.cxx: BUG: Fixed stupid error in the hack I
  1877. just checked in.
  1878. 2001-05-25 19:27 barre
  1879. * Source/MFCDialog/PropertyList.cpp: display the property name in
  1880. the help box
  1881. 2001-05-25 19:27 barre
  1882. * Templates/CMakeWindowsSystemConfig.cmake: better help
  1883. 2001-05-25 18:31 king
  1884. * Source/cmSystemTools.cxx: BUG: Added hack to
  1885. cmSystemTools::GetPath to make its algorithm correctly parse off
  1886. the last entry of the system PATH environment variable.
  1887. 2001-05-25 18:27 king
  1888. * Source/cmUnixMakefileGenerator.cxx: BUG: Fixed logic that splits
  1889. a full path library link into the -L and -l pieces to not write out
  1890. a -l by itself if the file regular expression does not match.
  1891. 2001-05-25 11:31 millerjv
  1892. * Modules/Testing.cmake: BUG: missing quote on a custom command
  1893. 2001-05-25 01:11 barre
  1894. * Source/cmFindPathCommand.cxx: The path found is now collapsed
  1895. (cleaner).
  1896. 2001-05-25 01:11 barre
  1897. * Source/CMakeLib.dsp: Welcome to cmGetFilenameComponentCommand
  1898. 2001-05-25 01:11 barre
  1899. * Source/cmGetFilenameComponentCommand.cxx,
  1900. Source/cmGetFilenameComponentCommand.h, Source/cmCommands.cxx:
  1901. Welcome to cmGetFilenameComponentCommand ("Get a specific component
  1902. of a full filename")
  1903. 2001-05-25 01:11 barre
  1904. * Source/cmSystemTools.cxx, Source/cmSystemTools.h: New functions
  1905. used to extract the components of a full filename.
  1906. 2001-05-25 01:11 barre
  1907. * Modules/FindTCL.cmake: Try to find tclsh or wish and use that
  1908. path to find the include or lib directory. TK_INTERNAL_PATH is
  1909. searched too (path to tkWinInt.h)
  1910. 2001-05-24 23:17 barre
  1911. * Source/cmSystemTools.cxx: optimize ConvertToUnixSlashes a little
  1912. bit, and use it in MakeDirectory (code was duplicated)
  1913. 2001-05-24 21:51 king
  1914. * Templates/CMakeSystemConfig.cmake.in: ERR: VAR type entry missing
  1915. after CACHE for CMAKE_TEMPLATE_FLAGS.
  1916. 2001-05-24 18:59 barre
  1917. * Source/cmVTKWrapTclCommand.cxx, Source/cmVTKWrapTclCommand.h:
  1918. updated to handle Tk commands compiled/linked separately. Useful
  1919. for VTK Tk widgets for example.
  1920. 2001-05-24 17:45 millerjv
  1921. * Modules/Testing.cmake: Project independent setting for testing
  1922. 2001-05-24 17:40 barre
  1923. * Source/cmSystemTools.cxx, Source/cmSystemTools.h: new Capitalized
  1924. function. Will be used in the VTK Tcl wrapper for example (in a
  1925. more portable way).
  1926. 2001-05-24 17:35 hoffman
  1927. * Source/MFCDialog/CMakeSetup.rc: [no log message]
  1928. 2001-05-24 16:57 hoffman
  1929. * Modules/FindOpenGL.cmake, Source/cmSetCommand.cxx,
  1930. Source/cmSetCommand.h, Source/MFCDialog/CMakeSetup.rc,
  1931. Source/MFCDialog/CMakeSetupDialog.cpp,
  1932. Templates/CMakeSystemConfig.cmake.in,
  1933. Templates/CMakeWindowsSystemConfig.cmake: ENH: change the syntax of
  1934. the SET command, fix the combo box for larger strings
  1935. 2001-05-24 15:47 martink
  1936. * Source/cmMakefile.h, Source/cmake.cxx,
  1937. Source/MFCDialog/CMakeSetup.rc,
  1938. Source/MFCDialog/CMakeSetupDialog.cpp, Source/MFCDialog/resource.h:
  1939. added version number
  1940. 2001-05-24 14:32 barre
  1941. * Templates/DLLHeader.dsptemplate: removed hardcoded VTKDLL
  1942. 2001-05-24 14:00 barre
  1943. * Templates/DLLHeader.dsptemplate, Templates/EXEHeader.dsptemplate,
  1944. Templates/EXEWinHeader.dsptemplate,
  1945. Templates/staticLibHeader.dsptemplate: slight change in the order
  1946. of the options (right-most takes precedence)
  1947. 2001-05-24 00:16 millerjv
  1948. * Source/cmBuildCommand.cxx: Changed Windows build command to build
  1949. Release
  1950. 2001-05-23 22:31 barre
  1951. * Templates/DLLHeader.dsptemplate: Intermediate Dir was wrong
  1952. 2001-05-23 22:22 barre
  1953. * Templates/CMakeWindowsSystemConfig.cmake: /Gz => /GZ
  1954. 2001-05-23 22:19 barre
  1955. * Templates/CMakeWindowsSystemConfig.cmake: removed /O2 from debug
  1956. 2001-05-23 21:19 hoffman
  1957. * Source/cmDSPMakefile.cxx, Source/cmDSPWriter.cxx,
  1958. Templates/CMakeWindowsSystemConfig.cmake,
  1959. Templates/DLLHeader.dsptemplate, Templates/EXEHeader.dsptemplate,
  1960. Templates/EXEWinHeader.dsptemplate,
  1961. Templates/staticLibHeader.dsptemplate: ENH: create
  1962. CMAKE_CXX_FLAGS_[Buildtype] flags
  1963. 2001-05-23 20:33 hoffman
  1964. * Source/MFCDialog/CMakeSetupDialog.cpp: add compute systeminfo
  1965. 2001-05-23 20:31 martink
  1966. * Source/cmMSProjectGenerator.cxx: bug finding windows template
  1967. file
  1968. 2001-05-23 20:28 martink
  1969. * Source/cmSystemTools.cxx, Source/cmake.cxx: command line fixes
  1970. for win32
  1971. 2001-05-23 20:09 barre
  1972. * Templates/DLLHeader.dsptemplate, Templates/EXEHeader.dsptemplate,
  1973. Templates/EXEWinHeader.dsptemplate,
  1974. Templates/UtilityHeader.dsptemplate,
  1975. Templates/staticLibHeader.dsptemplate: ReleaseMinSize => MinSizeRel
  1976. 2001-05-23 19:53 hoffman
  1977. * Templates/DLLHeader.dsptemplate: BUG: remove vtkCommon
  1978. 2001-05-23 19:49 martink
  1979. * Source/cmake.cxx: fixed quoted cmake
  1980. 2001-05-23 18:44 hoffman
  1981. * Source/cmSystemTools.cxx: ENH: add better error message
  1982. 2001-05-23 18:33 geoff
  1983. * Source/cmake.dsp: DSPs have to be binary
  1984. 2001-05-23 18:05 hoffman
  1985. * Templates/DLLHeader.dsptemplate, Templates/EXEHeader.dsptemplate,
  1986. Templates/EXEWinHeader.dsptemplate,
  1987. Templates/UtilityHeader.dsptemplate,
  1988. Templates/staticLibHeader.dsptemplate: ENH: change Release Minsize
  1989. to MinSizeRel, add MinSizeRel to dll template
  1990. 2001-05-23 17:16 king
  1991. * Source/cmDSPMakefile.cxx, Source/cmDSPWriter.cxx: ENH: Added
  1992. INSTALL target to switch in OutputDSPFile. Also added a default
  1993. that prints out an error message so that anyone who adds a target
  1994. doesn't forget to update the switch.
  1995. 2001-05-23 16:02 martink
  1996. * Source/cmDSPMakefile.cxx, Source/cmDSPWriter.cxx,
  1997. Source/cmDSWMakefile.cxx, Source/cmDSWWriter.cxx: install fixes for
  1998. win32
  1999. 2001-05-23 15:53 martink
  2000. * Source/cmMakefile.cxx, Source/cmUnixMakefileGenerator.cxx,
  2001. Source/cmUnixMakefileGenerator.h: added install target support
  2002. 2001-05-23 15:34 ibanez
  2003. * Modules/FindVTK.cmake: Module to search for VTK include and
  2004. library paths
  2005. 2001-05-23 15:27 martink
  2006. * Templates/CMakeSystemConfig.cmake.in: added prefix to config
  2007. 2001-05-23 15:27 martink
  2008. * Source/cmInstallFilesCommand.cxx, Source/cmInstallFilesCommand.h,
  2009. Source/cmInstallTargetsCommand.cxx,
  2010. Source/cmInstallTargetsCommand.h, Source/cmCommands.cxx,
  2011. Source/cmTarget.cxx, Source/cmTarget.h: added install rules
  2012. 2001-05-23 14:47 hoffman
  2013. * Source/cmGeneratedFileStream.h: BUG: remove warning
  2014. 2001-05-23 14:47 hoffman
  2015. * Source/cmake.dsp: BUG: fix output directory
  2016. 2001-05-23 14:01 martink
  2017. * Source/cmProjectCommand.cxx: added PROJECT_SOURCE_DIR
  2018. 2001-05-23 13:35 hoffman
  2019. * Source/cmTarget.cxx: ENH: allow duplicate libraries
  2020. 2001-05-23 00:44 barre
  2021. * Templates/UtilityHeader.dsptemplate: Template now uses
  2022. EXECUTABLE_OUTPUT_PATH too.
  2023. 2001-05-23 00:44 barre
  2024. * Templates/EXEWinHeader.dsptemplate: PROP BASE and PROP were
  2025. inverted
  2026. 2001-05-23 00:36 barre
  2027. * Source/cmDSPMakefile.cxx, Source/cmDSPWriter.cxx: Seems to me
  2028. that EXEWinHeader was not searched in the right place.
  2029. 2001-05-22 21:49 hoffman
  2030. * Source/cmUnixMakefileGenerator.cxx: BUG: do not include /usr/lib
  2031. in -L
  2032. 2001-05-22 17:52 hoffman
  2033. * Source/Makefile.in: fix CXXFLAGS
  2034. 2001-05-22 17:40 hoffman
  2035. * Source/Makefile.in: [no log message]
  2036. 2001-05-22 17:40 hoffman
  2037. * configure, configure.in: use cxxflags in test builds
  2038. 2001-05-22 17:22 hoffman
  2039. * Source/Makefile.in, Source/cmUnixMakefileGenerator.cxx,
  2040. Templates/configure, Templates/configure.in: BUG: fix depends and
  2041. CXXFLAGS passing
  2042. 2001-05-22 16:38 barre
  2043. * Source/cmDSPMakefile.cxx, Source/cmDSPWriter.cxx,
  2044. Templates/DLLHeader.dsptemplate, Templates/EXEHeader.dsptemplate,
  2045. Templates/EXEWinHeader.dsptemplate,
  2046. Templates/staticLibHeader.dsptemplate: fixed some of the
  2047. LIBRARY_OUTPUT_PATH and EXECUTABLE_OUTPUT_PATH problems.
  2048. 2001-05-22 15:15 martink
  2049. * dummy.in: no longer used
  2050. 2001-05-22 14:41 ibanez
  2051. * Source/FLTKDialog/FLTKPropertyList.cpp,
  2052. Source/FLTKDialog/FLTKPropertyList.h: Class to manage the list
  2053. of properties displayed on the scroller
  2054. 2001-05-22 14:41 ibanez
  2055. * Source/FLTKDialog/CMakeSetupGUIImplementation.cpp,
  2056. Source/FLTKDialog/CMakeSetupGUIImplementation.h: ENH: Added support
  2057. for the fltk::PropertyList class
  2058. 2001-05-22 14:41 ibanez
  2059. * Source/FLTKDialog/CMakeSetupGUI.cpp,
  2060. Source/FLTKDialog/CMakeSetupGUI.fl,
  2061. Source/FLTKDialog/CMakeSetupGUI.h: Added interactions with the
  2062. PropertyList class
  2063. 2001-05-22 14:41 ibanez
  2064. * Source/FLTKDialog/FLTKDialog.dsp: ENH: PropertyList class added
  2065. 2001-05-21 20:43 king
  2066. * Makefile.in: ERR: Added missing @srcdir@ and modified install
  2067. expressions to include *.cmake* files instead of just *.cmake files
  2068. (for .in).
  2069. 2001-05-21 20:21 king
  2070. * Source/cmCableWrapTclCommand.cxx: ENH: Converted to new Class and
  2071. Group tags in place of WrapperSet and Groups tags.
  2072. 2001-05-21 20:10 hoffman
  2073. * Source/cmUnixMakefileGenerator.cxx,
  2074. Templates/CMakeSystemConfig.cmake.in: fix for hp x11 and gl
  2075. 2001-05-21 19:16 hoffman
  2076. * Modules/FindOpenGL.cmake, Source/cmSystemTools.cxx: fix opengl on
  2077. hp
  2078. 2001-05-21 18:42 martink
  2079. * Source/MFCDialog/CMakeSetup.rc,
  2080. Source/MFCDialog/res/CMakeSetupDialog.ico: icon updates
  2081. 2001-05-21 18:36 martink
  2082. * Source/MFCDialog/CMakeSetup.rc, Source/MFCDialog/resource.h: new
  2083. icon
  2084. 2001-05-21 18:17 hoffman
  2085. * Source/cmake.cxx: BUG: remove declaration without variable
  2086. 2001-05-21 18:01 hoffman
  2087. * configure, configure.in, Source/Makefile.in,
  2088. Source/cmBuildNameCommand.cxx, Source/cmUnixMakefileGenerator.cxx,
  2089. Templates/CMakeSystemConfig.cmake.in: clean up for build on its own
  2090. 2001-05-21 15:43 martink
  2091. * Source/cmake.dsp: release fix
  2092. 2001-05-21 15:32 martink
  2093. * Source/CMakeBuildTargets.cxx, Source/CMakeSetupCMD.cxx,
  2094. Source/CMakeSetupCMD.dsp: collapsed into cmake.cxx
  2095. 2001-05-21 15:32 martink
  2096. * Source/cmake.dsp: new dsp
  2097. 2001-05-21 15:13 martink
  2098. * Source/cmake.cxx: bug fix in finding CMAKE_ROOT
  2099. 2001-05-21 15:10 martink
  2100. * Makefile.in: added install target
  2101. 2001-05-21 14:47 hoffman
  2102. * Source/cmBuildNameCommand.cxx, Source/cmSetCommand.cxx,
  2103. Source/MFCDialog/CMakeDialog.h, Source/MFCDialog/CMakeSetup.rc,
  2104. Source/MFCDialog/CMakeSetupDialog.cpp,
  2105. Source/MFCDialog/CMakeSetupDialog.h, Source/MFCDialog/resource.h:
  2106. BUG: fix compiler name
  2107. 2001-05-21 13:50 martink
  2108. * Source/CMakeSetup.dsw, Source/cmake.cxx,
  2109. Source/MFCDialog/CMakeSetupDialog.cpp: updated for out of tree
  2110. builds
  2111. 2001-05-21 13:31 martink
  2112. * Makefile.in, configure, configure.in, install-sh: out of place
  2113. cmake
  2114. 2001-05-21 13:31 martink
  2115. * CMakeSystemConfig.cmake.in, configure.in.sample,
  2116. Source/Makefile.in, Source/cmMakefile.cxx,
  2117. Source/cmUnixMakefileGenerator.cxx, Source/cmake.cxx: new out of
  2118. place builds
  2119. 2001-05-21 13:31 martink
  2120. * Templates/CMakeSystemConfig.cmake.in, Templates/configure,
  2121. Templates/configure.in: new structure
  2122. 2001-05-18 20:45 hoffman
  2123. * CMakeSystemConfig.cmake.in, Source/cmUnixMakefileGenerator.cxx:
  2124. ENH: add support for X11
  2125. 2001-05-18 20:30 martink
  2126. * Source/cmUnixMakefileGenerator.cxx: duh
  2127. 2001-05-18 19:20 martink
  2128. * Source/cmMSProjectGenerator.cxx: compiler fix
  2129. 2001-05-18 19:20 martink
  2130. * Source/cmSystemTools.h: minor whitespace change
  2131. 2001-05-18 19:20 martink
  2132. * Source/cmake.cxx, Source/cmake.h: new command
  2133. 2001-05-18 19:20 martink
  2134. * Source/cmMSProjectGenerator.cxx, Source/cmMSProjectGenerator.h,
  2135. Source/cmMakefileGenerator.h, Source/cmUnixMakefileGenerator.cxx,
  2136. Source/cmUnixMakefileGenerator.h: changes for cmake to live outside
  2137. of the source tree
  2138. 2001-05-18 17:04 hoffman
  2139. * CMakeSystemConfig.cmake.in, Source/cmSetCommand.cxx: ENH: allow
  2140. cache to override config file
  2141. 2001-05-18 15:48 king
  2142. * Source/cmUnixMakefileGenerator.cxx: BUG: fix link of executables
  2143. 2001-05-18 15:09 martink
  2144. * Source/cmMSProjectGenerator.cxx, Source/cmMSProjectGenerator.h,
  2145. Source/cmUnixMakefileGenerator.cxx,
  2146. Source/cmUnixMakefileGenerator.h, Source/cmMakefileGenerator.h:
  2147. added SetLocal method
  2148. 2001-05-18 14:15 hoffman
  2149. * CMakeSystemConfig.cmake.in, Source/cmUnixMakefileGenerator.cxx:
  2150. BUG: quote the compiler and other options
  2151. 2001-05-17 21:43 hoffman
  2152. * Source/CMakeBuildTargets.cxx, Source/Makefile.in: compile source
  2153. dir into cmake
  2154. 2001-05-17 19:48 will
  2155. * Source/cmSystemTools.cxx: ERR:Bad #ifdef's
  2156. 2001-05-17 16:36 ibanez
  2157. * Source/FLTKDialog/FLTKDialog.cpp: ENH: Load the cache at start
  2158. 2001-05-17 16:36 ibanez
  2159. * Source/FLTKDialog/CMakeSetupGUIImplementation.cpp: ENH: Added
  2160. Methods for loading the cache
  2161. 2001-05-17 16:36 ibanez
  2162. * Source/FLTKDialog/CMakeSetupGUIImplementation.h: ENH: Added
  2163. methods to load the cache
  2164. 2001-05-17 16:36 martink
  2165. * Source/DLLFooter.dsptemplate, Source/DLLHeader.dsptemplate,
  2166. Source/EXEFooter.dsptemplate, Source/EXEHeader.dsptemplate,
  2167. Source/EXEWinHeader.dsptemplate, Source/UtilityFooter.dsptemplate,
  2168. Source/UtilityHeader.dsptemplate,
  2169. Source/staticLibFooter.dsptemplate,
  2170. Source/staticLibHeader.dsptemplate: moved into Template directory
  2171. 2001-05-17 16:25 martink
  2172. * CMakeMakefileTemplate.in, CMakeMaster.make.in,
  2173. CMakeRules.make.in, CMakeSimpleRules.make.in, CMakeTargets.make.in,
  2174. CMakeTopMakefileTemplate.in, CMakeVariables.make.in,
  2175. CMakeWindowsSystemConfig.cmake: no longer used
  2176. 2001-05-17 16:14 martink
  2177. * Source/CMakeBuildTargets.cxx: unix fix
  2178. 2001-05-17 16:08 martink
  2179. * Source/CMakeBuildTargets.cxx, Source/CMakeSetupCMD.cxx,
  2180. Source/cmCablePackageCommand.cxx, Source/cmDSPMakefile.cxx,
  2181. Source/cmDSPWriter.cxx, Source/cmMakefile.cxx,
  2182. Source/cmUnixMakefileGenerator.cxx,
  2183. Source/MFCDialog/CMakeSetupDialog.cpp: half checked in changes for
  2184. CMAKE_ROOT
  2185. 2001-05-17 16:04 martink
  2186. * Templates/CMakeWindowsSystemConfig.cmake,
  2187. Templates/DLLFooter.dsptemplate, Templates/DLLHeader.dsptemplate,
  2188. Templates/EXEFooter.dsptemplate, Templates/EXEHeader.dsptemplate,
  2189. Templates/EXEWinHeader.dsptemplate,
  2190. Templates/UtilityFooter.dsptemplate,
  2191. Templates/UtilityHeader.dsptemplate,
  2192. Templates/staticLibFooter.dsptemplate,
  2193. Templates/staticLibHeader.dsptemplate: new directory
  2194. 2001-05-17 15:58 ibanez
  2195. * Source/FLTKDialog/FLTKDialog.dsp: VC++ Project file to
  2196. construct the FLTK GUI for CMake
  2197. 2001-05-17 15:58 ibanez
  2198. * Source/FLTKDialog/CMakeSetupGUIImplementation.cpp,
  2199. Source/FLTKDialog/CMakeSetupGUIImplementation.h:
  2200. Implementation of the virtual Callbacks declared in the GUI
  2201. 2001-05-17 15:58 ibanez
  2202. * Source/FLTKDialog/CMakeSetupGUI.fl: GUI description file
  2203. used by FLTK interactive tool : FLUID
  2204. 2001-05-17 15:58 ibanez
  2205. * Source/FLTKDialog/CMakeSetupGUI.cpp,
  2206. Source/FLTKDialog/CMakeSetupGUI.h: File generated by FLTK
  2207. FLUID containing the implementation of the GUI
  2208. 2001-05-17 15:58 ibanez
  2209. * Source/FLTKDialog/FLTKDialog.cpp: Main file that
  2210. instantiates the GUI class and run it.
  2211. 2001-05-17 15:44 hoffman
  2212. * Source/cmCableWrapTclCommand.cxx, Source/cmConfigure.h.in,
  2213. Source/cmGeneratedFileStream.h, Source/cmStandardIncludes.h: BUG:
  2214. fix to compile on hp with aCC
  2215. 2001-05-17 15:22 king
  2216. * Source/cmCableWrapTclCommand.cxx: Renamed gccxml input/output
  2217. files to drop _tcl qualification.
  2218. 2001-05-16 22:08 hoffman
  2219. * Source/cmCacheManager.cxx, Source/cmUnixMakefileGenerator.cxx:
  2220. BUG: fix for sun compiler
  2221. 2001-05-16 22:08 hoffman
  2222. * CMakeSystemConfig.cmake.in: ENH: fix for sunCC
  2223. 2001-05-16 21:43 king
  2224. * Source/cmCableClassSet.cxx, Source/cmCableClassSet.h: ERR:
  2225. Removed use of member templates.
  2226. 2001-05-16 21:18 king
  2227. * Source/cmGeneratedFileStream.h: ERR: const error fixed.
  2228. 2001-05-16 21:18 king
  2229. * Source/cmUnixMakefileGenerator.cxx: ERR: int -> unsigned int
  2230. 2001-05-16 21:11 king
  2231. * Source/cmGeneratedFileStream.h: ERR: Added is_open() check in
  2232. cmGeneratedFileStream::operator bool() so that implicit conversion
  2233. to bool is not used.
  2234. 2001-05-16 21:11 king
  2235. * Source/cmCableClassSet.cxx: ERR: Removed dynamic_cast so that
  2236. RTTI isn't required.
  2237. 2001-05-16 21:11 king
  2238. * Source/CMakeLib.dsp: ENH: Added cmCableClassSet.cxx to build.
  2239. 2001-05-16 20:40 king
  2240. * Source/Makefile.in, Source/cmCableClassSet.cxx,
  2241. Source/cmCableClassSet.h, Source/cmCableClassSetCommand.cxx,
  2242. Source/cmCableClassSetCommand.h, Source/cmCableWrapTclCommand.cxx,
  2243. Source/cmCableWrapTclCommand.h, Source/cmCommands.cxx: ENH: Adding
  2244. CABLE_CLASS_SET and CABLE_WRAP_TCL commands. They cannot yet be
  2245. used with the main branch of CABLE, though.
  2246. 2001-05-16 20:40 king
  2247. * Source/cmGeneratedFileStream.h: ENH: cmGeneratedFileStream class
  2248. added to simplify copy-if-different usage on generated files.
  2249. 2001-05-16 19:43 hoffman
  2250. * configure.in.sample: [no log message]
  2251. 2001-05-16 19:15 hoffman
  2252. * CMakeSystemConfig.cmake.in, Source/Makefile.in,
  2253. Source/cmBuildNameCommand.cxx,
  2254. Source/cmBuildSharedLibrariesCommand.cxx,
  2255. Source/cmCacheManager.cxx, Source/cmCacheManager.h,
  2256. Source/cmDSPMakefile.cxx, Source/cmDSPWriter.cxx,
  2257. Source/cmMakeDepend.cxx, Source/cmMakefile.cxx,
  2258. Source/cmProjectCommand.cxx, Source/cmSetCommand.cxx,
  2259. Source/cmUnixMakefileGenerator.cxx,
  2260. Source/cmUnixMakefileGenerator.h,
  2261. Source/MFCDialog/CMakeSetupDialog.cpp: ENH: unify make process on
  2262. unix
  2263. 2001-05-16 13:19 king
  2264. * Source/cmData.h, Source/cmMakefile.cxx, Source/cmMakefile.h: ENH:
  2265. Added cmData and corresponding DataMap in cmMakefile to allow
  2266. commands to register arbitrary extra data with the makefile without
  2267. modifying the cmMakefile class definition.
  2268. 2001-05-15 17:14 martink
  2269. * Source/DLLHeader.dsptemplate, Source/EXEHeader.dsptemplate,
  2270. Source/EXEWinHeader.dsptemplate, Source/cmDSPMakefile.cxx,
  2271. Source/cmDSPWriter.cxx, Source/staticLibHeader.dsptemplate: added
  2272. output directory support
  2273. 2001-05-14 20:46 barre
  2274. * Source/cmSystemTools.cxx: Changed separator between registry key
  2275. and its value. Change regexp for registry key.
  2276. 2001-05-14 20:46 barre
  2277. * Modules/FindTCL.cmake: Changed separator between registry key and
  2278. its value.
  2279. 2001-05-14 14:36 hoffman
  2280. * Source/cmSystemTools.cxx: ENH: put back lost changes from r1.38
  2281. 2001-05-12 11:29 barre
  2282. * Source/cmSystemTools.cxx: fix + => += bug reported by A. Perera
  2283. 2001-05-11 21:41 barre
  2284. * Source/MFCDialog/res/CMakeSetupDialog.ico: I know, there are more
  2285. serious things to do :) A new icon. The previous one has not be
  2286. overwritten, it's in there too.
  2287. 2001-05-11 21:22 barre
  2288. * Source/cmSystemTools.cxx: Extended the registry key regexp
  2289. 2001-05-11 21:11 barre
  2290. * Modules/FindTCL.cmake: Add 8.4 and registry support
  2291. 2001-05-11 21:11 barre
  2292. * Source/cmSystemTools.cxx: Add support for a specific value name
  2293. in a registry key
  2294. 2001-05-11 18:49 geoff
  2295. * Source/cmCacheManager.cxx: Cache file is a bit prettier
  2296. 2001-05-11 18:39 hoffman
  2297. * Source/cmCableSourceFilesCommand.cxx, Source/cmSystemTools.cxx,
  2298. Source/cmUnixMakefileGenerator.cxx: BUG: fix find library for unix
  2299. 2001-05-11 17:58 barre
  2300. * Modules/FindPythonLibs.cmake: NAMES syntax
  2301. 2001-05-11 17:52 martink
  2302. * Source/cmDSPMakefile.cxx, Source/cmDSPWriter.cxx: fix for
  2303. expanding library vars
  2304. 2001-05-11 16:30 barre
  2305. * Source/cmFindLibraryCommand.cxx: Fix help string when NAMES was
  2306. used (forgot the case when there is no name)
  2307. 2001-05-11 16:13 barre
  2308. * Source/cmFindLibraryCommand.cxx: Fix help string when NAMES was
  2309. used
  2310. 2001-05-11 15:45 king
  2311. * Source/cmFindLibraryCommand.cxx: ERR: int -> unsigned int.
  2312. 2001-05-11 15:39 hoffman
  2313. * CMakeVariables.make.in, Source/cmFindLibraryCommand.cxx: BUG: add
  2314. back thread library
  2315. 2001-05-11 15:07 martink
  2316. * Source/cmFindProgramCommand.cxx: expands reg values
  2317. 2001-05-11 14:52 martink
  2318. * Source/EXEHeader.dsptemplate, Source/cmAddExecutableCommand.cxx,
  2319. Source/cmAddExecutableCommand.h, Source/cmDSPMakefile.cxx,
  2320. Source/cmDSPMakefile.h, Source/cmDSPWriter.cxx,
  2321. Source/cmDSPWriter.h, Source/cmFindLibraryCommand.cxx,
  2322. Source/cmFindPathCommand.cxx, Source/cmMakefile.cxx,
  2323. Source/cmMakefile.h, Source/cmSystemTools.cxx,
  2324. Source/cmSystemTools.h, Source/cmUnixMakefileGenerator.cxx,
  2325. Source/EXEWinHeader.dsptemplate: added registry entry support and
  2326. windows app support
  2327. 2001-05-11 14:27 martink
  2328. * Modules/FindJNI.cmake, Modules/FindPythonLibs.cmake: minor fixes
  2329. and new python module
  2330. 2001-05-11 14:04 hoffman
  2331. * Source/MFCDialog/CMakeSetupDialog.cpp: BUG: fix gui problem
  2332. 2001-05-10 21:22 hoffman
  2333. * Source/cmDSPMakefile.cxx, Source/cmDSPWriter.cxx,
  2334. Source/MFCDialog/CMakeSetupDialog.cpp,
  2335. Source/MFCDialog/PropertyList.cpp: BUG: fix up gui with values that
  2336. stay around too long
  2337. 2001-05-10 20:21 geoff
  2338. * Source/cmMakefile.cxx: definitions should now be overwritten if
  2339. they already exist
  2340. 2001-05-10 19:50 hoffman
  2341. * Source/cmSystemTools.cxx: BUG: fix unix path search
  2342. 2001-05-10 19:32 martink
  2343. * Source/cmTarget.cxx: fix for expaning libraries prior to
  2344. generating dsp
  2345. 2001-05-10 18:30 geoff
  2346. * Source/cmDSPMakefile.cxx, Source/cmDSPWriter.cxx: Reads and uses
  2347. MSPROJECT_TEMPLATE_DIRECTORY if it exists
  2348. 2001-05-10 18:02 king
  2349. * CMake.doc: BUG: Removing this file. It has been replaced by
  2350. CMake.doc.gz to get around a problem with CVS.
  2351. 2001-05-10 17:52 martink
  2352. * Source/cmTarget.h: added win32 executable option
  2353. 2001-05-10 16:25 king
  2354. * CMake.doc.gz: Testing strange cvs problem with .doc files.
  2355. 2001-05-10 16:05 king
  2356. * CMake.pdf, CMake.pdf.gz: BUG: Removing old CMake.pdf and adding
  2357. the gzipped version, CMake.pdf.gz because of file size problems
  2358. with cvs.
  2359. 2001-05-10 15:18 king
  2360. * Source/cmSystemTools.cxx: ERR: RunCommand method needed return in
  2361. unix.
  2362. 2001-05-10 15:18 king
  2363. * Source/cmUnixMakefileGenerator.cxx: BUG: Removed stray debugging
  2364. output statement. Also renamed some variables for clarity.
  2365. 2001-05-10 15:18 king
  2366. * Source/cmFindLibraryCommand.cxx, Source/cmFindProgramCommand.cxx:
  2367. ERR: Removed unused variable
  2368. 2001-05-10 13:45 king
  2369. * CMakeVariables.make.in: BUG: ANSI_CFLAGS -> CMAKE_ANSI_CFLAGS
  2370. 2001-05-09 22:00 geoff
  2371. * Source/EXEHeader.dsptemplate, Source/cmDSPMakefile.cxx,
  2372. Source/cmDSPWriter.cxx: ADD LINK32s are now on multiple lines
  2373. because VC breaks otherwise
  2374. 2001-05-09 21:38 barre
  2375. * Modules/FindTCL.cmake: ENH: add 8.3 support
  2376. 2001-05-09 20:17 hoffman
  2377. * Source/cmDSPMakefile.cxx, Source/cmDSPWriter.cxx: BUG: escape
  2378. spaces before adding .lib
  2379. 2001-05-09 20:08 hoffman
  2380. * Source/cmDSPMakefile.cxx, Source/cmDSPWriter.cxx: ENH: escape
  2381. spaces
  2382. 2001-05-09 19:48 hoffman
  2383. * Source/cmDSPMakefile.cxx, Source/cmDSPWriter.cxx: ENH: only add
  2384. .lib if no .lib exists
  2385. 2001-05-09 18:53 hoffman
  2386. * Modules/FindFLTK.cmake, Modules/FindGTK.cmake,
  2387. Modules/FindJNI.cmake, Modules/FindJPEG.cmake,
  2388. Modules/FindMPI.cmake, Modules/FindTCL.cmake, Source/cmCommand.h,
  2389. Source/cmFindLibraryCommand.cxx, Source/cmFindLibraryCommand.h,
  2390. Source/cmFindProgramCommand.cxx, Source/cmSystemTools.cxx,
  2391. Source/cmSystemTools.h, Source/cmUnixMakefileGenerator.cxx: ENH:
  2392. change find library and find program to look for more than one name
  2393. 2001-05-09 17:44 hoffman
  2394. * Source/cmCableDefineSetCommand.cxx: BUG: match called on invalid
  2395. number
  2396. 2001-05-09 17:22 martink
  2397. * CMakeMaster.make.in, CMakeRules.make.in,
  2398. CMakeSystemConfig.cmake.in, CMakeTopMakefileTemplate.in,
  2399. CMakeVariables.make.in, configure.in.sample, Source/Makefile.in:
  2400. cleaned up configure some
  2401. 2001-05-09 15:15 millerjv
  2402. * Source/cmCacheManager.cxx: FIX: only clear the cache on a load
  2403. when the load needs to read internal values. Otherwise, it is
  2404. assumed that we are reading another projects cache.
  2405. 2001-05-09 14:13 hoffman
  2406. * Source/MFCDialog/PropertyList.cpp: BUG: fix crash
  2407. 2001-05-09 13:52 hoffman
  2408. * Source/cmConfigureFileCommand.cxx: BUG: fix use beyond end of
  2409. array
  2410. 2001-05-09 12:51 martink
  2411. * Source/cmCommands.cxx, Source/cmLoadCacheCommand.cxx,
  2412. Source/cmLoadCacheCommand.h, Source/cmSourceFile.cxx: added load
  2413. cache command and fixed source file
  2414. 2001-05-08 21:37 king
  2415. * Source/cmCacheManager.cxx: ERR: LoadCache needed to return a
  2416. value.
  2417. 2001-05-08 21:03 martink
  2418. * Source/cmCacheManager.cxx, Source/cmCacheManager.h: added ability
  2419. to load another cache
  2420. 2001-05-08 21:03 martink
  2421. * Source/cmProjectCommand.cxx: now adds src and bin dir into cache
  2422. 2001-05-08 20:20 martink
  2423. * Source/cmVTKWrapTclCommand.cxx: fixed bug in init code
  2424. 2001-05-08 20:01 hoffman
  2425. * configure.in.sample: clean up
  2426. 2001-05-08 17:40 hoffman
  2427. * Source/MFCDialog/PropertyList.cpp: ENH: add initial path support
  2428. for file choosers
  2429. 2001-05-08 15:40 martink
  2430. * Source/cmTargetLinkLibrariesCommand.cxx: BUG: added arg0 to link
  2431. libraries
  2432. 2001-05-08 14:16 ibanez
  2433. * Modules/FindFLTK.cmake: Module to search the path for FLTK
  2434. library ( http://www.fltk.org )
  2435. 2001-05-07 22:14 king
  2436. * Source/cmAddExecutableCommand.cxx,
  2437. Source/cmAddLibraryCommand.cxx, Source/cmMakefile.cxx: ENH: Moved
  2438. cache entry addition into cmMakefile::AddLibrary and AddExecutable
  2439. so that commands do not have to add it explicitly.
  2440. 2001-05-07 22:11 hoffman
  2441. * CMakeSystemConfig.cmake.in, Source/CMakeBuildTargets.cxx,
  2442. Source/Makefile.in, Source/cmCacheManager.cxx,
  2443. Source/cmCommands.cxx, Source/cmConfigureFile.cxx,
  2444. Source/cmConfigureFile.h, Source/cmConfigureFileCommand.cxx,
  2445. Source/cmConfigureFileCommand.h, Source/cmExecProgram.cxx,
  2446. Source/cmExecProgram.h, Source/cmExecProgramCommand.cxx,
  2447. Source/cmExecProgramCommand.h, Source/cmMakeDirectoryCommand.cxx,
  2448. Source/cmMakeDirectoryCommand.h, Source/cmMakefile.cxx,
  2449. Source/cmMakefile.h, Source/cmSystemTools.cxx,
  2450. Source/cmUnixMakefileGenerator.cxx,
  2451. Source/cmUnixMakefileGenerator.h: ENH: call configure from cmake
  2452. 2001-05-07 14:02 blezek
  2453. * Source/cmConfigureFile.cxx: BUG: Removing Remove Variables call
  2454. 2001-05-07 13:16 geoff
  2455. * configure.in.sample: Under FreeBSD: should be
  2456. CMAKE_SHLIB_BUILD_FLAGS and not CMAKE_SHLIB_LINK_FLAGS.
  2457. CMakeSystemConfig.cmake not being made
  2458. 2001-05-05 15:28 hoffman
  2459. * Source/cmAddExecutableCommand.cxx: BUG: add internal cache entry
  2460. for executables, so depends can work
  2461. 2001-05-05 15:03 hoffman
  2462. * Source/cmAddTargetCommand.cxx, Source/cmAddTargetCommand.h,
  2463. Source/cmCableInstantiateClassCommand.h,
  2464. Source/cmCableInstantiateCommand.h, Source/cmCommands.cxx,
  2465. Source/cmLibraryCommand.cxx: BUG: add removed command, and sort the
  2466. order in cmCommands.cxx
  2467. 2001-05-04 21:00 martink
  2468. * Source/cmMakefile.cxx, Source/cmUnixMakefileGenerator.cxx: fixes
  2469. for untiltiy targets in all
  2470. 2001-05-04 20:43 blezek
  2471. * Source/cmBuildNameCommand.cxx: ENH: Proper build name
  2472. 2001-05-04 20:43 blezek
  2473. * Source/cmSiteNameCommand.cxx: ENH: Correct sitename
  2474. 2001-05-04 19:50 martink
  2475. * Source/cmAddCustomTargetCommand.cxx,
  2476. Source/cmAddCustomTargetCommand.h, Source/cmAddTargetCommand.cxx,
  2477. Source/cmAddTargetCommand.h, Source/cmDSWMakefile.cxx,
  2478. Source/cmDSWWriter.cxx, Source/cmMakefile.cxx, Source/cmMakefile.h,
  2479. Source/cmTarget.h, Source/cmVTKWrapJavaCommand.cxx: option to make
  2480. utilities in the all target
  2481. 2001-05-04 18:53 hoffman
  2482. * CMakeSystemConfig.cmake.in, CMakeWindowsSystemConfig.cmake: ENH:
  2483. move to cmake for itkConfigure.h.in
  2484. 2001-05-04 16:52 martink
  2485. * Source/cmVTKWrapJavaCommand.cxx: updates
  2486. 2001-05-04 15:35 geoff
  2487. * Modules/FindGTK.cmake, Modules/FindJPEG.cmake: INCLUDE these to
  2488. find the relevant libraries
  2489. 2001-05-04 15:34 hoffman
  2490. * Source/cmAddCustomTargetCommand.cxx,
  2491. Source/cmAddCustomTargetCommand.h, Source/cmBuildCommand.cxx,
  2492. Source/cmBuildCommand.h, Source/cmBuildNameCommand.cxx,
  2493. Source/cmBuildNameCommand.h, Source/cmExecProgram.cxx,
  2494. Source/cmExecProgram.h, Source/cmSiteNameCommand.cxx,
  2495. Source/cmSiteNameCommand.h: ENH: move testing stuff to cmake from
  2496. configure, good bye dashboard... :)
  2497. 2001-05-04 15:30 hoffman
  2498. * CMakeRules.make.in, CMakeSystemConfig.txt.in,
  2499. CMakeWindowsSystemConfig.txt, Source/cmAddTargetCommand.cxx,
  2500. Source/cmAddTargetCommand.h, Source/cmCacheManager.cxx,
  2501. Source/cmCommands.cxx, Source/cmDSWMakefile.cxx,
  2502. Source/cmDSWWriter.cxx, Source/cmFindProgramCommand.cxx,
  2503. Source/cmMakefile.cxx, Source/cmOptionCommand.cxx,
  2504. Source/cmOptionCommand.h, Source/cmSourceGroup.cxx,
  2505. Source/cmSourceGroup.h, Source/cmSystemTools.cxx,
  2506. Source/cmSystemTools.h, Source/cmUnixMakefileGenerator.cxx,
  2507. Source/MFCDialog/CMakeSetup.rc: ENH: move testing stuff to cmake
  2508. from configure, good bye dashboard... :)
  2509. 2001-05-04 14:44 king
  2510. * Source/cmCablePackageCommand.cxx: ENH: Added use of CMAKE cache
  2511. entry for generating the DSP/makefile build rules.
  2512. 2001-05-04 14:44 king
  2513. * Source/cmDSPMakefile.cxx, Source/cmDSPMakefile.h,
  2514. Source/cmDSPWriter.cxx, Source/cmDSPWriter.h: ENH: Added use of
  2515. CMAKE cache entry for generating the DSP build rules.
  2516. 2001-05-04 14:44 king
  2517. * Source/cmSystemTools.cxx: ENH: Added support to EscapeSpaces to
  2518. use double quotes on windows.
  2519. 2001-05-04 14:13 martink
  2520. * Modules/FindJNI.cmake: minor fixes
  2521. 2001-05-04 13:56 martink
  2522. * Source/cmDSPMakefile.cxx, Source/cmDSPWriter.cxx: fixed custom
  2523. command rule
  2524. 2001-05-04 13:47 martink
  2525. * Modules/FindJNI.cmake: new module
  2526. 2001-05-04 13:39 martink
  2527. * Source/cmDSPMakefile.cxx, Source/cmDSPWriter.cxx,
  2528. Source/cmSourceGroup.cxx, Source/cmSourceGroup.h,
  2529. Source/cmVTKWrapJavaCommand.cxx: better custom rules
  2530. 2001-05-04 12:45 martink
  2531. * Source/cmSourceFilesRequireCommand.cxx,
  2532. Source/cmSourceFilesRequireCommand.h,
  2533. Source/cmUnixDefinesCommand.cxx, Source/cmUnixDefinesCommand.h,
  2534. Source/cmUnixLibrariesCommand.cxx, Source/cmUnixLibrariesCommand.h,
  2535. Source/cmWin32DefinesCommand.cxx, Source/cmWin32DefinesCommand.h,
  2536. Source/cmWin32IncludeDirectoryCommand.cxx,
  2537. Source/cmWin32IncludeDirectoryCommand.h,
  2538. Source/cmWin32LibrariesCommand.cxx,
  2539. Source/cmWin32LibrariesCommand.h: removed old functions
  2540. 2001-05-04 12:45 martink
  2541. * Source/cmFunctionBlocker.h, Source/cmIfCommand.cxx,
  2542. Source/cmIfCommand.h, Source/cmMakefile.cxx,
  2543. Source/cmVTKWrapJavaCommand.cxx: better If checks
  2544. 2001-05-03 20:55 king
  2545. * Source/cmFindProgramCommand.cxx, Source/cmSystemTools.cxx,
  2546. Source/cmSystemTools.h: ENH: Added cmSystemTools::FindProgram() and
  2547. full-path detection utilities.
  2548. 2001-05-03 20:55 king
  2549. * Source/CMakeBuildTargets.cxx, Source/CMakeSetupCMD.cxx,
  2550. Source/MFCDialog/CMakeSetupDialog.cpp: ENH: Added generation of
  2551. internal CMAKE cache entry with path to command-line CMake
  2552. executable.
  2553. 2001-05-03 19:27 martink
  2554. * Source/cmCommands.cxx, Source/cmVTKWrapJavaCommand.cxx,
  2555. Source/cmVTKWrapJavaCommand.h: minor fixes
  2556. 2001-05-03 15:04 martink
  2557. * Source/cmCommands.cxx: removed deprecated commands
  2558. 2001-05-03 14:58 martink
  2559. * CMakeSystemConfig.cmake.in: better config info
  2560. 2001-05-03 14:35 martink
  2561. * Source/cmConfigureFile.cxx: now support cmakedefine
  2562. 2001-05-03 12:52 martink
  2563. * CMakeSystemConfig.cmake.in, CMakeSystemConfig.txt.in,
  2564. CMakeWindowsSystemConfig.cmake, CMakeWindowsSystemConfig.txt,
  2565. Source/cmMakefile.cxx, Source/cmMakefile.h: system config uses
  2566. cmake commands now
  2567. 2001-05-03 12:52 martink
  2568. * CMakeSystemConfig.txt.in, CMakeWindowsSystemConfig.txt: uses
  2569. cmake commands now
  2570. 2001-05-02 21:33 martink
  2571. * Modules/FindMPI.cmake: minor fixes
  2572. 2001-05-02 21:07 martink
  2573. * Modules/FindMPI.cmake: new module
  2574. 2001-05-02 18:08 martink
  2575. * Modules/FindOpenGL.cmake: simple module
  2576. 2001-05-02 15:53 martink
  2577. * Source/CMakeBuildTargets.cxx, Source/CMakeSetupCMD.cxx: cache
  2578. loaded into makefile
  2579. 2001-05-02 15:53 martink
  2580. * Modules/FindTCL.cmake: finds tk as well
  2581. 2001-05-01 21:52 martink
  2582. * Source/cmVTKWrapPythonCommand.cxx,
  2583. Source/cmVTKWrapTclCommand.cxx: fixed bug in limiting to source
  2584. lists
  2585. 2001-05-01 21:35 king
  2586. * Source/cmCableDefineSetCommand.cxx,
  2587. Source/cmCableDefineSetCommand.h, Source/cmCableWrapCommand.cxx,
  2588. Source/cmCableWrapCommand.h: ENH: Changed cmCableWrapCommand to
  2589. inherit from cmCableDefineSetCommand since they do almost exactly
  2590. the same thing. Added a GetXmlTag virtual function to both classes
  2591. to return what XML tag to generate in the set's output.
  2592. cmCableDefineSetCommand generates a "Set" tag, and
  2593. cmCableWrapCommand generates a "WrapperSet" tag. What is inside
  2594. the tags is still generated by the cmCableDefineSetCommand
  2595. superclass.
  2596. 2001-05-01 21:35 king
  2597. * Source/cmCableInstantiateClassCommand.cxx,
  2598. Source/cmCableInstantiateClassCommand.h,
  2599. Source/cmCableInstantiateCommand.cxx,
  2600. Source/cmCableInstantiateCommand.h,
  2601. Source/cmCablePackageEntryCommand.cxx,
  2602. Source/cmCablePackageEntryCommand.h,
  2603. Source/cmCableSourceFilesCommand.cxx,
  2604. Source/cmCableSourceFilesCommand.h: ENH: Changed WriteConfiguration
  2605. back to const because it doesn't need to report errors anymore.
  2606. 2001-05-01 21:12 hoffman
  2607. * Source/UtilityFooter.dsptemplate,
  2608. Source/UtilityHeader.dsptemplate: ADD: add utiltity templates
  2609. 2001-05-01 20:55 hoffman
  2610. * configure.in.sample, Source/cmAddTargetCommand.cxx,
  2611. Source/cmDSPMakefile.cxx, Source/cmDSPMakefile.h,
  2612. Source/cmDSPWriter.cxx, Source/cmDSPWriter.h,
  2613. Source/cmDSWMakefile.cxx, Source/cmDSWMakefile.h,
  2614. Source/cmDSWWriter.cxx, Source/cmDSWWriter.h,
  2615. Source/cmMakefile.cxx, Source/cmMakefile.h, Source/cmTarget.h,
  2616. Source/cmUnixMakefileGenerator.cxx: ENH: implement ADD_TARGET
  2617. command, and add an ALL_BUILD target
  2618. 2001-05-01 20:34 martink
  2619. * Source/cmMakefile.cxx, Source/MFCDialog/CMakeSetupDialog.cpp:
  2620. cache now loaded into makefile
  2621. 2001-05-01 20:27 martink
  2622. * Source/cmCacheManager.cxx, Source/cmCacheManager.h: added method
  2623. to puch cache into makefile defines
  2624. 2001-05-01 20:27 martink
  2625. * Source/cmIfCommand.cxx: slight bug in If command I think
  2626. 2001-05-01 15:28 martink
  2627. * Modules/FindTCL.cmake: first module
  2628. 2001-05-01 15:16 martink
  2629. * Source/cmCommands.cxx, Source/cmElseCommand.cxx,
  2630. Source/cmIfCommand.cxx, Source/cmIfCommand.h,
  2631. Source/cmSetCommand.cxx, Source/cmSetCommand.h,
  2632. Source/cmVTKWrapPythonCommand.cxx, Source/cmVTKWrapTclCommand.cxx:
  2633. new set command and IF NOT
  2634. 2001-04-30 18:56 martink
  2635. * Source/cmElseCommand.cxx, Source/cmFindFileCommand.cxx,
  2636. Source/cmFindLibraryCommand.cxx, Source/cmFindPathCommand.cxx,
  2637. Source/cmIfCommand.cxx, Source/cmSystemTools.cxx,
  2638. Source/cmSystemTools.h: bug fixes
  2639. 2001-04-30 15:51 king
  2640. * Source/cmCablePackageCommand.cxx: BUG: Fixed output of
  2641. CMakeLists.txt path in cable_config.xml dependency list for unix.
  2642. Needed to escape spaces instead of enclosing in double quotes.
  2643. 2001-04-30 15:29 king
  2644. * Source/cmMakefile.h: ERR: Removed a conflict that was checked in.
  2645. 2001-04-30 14:52 anonymous
  2646. * Source/cmCommands.cxx, Source/cmDSPMakefile.cxx,
  2647. Source/cmDSPMakefile.h, Source/cmDSPWriter.cxx,
  2648. Source/cmDSPWriter.h, Source/cmIncludeCommand.cxx,
  2649. Source/cmIncludeCommand.h, Source/cmMakefile.cxx,
  2650. Source/cmMakefile.h: New command: INCLUDE(somefile.txt)
  2651. 2001-04-30 14:44 martink
  2652. * Source/cmCommands.cxx, Source/cmDSPMakefile.cxx,
  2653. Source/cmDSPWriter.cxx, Source/cmDSWMakefile.cxx,
  2654. Source/cmDSWWriter.cxx, Source/cmFindIncludeCommand.cxx,
  2655. Source/cmFindLibraryCommand.cxx, Source/cmLinkLibrariesCommand.cxx,
  2656. Source/cmLinkLibrariesCommand.h, Source/cmMakefile.cxx,
  2657. Source/cmMakefile.h, Source/cmTarget.cxx, Source/cmTarget.h,
  2658. Source/cmTargetLinkLibrariesCommand.cxx,
  2659. Source/cmTargetLinkLibrariesCommand.h,
  2660. Source/cmUnixMakefileGenerator.cxx,
  2661. Source/cmUnixMakefileGenerator.h: added TARGET_LINK_LIBRARY command
  2662. and support for debug and release libraries to link against
  2663. 2001-04-27 18:57 king
  2664. * Source/cmUnixMakefileGenerator.cxx: ERR: Renamed CustomCommands
  2665. to BuildRules to match change in cmSourceGroup.
  2666. 2001-04-27 18:51 king
  2667. * Source/cmDSPMakefile.cxx, Source/cmDSPMakefile.h,
  2668. Source/cmDSPWriter.cxx, Source/cmDSPWriter.h,
  2669. Source/cmSourceGroup.cxx, Source/cmSourceGroup.h: BUG: Removed
  2670. output of dual rules for source files that are processed by both
  2671. the compiler and by a custom command. Also removed generation of
  2672. duplicate CMakeLists.txt in the project files.
  2673. 2001-04-27 18:51 king
  2674. * Source/cmCablePackageCommand.cxx: BUG: Removed output of GCC_XML
  2675. rules when the command cannot be found.
  2676. 2001-04-27 18:40 martink
  2677. * CMakeSystemConfig.txt.in, CMakeWindowsSystemConfig.txt: get
  2678. system info into cmake
  2679. 2001-04-27 18:25 martink
  2680. * Source/cmConfigureFile.cxx, Source/cmConfigureFile.h: added
  2681. configure file
  2682. 2001-04-27 15:53 hoffman
  2683. * configure.in.sample: BUG: run cache build with each configure
  2684. 2001-04-27 15:36 hoffman
  2685. * CMakeRules.make.in, Source/cmMakefile.cxx: BUG: fix inplace
  2686. builds
  2687. 2001-04-27 15:03 hoffman
  2688. * Source/cmMakefile.cxx: ENH: fix in source build with non-gnu
  2689. 2001-04-27 13:32 hoffman
  2690. * Source/cmMakefile.cxx: ENH: add output when creating files
  2691. 2001-04-27 13:30 martink
  2692. * Source/cmFindFileCommand.cxx, Source/cmFindLibraryCommand.cxx,
  2693. Source/cmFindPathCommand.cxx: better help strings
  2694. 2001-04-27 13:13 will
  2695. * Source/cmAuxSourceDirectoryCommand.h: ENH:New copyright
  2696. 2001-04-27 12:46 martink
  2697. * CMakeVariables.make.in: removed old junk
  2698. 2001-04-27 12:01 will
  2699. * Source/CMakeBuildTargets.cxx, Source/CMakeSetupCMD.cxx,
  2700. Source/cmAddDefinitionsCommand.cxx,
  2701. Source/cmAddDefinitionsCommand.h,
  2702. Source/cmAddExecutableCommand.cxx, Source/cmAddExecutableCommand.h,
  2703. Source/cmAddLibraryCommand.cxx, Source/cmAddLibraryCommand.h,
  2704. Source/cmAddTargetCommand.cxx, Source/cmAddTargetCommand.h,
  2705. Source/cmAuxSourceDirectoryCommand.cxx,
  2706. Source/cmBuildSharedLibrariesCommand.cxx,
  2707. Source/cmCableCloseNamespaceCommand.cxx,
  2708. Source/cmCableCloseNamespaceCommand.h, Source/cmCableCommand.cxx,
  2709. Source/cmCableCommand.h, Source/cmCableData.cxx,
  2710. Source/cmCableData.h, Source/cmCableDefineSetCommand.cxx,
  2711. Source/cmCableDefineSetCommand.h,
  2712. Source/cmCableInstantiateClassCommand.cxx,
  2713. Source/cmCableInstantiateClassCommand.h,
  2714. Source/cmCableInstantiateCommand.cxx,
  2715. Source/cmCableInstantiateCommand.h,
  2716. Source/cmCableOpenNamespaceCommand.cxx,
  2717. Source/cmCableOpenNamespaceCommand.h,
  2718. Source/cmCablePackageCommand.cxx, Source/cmCablePackageCommand.h,
  2719. Source/cmCablePackageEntryCommand.cxx,
  2720. Source/cmCablePackageEntryCommand.h,
  2721. Source/cmCableSourceFilesCommand.cxx,
  2722. Source/cmCableSourceFilesCommand.h, Source/cmCableWrapCommand.cxx,
  2723. Source/cmCableWrapCommand.h, Source/cmCacheManager.cxx,
  2724. Source/cmCacheManager.h, Source/cmCommand.h, Source/cmCommands.h,
  2725. Source/cmConfigureFileNoAutoconf.cxx,
  2726. Source/cmConfigureFileNoAutoconf.h, Source/cmCustomCommand.cxx,
  2727. Source/cmCustomCommand.h, Source/cmDSPMakefile.cxx,
  2728. Source/cmDSPMakefile.h, Source/cmDSPWriter.cxx,
  2729. Source/cmDSPWriter.h, Source/cmDSWMakefile.cxx,
  2730. Source/cmDSWMakefile.h, Source/cmDSWWriter.cxx,
  2731. Source/cmDSWWriter.h, Source/cmDirectory.cxx, Source/cmDirectory.h,
  2732. Source/cmElseCommand.cxx, Source/cmElseCommand.h,
  2733. Source/cmEndIfCommand.cxx, Source/cmEndIfCommand.h,
  2734. Source/cmFindFileCommand.cxx, Source/cmFindFileCommand.h,
  2735. Source/cmFindIncludeCommand.cxx, Source/cmFindIncludeCommand.h,
  2736. Source/cmFindLibraryCommand.cxx, Source/cmFindLibraryCommand.h,
  2737. Source/cmFindProgramCommand.cxx, Source/cmFindProgramCommand.h,
  2738. Source/cmFunctionBlocker.h, Source/cmIfCommand.cxx,
  2739. Source/cmIfCommand.h, Source/cmIncludeDirectoryCommand.cxx,
  2740. Source/cmIncludeDirectoryCommand.h,
  2741. Source/cmIncludeRegularExpressionCommand.cxx,
  2742. Source/cmIncludeRegularExpressionCommand.h,
  2743. Source/cmLibraryCommand.cxx, Source/cmLibraryCommand.h,
  2744. Source/cmLinkDirectoriesCommand.cxx,
  2745. Source/cmLinkDirectoriesCommand.h,
  2746. Source/cmLinkLibrariesCommand.cxx, Source/cmLinkLibrariesCommand.h,
  2747. Source/cmMSProjectGenerator.cxx, Source/cmMSProjectGenerator.h,
  2748. Source/cmMakeDepend.cxx, Source/cmMakeDepend.h,
  2749. Source/cmMakefile.cxx, Source/cmMakefile.h,
  2750. Source/cmMakefileGenerator.cxx, Source/cmMakefileGenerator.h,
  2751. Source/cmOptionCommand.cxx, Source/cmOptionCommand.h,
  2752. Source/cmProjectCommand.cxx, Source/cmProjectCommand.h,
  2753. Source/cmRegularExpression.cxx, Source/cmRegularExpression.h,
  2754. Source/cmSourceFile.cxx, Source/cmSourceFile.h,
  2755. Source/cmSourceFilesCommand.cxx, Source/cmSourceFilesCommand.h,
  2756. Source/cmSourceFilesRequireCommand.cxx,
  2757. Source/cmSourceFilesRequireCommand.h, Source/cmSourceGroup.cxx,
  2758. Source/cmSourceGroup.h, Source/cmSourceGroupCommand.cxx,
  2759. Source/cmSourceGroupCommand.h, Source/cmStandardIncludes.h,
  2760. Source/cmSubdirCommand.cxx, Source/cmSubdirCommand.h,
  2761. Source/cmSystemTools.cxx, Source/cmSystemTools.h,
  2762. Source/cmTarget.cxx, Source/cmTarget.h, Source/cmTestsCommand.cxx,
  2763. Source/cmTestsCommand.h, Source/cmUnixDefinesCommand.cxx,
  2764. Source/cmUnixDefinesCommand.h, Source/cmUnixLibrariesCommand.cxx,
  2765. Source/cmUnixLibrariesCommand.h,
  2766. Source/cmUnixMakefileGenerator.cxx,
  2767. Source/cmUnixMakefileGenerator.h,
  2768. Source/cmUtilitySourceCommand.cxx, Source/cmUtilitySourceCommand.h,
  2769. Source/cmVTKWrapPythonCommand.cxx, Source/cmVTKWrapTclCommand.cxx,
  2770. Source/cmWin32DefinesCommand.cxx, Source/cmWin32DefinesCommand.h,
  2771. Source/cmWin32IncludeDirectoryCommand.cxx,
  2772. Source/cmWin32IncludeDirectoryCommand.h,
  2773. Source/cmWin32LibrariesCommand.cxx,
  2774. Source/cmWin32LibrariesCommand.h,
  2775. Source/cmWrapExcludeFilesCommand.cxx,
  2776. Source/cmWrapExcludeFilesCommand.h: ENH:New copyright
  2777. 2001-04-27 11:55 will
  2778. * Source/cmAbstractFilesCommand.cxx,
  2779. Source/cmAbstractFilesCommand.h: ENH:Copyright
  2780. 2001-04-26 20:22 martink
  2781. * Source/DLLHeader.dsptemplate, Source/EXEHeader.dsptemplate,
  2782. Source/cmDSPMakefile.cxx, Source/cmDSPMakefile.h,
  2783. Source/cmDSPWriter.cxx, Source/cmDSPWriter.h,
  2784. Source/cmDSWMakefile.cxx, Source/cmDSWWriter.cxx,
  2785. Source/cmLinkLibrariesCommand.cxx, Source/cmLinkLibrariesCommand.h,
  2786. Source/cmMakefile.cxx, Source/cmMakefile.h,
  2787. Source/cmUnixMakefileGenerator.cxx,
  2788. Source/cmVTKWrapPythonCommand.cxx, Source/MFCDialog/CMakeSetup.rc,
  2789. Source/MFCDialog/resource.h: support for debug and opt libraries
  2790. 2001-04-26 19:41 martink
  2791. * Source/cmOptionCommand.cxx, Source/cmOptionCommand.h: better help
  2792. 2001-04-26 19:27 king
  2793. * Source/cmCableInstantiateClassCommand.cxx,
  2794. Source/cmCableInstantiateClassCommand.h,
  2795. Source/cmCableInstantiateCommand.cxx,
  2796. Source/cmCableInstantiateCommand.h,
  2797. Source/cmCablePackageCommand.cxx,
  2798. Source/cmCablePackageEntryCommand.cxx,
  2799. Source/cmCablePackageEntryCommand.h,
  2800. Source/cmCableSourceFilesCommand.cxx,
  2801. Source/cmCableSourceFilesCommand.h, Source/cmCableWrapCommand.cxx,
  2802. Source/cmCableWrapCommand.h: ENH: Changed WriteConfiguration to
  2803. non-const so it can do error checking. Added parsing and output of
  2804. a name for each WrapperSet generated from a CABLE_WRAP command.
  2805. 2001-04-26 18:53 hoffman
  2806. * Source/cmAddLibraryCommand.cxx,
  2807. Source/cmBuildSharedLibrariesCommand.cxx,
  2808. Source/cmCacheManager.cxx, Source/cmCacheManager.h,
  2809. Source/cmFindFileCommand.cxx, Source/cmFindIncludeCommand.cxx,
  2810. Source/cmFindLibraryCommand.cxx, Source/cmFindPathCommand.cxx,
  2811. Source/cmFindProgramCommand.cxx, Source/cmOptionCommand.cxx,
  2812. Source/cmUtilitySourceCommand.cxx,
  2813. Source/MFCDialog/CMakeSetupDialog.cpp,
  2814. Source/MFCDialog/PropertyList.cpp, Source/MFCDialog/PropertyList.h:
  2815. ENH: add help for cache entries
  2816. 2001-04-26 14:49 martink
  2817. * Source/cmCacheManager.cxx, Source/cmElseCommand.cxx,
  2818. Source/cmIfCommand.cxx, Source/cmSystemTools.cxx,
  2819. Source/cmSystemTools.h: some fixes for If commands
  2820. 2001-04-26 13:38 martink
  2821. * Source/CMakeSetup.dsw, Source/DumpDocumentation.dsp,
  2822. Source/cmCommands.cxx, Source/cmDSPMakefile.cxx,
  2823. Source/cmDSPWriter.cxx, Source/cmDSPMakefile.h,
  2824. Source/cmDSPWriter.h, Source/cmFindFileCommand.cxx,
  2825. Source/cmFindIncludeCommand.cxx, Source/cmFindIncludeCommand.h,
  2826. Source/cmFindLibraryCommand.cxx, Source/cmFindLibraryCommand.h,
  2827. Source/cmFindPathCommand.cxx, Source/cmFindPathCommand.h,
  2828. Source/cmMakefile.cxx, Source/cmMakefile.h,
  2829. Source/cmUnixMakefileGenerator.cxx: bug fixes
  2830. 2001-04-25 23:01 hoffman
  2831. * Source/MFCDialog/CMakeSetupDialog.cpp: ENH: set initial build to
  2832. source dir
  2833. 2001-04-25 22:53 hoffman
  2834. * Source/MFCDialog/CMakeSetupDialog.cpp: ENH: add error checking
  2835. for empty build dir
  2836. 2001-04-25 20:09 hoffman
  2837. * configure.in.sample, Source/Makefile.in,
  2838. Source/cmCacheManager.cxx, Source/cmCacheManager.h,
  2839. Source/cmMakefile.cxx, Source/MFCDialog/CMakeDialog.h,
  2840. Source/MFCDialog/CMakeSetup.rc,
  2841. Source/MFCDialog/CMakeSetupDialog.cpp,
  2842. Source/MFCDialog/CMakeSetupDialog.h,
  2843. Source/MFCDialog/PropertyList.cpp, Source/MFCDialog/PropertyList.h:
  2844. ENH: clean up cmake GUI and remove the parsing of CMakeLists.txt
  2845. files by configure
  2846. 2001-04-25 15:47 martink
  2847. * Source/cmElseCommand.h, Source/cmEndIfCommand.h,
  2848. Source/cmIfCommand.h: rules were not inherited when they should be
  2849. 2001-04-25 13:37 king
  2850. * Source/cmUnixMakefileGenerator.cxx: BUG: Fixed output of
  2851. dependencies. It needs to loop over the makefile's targets, not
  2852. the source lists.
  2853. 2001-04-25 13:37 king
  2854. * Source/cmMakeDepend.cxx: STYLE: Updated comments for name change
  2855. cmClassFile->cmSourceFile
  2856. 2001-04-25 13:33 martink
  2857. * CMake.doc: updated the docs some
  2858. 2001-04-24 21:33 king
  2859. * Source/cmUnixMakefileGenerator.cxx: ERR: cmClassFile.h ->
  2860. cmSourceFile.h include change.
  2861. 2001-04-24 20:46 martink
  2862. * Source/CMakeLib.dsp, Source/Makefile.in,
  2863. Source/cmAbstractFilesCommand.cxx,
  2864. Source/cmAuxSourceDirectoryCommand.cxx,
  2865. Source/cmCablePackageCommand.cxx,
  2866. Source/cmCableSourceFilesCommand.cxx, Source/cmCacheManager.cxx,
  2867. Source/cmCacheManager.h, Source/cmCommands.cxx,
  2868. Source/cmDSPMakefile.cxx, Source/cmDSPMakefile.h,
  2869. Source/cmDSPWriter.cxx, Source/cmDSPWriter.h,
  2870. Source/cmMakeDepend.cxx, Source/cmMakeDepend.h,
  2871. Source/cmMakefile.cxx, Source/cmMakefile.h,
  2872. Source/cmOptionCommand.cxx, Source/cmSourceFilesCommand.cxx,
  2873. Source/cmSourceFilesRequireCommand.cxx, Source/cmTarget.h,
  2874. Source/cmUnixDefinesCommand.cxx, Source/cmUnixLibrariesCommand.cxx,
  2875. Source/cmUnixMakefileGenerator.cxx,
  2876. Source/cmWin32DefinesCommand.cxx,
  2877. Source/cmWin32IncludeDirectoryCommand.cxx,
  2878. Source/cmWin32LibrariesCommand.cxx,
  2879. Source/cmWrapExcludeFilesCommand.cxx,
  2880. Source/MFCDialog/CMakeSetupDialog.cpp,
  2881. Source/cmVTKWrapPythonCommand.cxx, Source/cmVTKWrapPythonCommand.h,
  2882. Source/cmVTKWrapTclCommand.cxx, Source/cmVTKWrapTclCommand.h,
  2883. Source/cmSourceFile.cxx, Source/cmSourceFile.h,
  2884. Source/cmTarget.cxx, Source/cmWrapTclCommand.cxx,
  2885. Source/cmWrapTclCommand.h, Source/cmClassFile.cxx,
  2886. Source/cmClassFile.h: many fixes and cleanup and features
  2887. 2001-04-24 18:19 hoffman
  2888. * Source/MFCDialog/CMakeSetupDialog.cpp,
  2889. Source/MFCDialog/PropertyList.cpp, Source/MFCDialog/PropertyList.h:
  2890. BUG: fix duplicate property items
  2891. 2001-04-24 17:32 hoffman
  2892. * Source/MFCDialog/CMakeSetupDialog.cpp,
  2893. Source/MFCDialog/CMakeSetupDialog.h,
  2894. Source/MFCDialog/PropertyList.cpp: BUG: fix cache updates
  2895. 2001-04-24 16:40 hoffman
  2896. * Source/cmBuildSharedLibrariesCommand.cxx,
  2897. Source/cmCacheManager.cxx, Source/cmCacheManager.h,
  2898. Source/cmMakefile.cxx, Source/cmMakefile.h,
  2899. Source/cmOptionCommand.cxx, Source/cmWrapTclCommand.cxx,
  2900. Source/MFCDialog/CMakeSetupDialog.cpp: BUG: fix build directory
  2901. problem
  2902. 2001-04-24 13:45 king
  2903. * CMakeVariables.make.in: ERR: Removed extra SRC_OBJ reference.
  2904. The variable is no longer used.
  2905. 2001-04-23 20:40 hoffman
  2906. * Source/CMakeLib.dsp, Source/cmCacheManager.cxx,
  2907. Source/cmCacheManager.h, Source/cmDSWMakefile.cxx,
  2908. Source/cmDSWWriter.cxx, Source/cmSourceGroup.h,
  2909. Source/cmStandardIncludes.h, Source/cmWindowsConfigure.cxx,
  2910. Source/cmWindowsConfigure.h, Source/MFCDialog/CMakeDialog.h,
  2911. Source/MFCDialog/CMakeSetup.dsp, Source/MFCDialog/CMakeSetup.rc,
  2912. Source/MFCDialog/CMakeSetupDialog.cpp,
  2913. Source/MFCDialog/CMakeSetupDialog.h,
  2914. Source/MFCDialog/PropertyList.cpp, Source/MFCDialog/PropertyList.h,
  2915. Source/MFCDialog/resource.h: ENH: new GUI editor for cmake cache
  2916. file
  2917. 2001-04-23 20:33 martink
  2918. * Source/cmCommands.cxx, Source/cmWrapTclCommand.cxx: added option
  2919. command
  2920. 2001-04-23 20:33 martink
  2921. * Source/cmOptionCommand.cxx, Source/cmOptionCommand.h: new command
  2922. 2001-04-23 17:58 blezek
  2923. * CMakeRules.make.in, Source/cmUnixMakefileGenerator.cxx: BUG:
  2924. Clean was not doing it's job
  2925. 2001-04-23 14:23 king
  2926. * Source/cmIfCommand.h: ERR: Added virtual destructor to complement
  2927. virtual functions in cmIfFunctionBlocker.
  2928. 2001-04-19 21:39 martink
  2929. * Source/cmAddDefinitionsCommand.cxx,
  2930. Source/cmAddDefinitionsCommand.h, Source/cmCommands.cxx,
  2931. Source/cmElseCommand.cxx, Source/cmElseCommand.h,
  2932. Source/cmEndIfCommand.cxx, Source/cmEndIfCommand.h,
  2933. Source/cmFunctionBlocker.h, Source/cmIfCommand.cxx,
  2934. Source/cmIfCommand.h, Source/cmMakefile.cxx, Source/cmMakefile.h:
  2935. added if else endif add definition
  2936. 2001-04-19 17:28 martink
  2937. * Source/cmCablePackageCommand.cxx, Source/cmCustomCommand.h,
  2938. Source/cmDSPMakefile.cxx, Source/cmDSPWriter.cxx,
  2939. Source/cmDSWMakefile.cxx, Source/cmDSWWriter.cxx,
  2940. Source/cmMakefile.cxx, Source/cmSourceGroup.cxx, Source/cmTarget.h,
  2941. Source/cmUnixMakefileGenerator.cxx: cleaned up the coding style
  2942. made ivars private etc
  2943. 2001-04-18 12:01 king
  2944. * Source/cmMakeDepend.cxx: ERR: We can't assume a vector iterator
  2945. is a pointer. It must be dereferenced to get a reference to the
  2946. element, and then we can take the address of that to get a pointer.
  2947. "i" becomes "&*i"
  2948. 2001-04-17 11:42 king
  2949. * Source/cmUnixMakefileGenerator.cxx: ERR: Removed unused variable.
  2950. 2001-04-16 19:40 hoffman
  2951. * Source/cmStandardIncludes.h, Source/cmSystemTools.cxx: BUG: fix
  2952. small compile issues on HP aCC
  2953. 2001-04-16 16:31 king
  2954. * Source/cmMakeDepend.cxx, Source/cmMakeDepend.h: ENH: Changed
  2955. m_Indices to an stl set and renamed it to m_IndexSet. Using a set
  2956. results in a significant performance increase and reduction in
  2957. memory usage.
  2958. 2001-04-16 14:15 millerjv
  2959. * Source/cmAddLibraryCommand.cxx: FIX: allow ADD_LIBRARY with no
  2960. source list
  2961. 2001-04-16 14:01 martink
  2962. * Source/cmCablePackageCommand.cxx, Source/cmMakefile.h: fixed
  2963. cable package issue
  2964. 2001-04-12 19:34 martink
  2965. * Source/Makefile.in, Source/cmAddLibraryCommand.cxx,
  2966. Source/cmCacheManager.cxx, Source/cmCacheManager.h,
  2967. Source/cmMakefile.h, Source/cmUnixMakefileGenerator.cxx,
  2968. Source/cmWrapTclCommand.cxx: some bug fixes
  2969. 2001-04-12 13:55 king
  2970. * Source/cmUnixMakefileGenerator.cxx,
  2971. Source/cmUnixMakefileGenerator.h: ENH: Added individual library
  2972. linkage output so that shared libraries will not try to link
  2973. against themselves.
  2974. 2001-04-12 13:49 martink
  2975. * Source/cmExecutablesCommand.cxx, Source/cmExecutablesCommand.h:
  2976. removed old rules
  2977. 2001-04-11 20:34 king
  2978. * Source/cmUnixMakefileGenerator.cxx: ENH: Generation now sets up
  2979. proper linking of shared libraries to each other.
  2980. 2001-04-11 19:43 king
  2981. * CMakeMaster.make.in: ERR: Needed to switch point where
  2982. CMakeTargets.make is included so that Variables will be available
  2983. to the targets file.
  2984. 2001-04-11 18:58 martink
  2985. * Source/CMakeLib.dsp, Source/CMakeSetupCMD.dsp,
  2986. Source/Makefile.in, Source/cmAbstractFilesCommand.cxx,
  2987. Source/cmAddExecutableCommand.cxx, Source/cmAddExecutableCommand.h,
  2988. Source/cmAddLibraryCommand.cxx, Source/cmAddLibraryCommand.h,
  2989. Source/cmAuxSourceDirectoryCommand.cxx,
  2990. Source/cmAuxSourceDirectoryCommand.h, Source/cmCableCommand.cxx,
  2991. Source/cmCableData.cxx, Source/cmCableData.h,
  2992. Source/cmCablePackageCommand.cxx, Source/cmCablePackageCommand.h,
  2993. Source/cmCableSourceFilesCommand.cxx, Source/cmClassFile.cxx,
  2994. Source/cmClassFile.h, Source/cmCommands.cxx,
  2995. Source/cmCustomCommand.cxx, Source/cmCustomCommand.h,
  2996. Source/cmDSPMakefile.cxx, Source/cmDSPMakefile.h,
  2997. Source/cmDSPWriter.cxx, Source/cmDSPWriter.h,
  2998. Source/cmDSWMakefile.cxx, Source/cmDSWMakefile.h,
  2999. Source/cmDSWWriter.cxx, Source/cmDSWWriter.h,
  3000. Source/cmMakeDepend.cxx, Source/cmMakeDepend.h,
  3001. Source/cmMakefile.cxx, Source/cmMakefile.h,
  3002. Source/cmSourceFilesCommand.cxx, Source/cmSourceFilesCommand.h,
  3003. Source/cmSourceFilesRequireCommand.cxx,
  3004. Source/cmSourceFilesRequireCommand.h, Source/cmSourceGroup.cxx,
  3005. Source/cmSourceGroup.h, Source/cmTarget.h,
  3006. Source/cmTestsCommand.cxx, Source/cmUnixMakefileGenerator.cxx,
  3007. Source/cmUnixMakefileGenerator.h,
  3008. Source/cmWrapExcludeFilesCommand.cxx, Source/cmWrapTclCommand.cxx,
  3009. Source/cmWrapTclCommand.h, CMakeRules.make.in: major changes to
  3010. support multiple libraries and source lists
  3011. 2001-04-10 19:26 king
  3012. * Source/DLLHeader.dsptemplate: ENH: Need BUILD_SHARED_LIBRARIES
  3013. defined for making windows DLLs.
  3014. 2001-04-09 14:56 king
  3015. * Source/cmCablePackageCommand.cxx: ERR: Added double-quotes around
  3016. command name before arguments are appended.
  3017. 2001-04-09 14:53 king
  3018. * Source/cmUnixMakefileGenerator.cxx: ERR: Missed one EscapeSpaces
  3019. call.
  3020. 2001-04-09 14:31 king
  3021. * Source/cmCableCommand.cxx, Source/cmDSPMakefile.cxx,
  3022. Source/cmDSPWriter.cxx, Source/cmSystemTools.cxx,
  3023. Source/cmSystemTools.h, Source/cmUnixMakefileGenerator.cxx,
  3024. Source/cmUtilitySourceCommand.cxx: ERR: Corrected use of
  3025. double-quotes to be compatible with UNIX make. Now double quotes
  3026. (windows) or escape sequences for spaces (unix) are added when
  3027. dependencies are output.
  3028. 2001-04-09 13:44 king
  3029. * Source/cmCableCommand.cxx, Source/cmDSPMakefile.cxx,
  3030. Source/cmDSPWriter.cxx, Source/cmUtilitySourceCommand.cxx: ENH:
  3031. Added support for spaces in the output directory names. Spaces in
  3032. the input directory name may work also, but are untested.
  3033. 2001-04-06 21:01 hoffman
  3034. * Source/cmDSPMakefile.cxx, Source/cmDSPWriter.cxx,
  3035. Source/cmDSPMakefile.h, Source/cmDSPWriter.h,
  3036. Source/cmDSWMakefile.cxx, Source/cmDSWWriter.cxx: BUG: fix depends
  3037. for libraries and executables in the same dir
  3038. 2001-04-06 18:51 hoffman
  3039. * Source/cmFindIncludeCommand.cxx, Source/cmFindLibraryCommand.cxx,
  3040. Source/cmMakefile.cxx: ENH: better error reporting, and add
  3041. NOTFOUND into cache for library and file find
  3042. 2001-04-06 16:00 martink
  3043. * Source/cmFindIncludeCommand.h: fixed the documentation some
  3044. 2001-04-06 12:28 millerjv
  3045. * Source/cmDSPMakefile.cxx, Source/cmDSPWriter.cxx: FIX:
  3046. configurations list needed to be reset for each dsp file created
  3047. 2001-04-04 13:33 millerjv
  3048. * Source/EXEHeader.dsptemplate, Source/staticLibHeader.dsptemplate:
  3049. FIX: returned to using /O2 optimization level and put a pragma in
  3050. the netlib code that could not handle the /Og component of /O2
  3051. 2001-03-28 16:49 king
  3052. * Source/cmSystemTools.cxx: ERR: Blank line regular expression
  3053. updated to allow whitespace on the line.
  3054. 2001-03-23 19:27 king
  3055. * Source/cmCableSourceFilesCommand.cxx,
  3056. Source/cmCableSourceFilesCommand.h: ENH: Added support for
  3057. CABLE_SOURCE_FILES to refer to files that are not in the current
  3058. directory. The include path is searched for the files.
  3059. 2001-03-21 20:52 king
  3060. * Source/cmStandardIncludes.h: ERR: Added pragma to disable symbol
  3061. length warning for Intel compiler.
  3062. 2001-03-20 18:48 king
  3063. * Source/cmDSPMakefile.cxx, Source/cmDSPWriter.cxx: ERR: Small bug
  3064. in generated DSP file fixed. A custom command environment variable
  3065. has been replaced with explicity writing out the command.
  3066. 2001-03-20 18:20 king
  3067. * Source/CMakeLib.dsp, Source/Makefile.in,
  3068. Source/cmCableCommand.cxx, Source/cmCablePackageCommand.cxx,
  3069. Source/cmCommands.cxx, Source/cmDSPMakefile.cxx,
  3070. Source/cmDSPMakefile.h, Source/cmDSPWriter.cxx,
  3071. Source/cmDSPWriter.h, Source/cmMakefile.cxx, Source/cmMakefile.h,
  3072. Source/cmSourceGroup.cxx, Source/cmSourceGroup.h,
  3073. Source/cmSourceGroupCommand.cxx, Source/cmSourceGroupCommand.h,
  3074. Source/cmUnixMakefileGenerator.cxx, Source/cmWrapTclCommand.cxx:
  3075. ENH: Added SOURCE_GROUP command and corresponding support code.
  3076. This command allows CMakeLists files to specify how sources are
  3077. organized into groups in the generated DSP files and makefiles.
  3078. 2001-03-19 16:47 millerjv
  3079. * Source/EXEHeader.dsptemplate: ENH: ignore unused libary warnings,
  3080. removed /force
  3081. 2001-03-19 16:00 king
  3082. * Source/cmDSPMakefile.cxx, Source/cmDSPWriter.cxx: ENH: Added text
  3083. files group to DSP output. CMakeLists.txt is duplicated in this
  3084. group and outside, but fixing this will require a reorganization of
  3085. custom rule generation. I should get to that soon.
  3086. 2001-03-19 16:00 king
  3087. * Source/cmSystemTools.cxx, Source/cmSystemTools.h: ERR: Removed
  3088. functions I just added. They don't belong here (yet?).
  3089. 2001-03-19 16:00 king
  3090. * Source/cmCableCommand.cxx: ERR: Changed generation of rule to
  3091. generate cable_config.xml to be produced differently for windows
  3092. and unix.
  3093. 2001-03-19 15:09 king
  3094. * Source/cmSystemTools.cxx, Source/cmSystemTools.h: ENH: Added
  3095. functions to get information about the CMake executable on each
  3096. platform.
  3097. 2001-03-19 15:09 king
  3098. * Source/cmCableCommand.cxx: ENH: Added generation of a rule to
  3099. re-run CMake if the cable_config.xml file is missing.
  3100. 2001-03-16 16:14 king
  3101. * Source/cmCableData.cxx, Source/cmCableData.h: ERR: Re-ordered
  3102. declaration of members v. order of initialization on the
  3103. constructor to match each other.
  3104. 2001-03-16 16:04 king
  3105. * Source/cmCableData.cxx, Source/cmCableData.h: BUG: Rearranged
  3106. cable config file open to do open in construction of m_OutputFile.
  3107. Fixes problem on SGI with opening the file.
  3108. 2001-03-16 14:25 king
  3109. * Source/cmCableDefineSetCommand.cxx,
  3110. Source/cmCableSourceFilesCommand.cxx: ENH: Changed generated
  3111. includes to not have full path specified.
  3112. 2001-03-15 23:09 king
  3113. * Source/cmCommands.cxx,
  3114. Source/cmIncludeRegularExpressionCommand.cxx,
  3115. Source/cmIncludeRegularExpressionCommand.h,
  3116. Source/cmMakeDepend.cxx, Source/cmMakeDepend.h,
  3117. Source/cmMakefile.cxx, Source/cmMakefile.h: ENH: Added
  3118. INCLUDE_REGULAR_EXPRESSION command to set regular expression used
  3119. in dependency checking.
  3120. 2001-03-15 19:46 king
  3121. * Source/cmCableDefineSetCommand.cxx,
  3122. Source/cmCableDefineSetCommand.h: ENH: Added SOURCE_FILES syntax to
  3123. CABLE_DEFINE_SET command.
  3124. 2001-03-15 19:33 king
  3125. * Source/cmMakefile.cxx, Source/cmMakefile.h: BUG: Moved definition
  3126. of CMAKE_SOURCE_DIR and CMAKE_BINARY_DIR to be as soon as their
  3127. information is known.
  3128. 2001-03-15 15:42 king
  3129. * Source/cmCablePackageCommand.cxx, Source/cmCablePackageCommand.h:
  3130. BUG: Fixed segfault when CABLE_PACKAGE is only CABLE command.
  3131. Related to order of virtual destructor calls.
  3132. 2001-03-14 22:49 king
  3133. * Source/cmStandardIncludes.h: ERR: Added for-loop scoping hack for
  3134. CMake sources on MSVC
  3135. 2001-03-14 21:34 king
  3136. * Source/cmSystemTools.cxx: ENH: Added support for comments inside
  3137. function calls and indented comments.
  3138. 2001-03-13 23:01 king
  3139. * Source/cmCableDefineSetCommand.cxx,
  3140. Source/cmCableDefineSetCommand.h: ENH: Added support for element
  3141. tag specification with syntax tag:element as an argument to the
  3142. CABLE_DEFINE_SET command. A single colon with nothing to its left
  3143. will result in an empty tag.
  3144. 2001-03-13 14:33 king
  3145. * Source/cmWrapTclCommand.cxx: ERR: Less-than-zero test replaced
  3146. with greater-than-zero since we want zero arguments.
  3147. 2001-03-12 23:30 king
  3148. * Source/cmCommand.h, Source/cmSystemTools.cxx,
  3149. Source/cmSystemTools.h: ENH: Improved error handling when GetError
  3150. is called on a command that has not called SetError.
  3151. 2001-03-12 15:10 geoff
  3152. * Source/cmCommands.cxx, Source/cmWin32IncludeDirectoryCommand.cxx,
  3153. Source/cmWin32IncludeDirectoryCommand.h: Include directories under
  3154. Win32 only (inherited by subdirs)
  3155. 2001-03-09 21:56 king
  3156. * Source/DLLHeader.dsptemplate, Source/EXEHeader.dsptemplate,
  3157. Source/cmDSPMakefile.cxx, Source/cmDSPMakefile.h,
  3158. Source/cmDSPWriter.cxx, Source/cmDSPWriter.h,
  3159. Source/staticLibHeader.dsptemplate: ENH: Finished Simplifying
  3160. dsptemplate processing with in place of separate Release, Debug,
  3161. ReleaseDLL, ... configurations.
  3162. 2001-03-09 20:35 king
  3163. * Source/cmDSPMakefile.cxx, Source/cmDSPWriter.cxx,
  3164. Source/staticLibHeader.dsptemplate: ERR: Fixed library path problem
  3165. for ReleaseMinSize build. should now be used in place of separate
  3166. Release, Debug, and ReleaseMinSize.
  3167. 2001-03-09 19:35 king
  3168. * Source/EXEHeader.dsptemplate: ERR: Fixed header template for
  3169. Release MinSize builds.
  3170. 2001-03-09 16:33 king
  3171. * Source/EXEHeader.dsptemplate: ENH: Added Release MinSize
  3172. configuration for executables.
  3173. 2001-03-09 16:33 king
  3174. * Source/cmUtilitySourceCommand.h: ENH: Made UTILITY_SOURCE command
  3175. inherited, just like FIND_PROGRAM.
  3176. 2001-03-09 16:16 king
  3177. * Source/cmCablePackageCommand.cxx: ERR: Missing initalization of a
  3178. cmClassFile::m_HeaderFileOnly fixed.
  3179. 2001-03-09 15:52 king
  3180. * Source/cmCablePackageCommand.cxx: ENH: Added proper dependency
  3181. generation for a package on cable executable.
  3182. 2001-03-09 15:52 king
  3183. * Source/cmDSWMakefile.cxx, Source/cmDSWWriter.cxx,
  3184. Source/cmMakefile.cxx, Source/cmMakefile.h,
  3185. Source/cmUnixMakefileGenerator.cxx,
  3186. Source/cmUnixMakefileGenerator.h,
  3187. Source/cmUtilitySourceCommand.cxx: ENH: Added utility dependency
  3188. support. Now a project can depend on other executables as well as
  3189. link libraries.
  3190. 2001-03-09 15:52 king
  3191. * Source/cmCableCommand.cxx, Source/cmCableData.cxx: ERR: Added
  3192. automatic creation of directory for cable_config.xml file and
  3193. corresponding error reporting.
  3194. 2001-03-08 23:24 king
  3195. * Source/cmMakefile.cxx, Source/cmUtilitySourceCommand.cxx: ERR:
  3196. Replaced CMAKE_CFG= with CMAKE_CFG_OUTDIR= to fix windows behavior.
  3197. 2001-03-08 23:13 king
  3198. * Source/cmDSPMakefile.cxx, Source/cmDSPWriter.cxx: ENH: Added
  3199. output of custom rules for XML sources.
  3200. 2001-03-08 22:38 king
  3201. * Source/cmUnixMakefileGenerator.cxx: ENH: Added output of defines
  3202. flags as part of INCLUDE_FLAGS.
  3203. 2001-03-08 22:30 king
  3204. * Source/cmUnixMakefileGenerator.cxx: ENH: Added output of a custom
  3205. command's m_Source as a dependency.
  3206. 2001-03-08 22:30 king
  3207. * Source/cmUnixDefinesCommand.cxx: ERR: Minor wording error in
  3208. output message.
  3209. 2001-03-08 22:30 king
  3210. * Source/cmCablePackageCommand.cxx: ENH: Creation of generator rule
  3211. now properly uses the custom command's m_Source member.
  3212. 2001-03-08 21:12 king
  3213. * Source/cmCableCommand.cxx, Source/cmCableData.cxx,
  3214. Source/cmCableData.h, Source/cmCablePackageCommand.cxx,
  3215. Source/cmCablePackageCommand.h,
  3216. Source/cmCableSourceFilesCommand.cxx,
  3217. Source/cmCableSourceFilesCommand.h: ENH: Added creation of custom
  3218. rules for generating CABLE packages.
  3219. 2001-03-08 21:12 king
  3220. * Source/cmMakeDepend.cxx, Source/cmMakeDepend.h: ENH: Added
  3221. support for finding dependencies for files that don't exist.
  3222. Dependency recursion begins with hints provided in the cmClassFile
  3223. for a file if it doesn't exist.
  3224. 2001-03-08 16:30 king
  3225. * Source/cmCableSourceFilesCommand.cxx: ENH: Added .txx detection
  3226. for Header block output.
  3227. 2001-03-08 15:30 king
  3228. * Source/cmCommands.cxx, Source/cmMakefile.cxx,
  3229. Source/cmMakefile.h, Source/cmSystemTools.cxx,
  3230. Source/cmSystemTools.h, Source/cmUtilitySourceCommand.cxx,
  3231. Source/cmUtilitySourceCommand.h: ENH: Added UTILITY_SOURCE command
  3232. for specifying where a 3rd party utility's source is located when
  3233. it is included in the distribution of a project.
  3234. 2001-03-07 18:33 king
  3235. * Source/cmCableCommand.cxx: ERR: Commented out experimental code
  3236. that was accidentally checked in.
  3237. 2001-03-07 18:23 king
  3238. * Source/cmCableCommand.cxx: ENH: Added Cable to Utilities and
  3239. appropriate CMakeLists.txt changes. Moved VXLNumerics link out of
  3240. source's root directory and into separate entries for Code and
  3241. Testing directories. This prevents linking of all programs (like
  3242. Cable) with the numerics library.
  3243. 2001-03-02 21:04 king
  3244. * Source/cmUnixMakefileGenerator.cxx,
  3245. Source/cmUnixMakefileGenerator.h: ENH: Added custom rule support to
  3246. cmUnixMakefileGenerator.
  3247. 2001-03-02 18:47 will
  3248. * Source/cmUnixMakefileGenerator.cxx: BUG: repeat all -l options to
  3249. avoid having to worry about link order.
  3250. 2001-03-02 17:27 king
  3251. * Source/cmCableCommand.cxx, Source/cmCableData.cxx,
  3252. Source/cmCableData.h: ENH: CABLE config file (config_cable.xml)
  3253. should now be opened in the output directory.
  3254. 2001-03-01 21:47 king
  3255. * Source/cmCableCloseNamespaceCommand.cxx,
  3256. Source/cmCableCloseNamespaceCommand.h, Source/cmCableCommand.cxx,
  3257. Source/cmCableCommand.h, Source/cmCableData.cxx,
  3258. Source/cmCableData.h, Source/cmCableDefineSetCommand.cxx,
  3259. Source/cmCableDefineSetCommand.h,
  3260. Source/cmCableInstantiateClassCommand.cxx,
  3261. Source/cmCableInstantiateClassCommand.h,
  3262. Source/cmCableInstantiateCommand.cxx,
  3263. Source/cmCableInstantiateCommand.h,
  3264. Source/cmCableOpenNamespaceCommand.cxx,
  3265. Source/cmCableOpenNamespaceCommand.h,
  3266. Source/cmCablePackageCommand.cxx, Source/cmCablePackageCommand.h,
  3267. Source/cmCablePackageEntryCommand.cxx,
  3268. Source/cmCablePackageEntryCommand.h,
  3269. Source/cmCableSourceFilesCommand.cxx,
  3270. Source/cmCableSourceFilesCommand.h, Source/cmCableWrapCommand.cxx,
  3271. Source/cmCableWrapCommand.h, Source/cmCommands.cxx: ENH: Change to
  3272. new CABLE command architecture. CABLE configuration code is now
  3273. generated on the first pass, during the Invoke() calls.
  3274. 2001-02-28 22:50 hoffman
  3275. * Source/cmDSPMakefile.cxx, Source/cmDSPWriter.cxx,
  3276. Source/cmDSPMakefile.h, Source/cmDSPWriter.h,
  3277. Source/cmDSWMakefile.cxx, Source/cmDSWWriter.cxx: BUG: fix circular
  3278. depends on libraries and remove depends for static libraries
  3279. 2001-02-28 14:34 king
  3280. * Source/cmCableCommand.cxx, Source/cmCableCommand.h,
  3281. Source/cmCableData.cxx, Source/cmCableData.h,
  3282. Source/cmCableDefineSetCommand.cxx,
  3283. Source/cmCableDefineSetCommand.h,
  3284. Source/cmCableInstantiateClassCommand.cxx,
  3285. Source/cmCableInstantiateClassCommand.h,
  3286. Source/cmCableInstantiateCommand.cxx,
  3287. Source/cmCableInstantiateCommand.h, Source/cmCommands.cxx: ENH:
  3288. CABIL -> CABLE rename.
  3289. 2001-02-27 21:44 martink
  3290. * Source/cmClassFile.h: added wrap exclude ivar
  3291. 2001-02-27 21:44 martink
  3292. * Source/cmBuildSharedLibrariesCommand.cxx,
  3293. Source/cmBuildSharedLibrariesCommand.h,
  3294. Source/cmWrapExcludeFilesCommand.cxx,
  3295. Source/cmWrapExcludeFilesCommand.h: new commands
  3296. 2001-02-27 21:44 martink
  3297. * Source/DLLFooter.dsptemplate, Source/DLLHeader.dsptemplate: dll
  3298. build rules
  3299. 2001-02-27 21:44 martink
  3300. * Source/cmWrapTclCommand.cxx: bug fixes
  3301. 2001-02-27 21:44 martink
  3302. * Source/cmCommands.cxx: added new commands
  3303. 2001-02-27 21:44 martink
  3304. * Source/cmDSPMakefile.cxx, Source/cmDSPMakefile.h,
  3305. Source/cmDSPWriter.cxx, Source/cmDSPWriter.h,
  3306. Source/cmDSWMakefile.cxx, Source/cmDSWWriter.cxx: many enhancements
  3307. including dll support
  3308. 2001-02-27 21:44 martink
  3309. * Source/staticLibHeader.dsptemplate: change in options for much
  3310. smaller libraries
  3311. 2001-02-27 21:28 king
  3312. * Source/cmCableCommand.h, Source/cmCableDefineSetCommand.cxx,
  3313. Source/cmCableDefineSetCommand.h,
  3314. Source/cmCableInstantiateClassCommand.cxx,
  3315. Source/cmCableInstantiateClassCommand.h,
  3316. Source/cmCableInstantiateCommand.cxx,
  3317. Source/cmCableInstantiateCommand.h, Source/cmCommands.cxx: ENH:
  3318. Implemented automatic tag generation for CABIL_DEFINE_SET command.
  3319. Added tag output to WriteConfiguration methods. Added
  3320. CABIL_INSTANTIATE_CLASS command to generate explicit class template
  3321. instantiation configuration output.
  3322. 2001-02-27 20:41 king
  3323. * Source/cmSystemTools.cxx: ENH/BUG: Improved function parsing to
  3324. allow just about anything inside a double-quoted argument. Also
  3325. fixed parsing of lines with both quoted and non-quoted arguments.
  3326. 2001-02-27 17:00 lorensen
  3327. * Source/cmSystemTools.cxx: ENH: mask on mkdir set to 777.
  3328. 2001-02-27 17:00 lorensen
  3329. * Source/CMakeBuildTargets.cxx: ERR: missing std:: on cout.
  3330. 2001-02-27 01:58 millerjv
  3331. * Source/staticLibHeader.dsptemplate: FIX: added /GR to MinSize
  3332. build to avoid warnings about dynamic cast
  3333. 2001-02-26 23:20 king
  3334. * Source/cmCableInstantiateCommand.cxx: ERR: Fixed configuration
  3335. file output to open file in output directory.
  3336. 2001-02-26 23:16 king
  3337. * Source/cmWrapTclCommand.cxx: int -> unsigned int
  3338. 2001-02-26 22:58 king
  3339. * Source/cmStandardIncludes.h: ERR: fsream.h -> fstream.h
  3340. 2001-02-26 22:58 king
  3341. * Source/cmCableCommand.cxx, Source/cmCableCommand.h,
  3342. Source/cmCableData.cxx, Source/cmCableData.h,
  3343. Source/cmCableDefineSetCommand.cxx,
  3344. Source/cmCableDefineSetCommand.h,
  3345. Source/cmCableInstantiateCommand.cxx,
  3346. Source/cmCableInstantiateCommand.h, Source/cmCommands.cxx: ENH:
  3347. Added CABIL commands for configuration file generation.
  3348. 2001-02-26 22:58 king
  3349. * Source/cmMakefile.h: ENH: Added GetUsedCommands() method.
  3350. 2001-02-26 22:13 martink
  3351. * Source/cmWrapTclCommand.cxx, Source/cmWrapTclCommand.h: very
  3352. early version of a wrapper
  3353. 2001-02-26 22:13 martink
  3354. * Source/cmCommands.cxx, Source/cmDSPMakefile.cxx,
  3355. Source/cmDSPMakefile.h, Source/cmDSPWriter.cxx,
  3356. Source/cmDSPWriter.h, Source/cmMakefile.h: a variety of fixes and
  3357. enhancements
  3358. 2001-02-26 22:13 martink
  3359. * Source/cmClassFile.cxx, Source/cmClassFile.h: added
  3360. functionality, fixed bug if no file existed and with header files
  3361. 2001-02-26 22:13 martink
  3362. * Source/cmFindProgramCommand.cxx, Source/cmFindProgramCommand.h:
  3363. fixed bug and modified functionality
  3364. 2001-02-26 22:13 martink
  3365. * Source/cmFindFileCommand.cxx, Source/cmFindFileCommand.h: new
  3366. command
  3367. 2001-02-26 18:25 king
  3368. * Source/cmMakefile.cxx: ERR: Fixed unknown command output error
  3369. message for spacing.
  3370. 2001-02-26 17:07 king
  3371. * Source/cmAbstractFilesCommand.h, Source/cmAddTargetCommand.h,
  3372. Source/cmAuxSourceDirectoryCommand.h, Source/cmCommand.h,
  3373. Source/cmExecutablesCommand.h, Source/cmFindIncludeCommand.h,
  3374. Source/cmFindLibraryCommand.h, Source/cmFindProgramCommand.h,
  3375. Source/cmIncludeDirectoryCommand.h, Source/cmLibraryCommand.h,
  3376. Source/cmLinkDirectoriesCommand.h, Source/cmLinkLibrariesCommand.h,
  3377. Source/cmProjectCommand.h, Source/cmSourceFilesCommand.h,
  3378. Source/cmSourceFilesRequireCommand.h, Source/cmSubdirCommand.h,
  3379. Source/cmTestsCommand.h, Source/cmUnixDefinesCommand.h,
  3380. Source/cmUnixLibrariesCommand.h, Source/cmWin32DefinesCommand.h,
  3381. Source/cmWin32LibrariesCommand.h: ENH: Added safe downcast support
  3382. (without RTTI) to cmCommand and its subclasses.
  3383. 2001-02-23 15:40 king
  3384. * Source/cmAbstractFilesCommand.cxx, Source/cmCommand.h,
  3385. Source/cmCommands.h, Source/cmConfigureFileNoAutoconf.h,
  3386. Source/cmFindIncludeCommand.cxx, Source/cmFindLibraryCommand.cxx,
  3387. Source/cmFindProgramCommand.cxx, Source/cmMakefile.cxx,
  3388. Source/cmUnixMakefileGenerator.cxx: ERR: Fixed warnings
  3389. (int->unsigned int and a few others).
  3390. 2001-02-23 00:37 hoffman
  3391. * configure.in.sample: ENH: update sample
  3392. 2001-02-23 00:31 hoffman
  3393. * Source/cmSystemTools.cxx: BUG: remove debug print
  3394. 2001-02-23 00:23 hoffman
  3395. * Source/CMakeBuildTargets.cxx, Source/Makefile.in,
  3396. Source/cmCacheManager.cxx, Source/cmCacheManager.h,
  3397. Source/cmConfigureFileNoAutoconf.cxx, Source/cmDSPMakefile.cxx,
  3398. Source/cmDSPWriter.cxx, Source/cmDSWMakefile.cxx,
  3399. Source/cmDSWWriter.cxx, Source/cmMakefile.cxx, Source/cmMakefile.h,
  3400. Source/cmStandardIncludes.h, Source/cmSystemTools.cxx,
  3401. Source/cmSystemTools.h, Source/MFCDialog/CMakeSetupDialog.cpp,
  3402. CMakeRules.make.in, CMakeTopMakefileTemplate.in,
  3403. Source/cmConfigure.h.in: ENH: add CMakeCache.txt support
  3404. 2001-02-20 19:12 hoffman
  3405. * Source/cmSystemTools.cxx: ENH: remove relative and extra paths in
  3406. CMakeLists.txt files
  3407. 2001-02-20 17:25 hoffman
  3408. * CMakeRules.make.in: BUG: fix for in source build
  3409. 2001-02-19 20:13 hoffman
  3410. * CMakeMakefileTemplate.in, MakefileTemplate.in,
  3411. configure.in.sample, Source/CMakeBuildTargets.cxx,
  3412. Source/CMakeSetupCMD.cxx, Source/Makefile.in,
  3413. Source/cmCacheManager.cxx, Source/cmCacheManager.h,
  3414. Source/cmCommand.h, Source/cmDSWMakefile.cxx,
  3415. Source/cmDSWWriter.cxx, Source/cmFindIncludeCommand.cxx,
  3416. Source/cmFindLibraryCommand.cxx, Source/cmFindProgramCommand.cxx,
  3417. Source/cmIncludeDirectoryCommand.cxx, Source/cmMakefile.cxx,
  3418. Source/cmRegularExpression.h, Source/cmSystemTools.cxx,
  3419. Source/cmUnixMakefileGenerator.cxx,
  3420. Source/cmUnixMakefileGenerator.h, Source/MFCDialog/CMakeSetup.rc,
  3421. Source/MFCDialog/CMakeSetupDialog.cpp, Source/MFCDialog/resource.h:
  3422. ENH: first pass at cache, clean up the unix generator, clean up
  3423. configure.in some
  3424. 2001-02-18 18:02 hoffman
  3425. * configure.in.sample: ENH: add a smaple configure.in for CMake
  3426. based projects
  3427. 2001-02-18 17:47 hoffman
  3428. * configure.in.sample: ENH: add a smaple configure.in for CMake
  3429. based projects
  3430. 2001-02-16 20:34 hoffman
  3431. * Source/cmCacheManager.h: ENH: clean up comments some
  3432. 2001-02-16 20:01 will
  3433. * CMake.pdf: ENH:Added pdf file
  3434. 2001-02-16 16:52 martink
  3435. * CMake.doc: clean up docs
  3436. 2001-02-16 16:34 martink
  3437. * Source/cmConfigureFileNoAutoconf.cxx, Source/cmDSWMakefile.cxx,
  3438. Source/cmDSWWriter.cxx, Source/cmFindIncludeCommand.cxx,
  3439. Source/cmFindLibraryCommand.cxx, Source/cmFindLibraryCommand.h,
  3440. Source/cmFindProgramCommand.cxx, Source/cmMakefile.cxx,
  3441. Source/cmMakefile.h, Source/cmSystemTools.cxx,
  3442. Source/cmSystemTools.h: ENH: add new commands fro find library and
  3443. find program
  3444. 2001-02-15 18:30 martink
  3445. * CMakeRules.make.in, CMakeVariables.make.in,
  3446. Source/CMakeBuildTargets.cxx, Source/CMakeSetupCMD.cxx,
  3447. Source/cmClassFile.cxx, Source/cmClassFile.h,
  3448. Source/cmConfigureFileNoAutoconf.h, Source/cmDSPMakefile.cxx,
  3449. Source/cmDSPWriter.cxx, Source/cmDSWMakefile.cxx,
  3450. Source/cmDSWWriter.cxx, Source/cmMakefile.cxx, Source/cmMakefile.h,
  3451. Source/cmProjectCommand.cxx, Source/cmProjectCommand.h,
  3452. Source/MFCDialog/CMakeSetupDialog.cpp: some cleanup and fixes
  3453. 2001-02-14 17:58 hoffman
  3454. * Source/MFCDialog/CMakeSetupDialog.cpp: BUG: set output directory
  3455. correctly
  3456. 2001-02-14 17:26 hoffman
  3457. * Source/cmMakeDepend.cxx: ENH: fix depend segfault
  3458. 2001-02-13 23:49 hoffman
  3459. * Source/cmConfigureFileNoAutoconf.cxx, Source/cmMakefile.cxx: ENH:
  3460. new vnl
  3461. 2001-02-13 21:48 hoffman
  3462. * Source/cmMakefile.cxx, Source/cmMakefile.h: ENH: add configure
  3463. style @var@ expansion
  3464. 2001-02-13 00:49 hoffman
  3465. * Source/CMakeBuildTargets.cxx, Source/Makefile.in,
  3466. Source/cmCommands.cxx, Source/cmConfigureFileNoAutoconf.cxx,
  3467. Source/cmConfigureFileNoAutoconf.h,
  3468. Source/cmConfigureHeaderCommand.cxx,
  3469. Source/cmConfigureHeaderCommand.h, Source/cmMakefile.cxx,
  3470. Source/cmMakefile.h, Source/cmStandardIncludes.h,
  3471. Source/cmSystemTools.cxx, Source/MFCDialog/CMakeSetupDialog.cpp,
  3472. Source/cmCommands.h: ENH: get rid of special msc configure file
  3473. 2001-02-12 19:42 hoffman
  3474. * Source/CMakeLib.dsp, Source/CMakeSetup.dsw,
  3475. Source/CMakeSetupCMD.dsp, Source/MFCDialog/CMakeSetup.dsp: ENH:
  3476. share a .lib with the command line and mfc versions.
  3477. 2001-02-12 19:26 hoffman
  3478. * Source/CMakeLib.dsp, Source/CMakeSetup.dsw,
  3479. Source/CMakeSetupCMD.cxx, Source/CMakeSetupCMD.dsp,
  3480. Source/Makefile.in, Source/cmCacheManager.cxx,
  3481. Source/cmCacheManager.h, Source/cmCommands.cxx,
  3482. Source/cmConfigureHeaderCommand.cxx,
  3483. Source/cmConfigureHeaderCommand.h, Source/cmDSWMakefile.cxx,
  3484. Source/cmDSWWriter.cxx, Source/cmMSProjectGenerator.h,
  3485. Source/MFCDialog/CMakeSetup.dsp,
  3486. Source/MFCDialog/CMakeSetupDialog.cpp: ENH: add cache manager
  3487. class, move all commands into cmCommands.cxx to speed up compile
  3488. times, share a .lib with the command line and mfc versions.
  3489. 2001-02-06 22:01 hoffman
  3490. * Source/staticLibHeader.dsptemplate: ENH: add /GX /Zm1000
  3491. 2001-02-06 21:48 hoffman
  3492. * Source/staticLibHeader.dsptemplate: ENH: min size build
  3493. 2001-02-06 15:52 hoffman
  3494. * Source/staticLibHeader.dsptemplate: ENH: put back /Zm1000 so we
  3495. can build large files
  3496. 2001-02-06 13:54 millerjv
  3497. * Source/EXEHeader.dsptemplate: FIX: added /force to link options
  3498. and removed precompiled header usage
  3499. 2001-02-06 13:54 millerjv
  3500. * Source/staticLibHeader.dsptemplate: FIX: remove precompiled
  3501. header settings
  3502. 2001-01-25 20:48 millerjv
  3503. * Source/EXEHeader.dsptemplate, Source/staticLibHeader.dsptemplate:
  3504. BUG: backed off on the compiler optimization used. Instead of
  3505. using /O2, we now use all the components of /Ox (/Ob1 /Oi /Ot /Oy
  3506. /Gs) except for /Og
  3507. 2001-01-22 15:00 will
  3508. * Source/CMakeSetupCMD.dsp: BUG: convert to dos format
  3509. 2001-01-22 14:49 will
  3510. * Source/CMakeSetup.dsw, Source/CMakeSetupCMD.dsp,
  3511. Source/MFCDialog/CMakeSetup.dsp, Source/CMakeSetup.dsw,
  3512. Source/CMakeSetupCMD.dsp, Source/MFCDialog/CMakeSetup.dsp: BUG:
  3513. make dsp and dsw files binary
  3514. 2001-01-18 18:43 will
  3515. * README: ENH:Commands not rules
  3516. 2001-01-18 17:06 will
  3517. * Source/Makefile.in: ERR:Oops, use SimpleRule not SimpleCommand
  3518. 2001-01-18 16:51 will
  3519. * CMakeCommands.make.in, CMakeMaster.make.in, CMakeRules.make.in,
  3520. CMakeSimpleCommands.make.in, CMakeSimpleRules.make.in: ERR:Oops,
  3521. renamed back
  3522. 2001-01-18 16:20 will
  3523. * CMakeCommands.make.in, CMakeMaster.make.in, CMakeRules.make.in,
  3524. CMakeSimpleCommands.make.in, CMakeSimpleRules.make.in,
  3525. Source/CMakeSetupCMD.dsp, Source/Makefile.in,
  3526. Source/cmAbstractFilesCommand.cxx, Source/cmAbstractFilesCommand.h,
  3527. Source/cmAbstractFilesRule.cxx, Source/cmAbstractFilesRule.h,
  3528. Source/cmAddTargetCommand.cxx, Source/cmAddTargetCommand.h,
  3529. Source/cmAddTargetRule.cxx, Source/cmAddTargetRule.h,
  3530. Source/cmAuxSourceDirectoryCommand.cxx,
  3531. Source/cmAuxSourceDirectoryCommand.h,
  3532. Source/cmAuxSourceDirectoryRule.cxx,
  3533. Source/cmAuxSourceDirectoryRule.h, Source/cmCommand.h,
  3534. Source/cmDumpDocumentation.cxx, Source/cmExecutablesCommand.cxx,
  3535. Source/cmExecutablesCommand.h, Source/cmExecutablesRule.cxx,
  3536. Source/cmExecutablesRule.h, Source/cmFindIncludeCommand.cxx,
  3537. Source/cmFindIncludeCommand.h, Source/cmFindIncludeRule.cxx,
  3538. Source/cmFindIncludeRule.h, Source/cmFindLibraryCommand.cxx,
  3539. Source/cmFindLibraryCommand.h, Source/cmFindLibraryRule.cxx,
  3540. Source/cmFindLibraryRule.h, Source/cmFindProgramCommand.cxx,
  3541. Source/cmFindProgramCommand.h, Source/cmFindProgramRule.cxx,
  3542. Source/cmFindProgramRule.h, Source/cmIncludeDirectoryCommand.cxx,
  3543. Source/cmIncludeDirectoryCommand.h,
  3544. Source/cmIncludeDirectoryRule.cxx, Source/cmIncludeDirectoryRule.h,
  3545. Source/cmLibraryCommand.cxx, Source/cmLibraryCommand.h,
  3546. Source/cmLibraryRule.cxx, Source/cmLibraryRule.h,
  3547. Source/cmLinkDirectoriesCommand.cxx,
  3548. Source/cmLinkDirectoriesCommand.h,
  3549. Source/cmLinkDirectoriesRule.cxx, Source/cmLinkDirectoriesRule.h,
  3550. Source/cmLinkLibrariesCommand.cxx, Source/cmLinkLibrariesCommand.h,
  3551. Source/cmLinkLibrariesRule.cxx, Source/cmLinkLibrariesRule.h,
  3552. Source/cmMakefile.cxx, Source/cmMakefile.h,
  3553. Source/cmMakefileGenerator.h, Source/cmProjectCommand.cxx,
  3554. Source/cmProjectCommand.h, Source/cmProjectRule.cxx,
  3555. Source/cmProjectRule.h, Source/cmRuleMaker.h,
  3556. Source/cmSourceFilesCommand.cxx, Source/cmSourceFilesCommand.h,
  3557. Source/cmSourceFilesRequireCommand.cxx,
  3558. Source/cmSourceFilesRequireCommand.h,
  3559. Source/cmSourceFilesRequireRule.cxx,
  3560. Source/cmSourceFilesRequireRule.h, Source/cmSourceFilesRule.cxx,
  3561. Source/cmSourceFilesRule.h, Source/cmSubdirCommand.cxx,
  3562. Source/cmSubdirCommand.h, Source/cmSubdirRule.cxx,
  3563. Source/cmSubdirRule.h, Source/cmSystemTools.h,
  3564. Source/cmTestsCommand.cxx, Source/cmTestsCommand.h,
  3565. Source/cmTestsRule.cxx, Source/cmTestsRule.h,
  3566. Source/cmUnixDefinesCommand.cxx, Source/cmUnixDefinesCommand.h,
  3567. Source/cmUnixDefinesRule.cxx, Source/cmUnixDefinesRule.h,
  3568. Source/cmUnixLibrariesCommand.cxx, Source/cmUnixLibrariesCommand.h,
  3569. Source/cmUnixLibrariesRule.cxx, Source/cmUnixLibrariesRule.h,
  3570. Source/cmWin32DefinesCommand.cxx, Source/cmWin32DefinesCommand.h,
  3571. Source/cmWin32DefinesRule.cxx, Source/cmWin32DefinesRule.h,
  3572. Source/cmWin32LibrariesCommand.cxx,
  3573. Source/cmWin32LibrariesCommand.h, Source/cmWin32LibrariesRule.cxx,
  3574. Source/cmWin32LibrariesRule.h, Source/MFCDialog/CMakeSetup.dsp:
  3575. ENH:Reworked CMake for consistency
  3576. 2001-01-12 19:35 will
  3577. * README, Source/cmAbstractFilesRule.h, Source/cmAddTargetRule.h,
  3578. Source/cmAuxSourceDirectoryRule.h, Source/cmExecutablesRule.h,
  3579. Source/cmFindIncludeRule.h, Source/cmFindLibraryRule.h,
  3580. Source/cmFindProgramRule.h, Source/cmIncludeDirectoryRule.h,
  3581. Source/cmLibraryRule.h, Source/cmLinkDirectoriesRule.h,
  3582. Source/cmLinkLibrariesRule.h, Source/cmMakefile.cxx,
  3583. Source/cmProjectRule.h, Source/cmRuleMaker.h,
  3584. Source/cmSourceFilesRequireRule.h, Source/cmSourceFilesRule.h,
  3585. Source/cmSubdirRule.h, Source/cmTestsRule.h,
  3586. Source/cmUnixDefinesRule.h, Source/cmUnixLibrariesRule.h,
  3587. Source/cmWin32DefinesRule.h, Source/cmWin32LibrariesRule.h:
  3588. ENH:Tweaks to dump documentation
  3589. 2001-01-12 19:05 hoffman
  3590. * Source/cmDSPMakefile.cxx, Source/cmDSPWriter.cxx: ENH: add define
  3591. flags in the right place
  3592. 2001-01-12 18:48 hoffman
  3593. * Source/cmSystemTools.cxx: BUG: add check for missing ) on
  3594. function
  3595. 2001-01-12 18:48 hoffman
  3596. * Source/MFCDialog/CMakeSetupDialog.cpp: ENH: allow continue if
  3597. missing MSC configure file
  3598. 2001-01-12 18:07 will
  3599. * README, Source/cmAuxSourceDirectoryRule.h,
  3600. Source/cmIncludeDirectoryRule.h, Source/cmLinkLibrariesRule.h,
  3601. Source/cmProjectRule.h, Source/cmSourceFilesRequireRule.h,
  3602. Source/cmSubdirRule.h, Source/cmUnixDefinesRule.h,
  3603. Source/cmWin32DefinesRule.h: ENH:Tweaks to dump documentation
  3604. 2001-01-12 17:49 will
  3605. * Source/cmAddTargetRule.h, Source/cmMakefile.cxx: ENH:Tweaks to
  3606. documentation
  3607. 2001-01-12 17:49 will
  3608. * README: ENH:Updated for rule-based CMake
  3609. 2001-01-12 17:42 will
  3610. * Source/cmDumpDocumentation.cxx, Source/cmMakefile.cxx,
  3611. Source/cmMakefile.h: ENH:Simple program dumps out internal
  3612. documentation for CMake
  3613. 2001-01-12 12:43 will
  3614. * README: README
  3615. 2001-01-11 21:19 will
  3616. * doxygen.config: ENH:Doxygenated CMake
  3617. 2001-01-11 19:55 will
  3618. * Source/CMakeBuildTargets.cxx, Source/CMakeSetupCMD.cxx,
  3619. Source/cmAbstractFilesRule.cxx, Source/cmClassFile.cxx,
  3620. Source/cmDSPMakefile.cxx, Source/cmDSPWriter.cxx,
  3621. Source/cmDSWMakefile.cxx, Source/cmDSWWriter.cxx,
  3622. Source/cmExecutablesRule.cxx, Source/cmFindIncludeRule.cxx,
  3623. Source/cmFindLibraryRule.cxx, Source/cmFindProgramRule.cxx,
  3624. Source/cmIncludeDirectoryRule.cxx, Source/cmLibraryRule.cxx,
  3625. Source/cmLinkDirectoriesRule.cxx, Source/cmLinkLibrariesRule.cxx,
  3626. Source/cmMSProjectGenerator.cxx, Source/cmMakeDepend.cxx,
  3627. Source/cmMakefile.cxx, Source/cmMakefileGenerator.cxx,
  3628. Source/cmProjectRule.cxx, Source/cmSourceFilesRequireRule.cxx,
  3629. Source/cmSourceFilesRule.cxx, Source/cmSubdirRule.cxx,
  3630. Source/cmSystemTools.cxx, Source/cmTestsRule.cxx,
  3631. Source/cmUnixDefinesRule.cxx, Source/cmUnixLibrariesRule.cxx,
  3632. Source/cmWin32DefinesRule.cxx, Source/cmWin32LibrariesRule.cxx:
  3633. ENH:Documentation and cleanups
  3634. 2001-01-11 19:47 will
  3635. * Source/CMakeSetupCMD.cxx, Source/cmAddTargetRule.cxx,
  3636. Source/cmAuxSourceDirectoryRule.cxx, Source/cmClassFile.h,
  3637. Source/cmDSWMakefile.cxx, Source/cmDSWMakefile.h,
  3638. Source/cmDSWWriter.cxx, Source/cmDSWWriter.h, Source/cmDirectory.h,
  3639. Source/cmFindProgramRule.h, Source/cmMSProjectGenerator.cxx,
  3640. Source/cmMSProjectGenerator.h, Source/cmMakeDepend.h,
  3641. Source/cmMakefile.h, Source/cmMakefileGenerator.h,
  3642. Source/cmRegularExpression.cxx, Source/cmRegularExpression.h,
  3643. Source/cmStandardIncludes.h, Source/cmSystemTools.cxx,
  3644. Source/cmSystemTools.h, Source/cmUnixMakefileGenerator.cxx,
  3645. Source/cmUnixMakefileGenerator.h, Source/cmWindowsConfigure.cxx,
  3646. Source/cmWindowsConfigure.h: ENH:Documentation and cleanups
  3647. 2001-01-11 16:35 blezek
  3648. * Source/cmWin32DefinesRule.cxx, Source/cmWin32LibrariesRule.cxx:
  3649. BUG: Broken on non WIN32 platforms, changed SetEnableOff to
  3650. EnabledOff
  3651. 2001-01-11 13:04 will
  3652. * Source/cmFindIncludeRule.h, Source/cmFindLibraryRule.h,
  3653. Source/cmFindProgramRule.h, Source/cmIncludeDirectoryRule.h,
  3654. Source/cmLibraryRule.h, Source/cmLinkDirectoriesRule.h,
  3655. Source/cmLinkLibrariesRule.h, Source/cmProjectRule.h,
  3656. Source/cmSourceFilesRequireRule.h, Source/cmSourceFilesRule.h,
  3657. Source/cmSubdirRule.h, Source/cmTestsRule.h,
  3658. Source/cmUnixDefinesRule.h, Source/cmUnixLibrariesRule.h,
  3659. Source/cmWin32DefinesRule.h, Source/cmWin32LibrariesRule.h:
  3660. ENH:Added documentation; clean-up
  3661. 2001-01-10 22:29 will
  3662. * Source/cmExecutablesRule.h, Source/cmFindIncludeRule.h:
  3663. ENH:Beginning clean up; adding documentation
  3664. 2001-01-10 22:13 will
  3665. * Source/cmAuxSourceDirectoryRule.h: ENH:Beginning clean up; adding
  3666. documentation
  3667. 2001-01-10 22:05 will
  3668. * Source/cmAbstractFilesRule.h, Source/cmAddTargetRule.h,
  3669. Source/cmAuxSourceDirectoryRule.h, Source/cmDSPMakefile.h,
  3670. Source/cmDSPWriter.h, Source/cmExecutablesRule.h,
  3671. Source/cmFindIncludeRule.h, Source/cmFindLibraryRule.h,
  3672. Source/cmFindProgramRule.h, Source/cmIncludeDirectoryRule.h,
  3673. Source/cmLibraryRule.h, Source/cmLinkDirectoriesRule.h,
  3674. Source/cmLinkLibrariesRule.h, Source/cmProjectRule.h,
  3675. Source/cmRuleMaker.h, Source/cmSourceFilesRequireRule.h,
  3676. Source/cmSourceFilesRule.h, Source/cmSubdirRule.h,
  3677. Source/cmTestsRule.h, Source/cmUnixDefinesRule.cxx,
  3678. Source/cmUnixDefinesRule.h, Source/cmUnixLibrariesRule.cxx,
  3679. Source/cmUnixLibrariesRule.h, Source/cmWin32DefinesRule.h,
  3680. Source/cmWin32LibrariesRule.h: ENH:Beginning clean up; adding
  3681. documentation
  3682. 2001-01-09 20:13 hoffman
  3683. * Source/cmUnixMakefileGenerator.cxx: BUG: look for -l and -L only
  3684. at the begining of a link string
  3685. 2001-01-05 18:49 blezek
  3686. * Source/cmMakefileGenerator.cxx: BUG: Looking for
  3687. cmMakeFileGenerator.h rather than cmMakefileGenerator.h
  3688. 2001-01-05 18:49 blezek
  3689. * Source/CMakeBuildTargets.cxx, Source/CMakeSetupCMD.cxx: BUG: main
  3690. can not be void under ANSI C++
  3691. 2001-01-05 16:41 hoffman
  3692. * Source/CMakeBuildTargets.cxx, Source/CMakeSetupCMD.cxx,
  3693. Source/CMakeSetupCMD.dsp, Source/Makefile.in,
  3694. Source/cmAbstractFilesRule.cxx, Source/cmAbstractFilesRule.h,
  3695. Source/cmAddTargetRule.cxx, Source/cmAddTargetRule.h,
  3696. Source/cmAuxSourceDirectoryRule.cxx,
  3697. Source/cmAuxSourceDirectoryRule.h, Source/cmClassFile.cxx,
  3698. Source/cmClassFile.h, Source/cmCollectFlags.cxx,
  3699. Source/cmCollectFlags.h, Source/cmDSPMakefile.cxx,
  3700. Source/cmDSPMakefile.h, Source/cmDSPWriter.cxx,
  3701. Source/cmDSPWriter.h, Source/cmDSWMakefile.cxx,
  3702. Source/cmDSWWriter.cxx, Source/cmDSWMakefile.h,
  3703. Source/cmDSWWriter.h, Source/cmDirectory.cxx, Source/cmDirectory.h,
  3704. Source/cmExecutablesRule.cxx, Source/cmExecutablesRule.h,
  3705. Source/cmFindIncludeRule.cxx, Source/cmFindIncludeRule.h,
  3706. Source/cmFindLibraryRule.cxx, Source/cmFindLibraryRule.h,
  3707. Source/cmFindProgramRule.cxx, Source/cmFindProgramRule.h,
  3708. Source/cmIncludeDirectoryRule.cxx, Source/cmIncludeDirectoryRule.h,
  3709. Source/cmLibraryRule.cxx, Source/cmLibraryRule.h,
  3710. Source/cmLinkDirectoriesRule.cxx, Source/cmLinkDirectoriesRule.h,
  3711. Source/cmLinkLibrariesRule.cxx, Source/cmLinkLibrariesRule.h,
  3712. Source/cmMSProjectGenerator.cxx, Source/cmMSProjectGenerator.h,
  3713. Source/cmMakeDepend.cxx, Source/cmMakeDepend.h,
  3714. Source/cmMakefile.cxx, Source/cmMakefile.h,
  3715. Source/cmMakefileGenerator.cxx, Source/cmMakefileGenerator.h,
  3716. Source/cmProjectRule.cxx, Source/cmProjectRule.h,
  3717. Source/cmRegularExpression.cxx, Source/cmRegularExpression.h,
  3718. Source/cmRuleMaker.h, Source/cmSourceFilesRequireRule.cxx,
  3719. Source/cmSourceFilesRequireRule.h, Source/cmSourceFilesRule.cxx,
  3720. Source/cmSourceFilesRule.h, Source/cmStandardIncludes.h,
  3721. Source/cmSubdirRule.cxx, Source/cmSubdirRule.h,
  3722. Source/cmSystemTools.cxx, Source/cmSystemTools.h,
  3723. Source/cmTestsRule.cxx, Source/cmTestsRule.h,
  3724. Source/cmUnixDefinesRule.cxx, Source/cmUnixDefinesRule.h,
  3725. Source/cmUnixLibrariesRule.cxx, Source/cmUnixLibrariesRule.h,
  3726. Source/cmUnixMakefile.cxx, Source/cmUnixMakefile.h,
  3727. Source/cmUnixMakefileGenerator.cxx,
  3728. Source/cmUnixMakefileGenerator.h, Source/cmWin32DefinesRule.cxx,
  3729. Source/cmWin32DefinesRule.h, Source/cmWin32LibrariesRule.cxx,
  3730. Source/cmWin32LibrariesRule.h, Source/cmWindowsConfigure.cxx,
  3731. Source/cmWindowsConfigure.h, Source/MFCDialog/CMakeSetup.dsp,
  3732. Source/MFCDialog/CMakeSetupDialog.cpp: ENH: rework cmake, added
  3733. ruleMaker classes and changed the syntax of the CMakeLists.txt
  3734. files.
  3735. 2000-12-07 20:45 blezek
  3736. * Source/cmMakefile.cxx: ENH: Added TESTS target
  3737. 2000-11-22 16:02 hoffman
  3738. * Source/cmMakeDepend.cxx: BUG: remove bogus warning about not
  3739. finding a depend file, if there are no include paths
  3740. 2000-11-10 22:13 hoffman
  3741. * Source/MFCDialog/CMakeSetupDialog.cpp: BUG: fix inplace build
  3742. 2000-11-09 15:41 will
  3743. * README, Source/cmCollectFlags.cxx, Source/cmCollectFlags.h,
  3744. Source/cmWindowsConfigure.cxx: ENH:Changed CMAKE_SOURCE_ROOT to
  3745. CMAKE_SOURCE_DIR
  3746. 2000-11-03 21:37 hoffman
  3747. * README: [no log message]
  3748. 2000-11-03 21:37 hoffman
  3749. * Source/MFCDialog/CMakeSetupDialog.cpp,
  3750. Source/MFCDialog/CMakeSetupDialog.h: ENH: add ability to run from
  3751. different directories
  3752. 2000-11-02 16:13 hoffman
  3753. * Source/cmMakefile.cxx: BUG: make sure SOURCE_FILES starts at the
  3754. begining of line
  3755. 2000-11-02 15:56 blezek
  3756. * CMakeVariables.make.in: ENH: Moved @JAVA@ to @JAVACOMMAND@
  3757. 2000-11-02 15:24 will
  3758. * README, Source/cmClassFile.cxx, Source/cmMakefile.cxx:
  3759. ENH:Reworked CMake to clearer indicate what the variables do
  3760. 2000-10-25 21:18 hoffman
  3761. * Source/cmSystemTools.cxx, Source/cmSystemTools.cxx: BUG: remove
  3762. tabs from classnames
  3763. 2000-10-04 13:58 lorensen
  3764. * CMakeVariables.make.in: Enh: Added TCLSH
  3765. 2000-10-02 18:21 blezek
  3766. * Source/CMakeBuildTargets.cxx: BUG: if the path to your source
  3767. directory has a -S in it, it will be picked up as the source
  3768. directory by the command line parser, because it matches -S at any
  3769. character position in the argements. Bad, should have used getopt,
  3770. except that it is not cross platform.
  3771. 2000-10-02 17:50 blezek
  3772. * CMakeVariables.make.in: ENH: Support for XML builds and Dashboard
  3773. 2000-09-28 16:43 blezek
  3774. * README: ENH: Added note about VERBATIM targets in CMakeList.txt
  3775. 2000-09-27 19:01 hoffman
  3776. * CMakeMaster.make.in, CMakeRules.make.in, CMakeVariables.make.in,
  3777. README, Source/cmDSWMakefile.cxx, Source/cmDSWMakefile.h,
  3778. Source/cmDSWWriter.cxx, Source/cmDSWWriter.h,
  3779. Source/cmMakefile.cxx, Source/cmMakefile.h,
  3780. Source/cmSystemTools.cxx, Source/cmSystemTools.h,
  3781. Source/cmUnixMakefile.cxx, Source/cmUnixMakefile.h: ENH: change ME
  3782. to LIBRARY and added PROJECT, also remove ITK stuff and replaced
  3783. with CMake
  3784. 2000-09-21 17:45 hoffman
  3785. * README, Source/CMakeBuildTargets.cxx, Source/CMakeSetupCMD.cxx,
  3786. Source/cmCollectFlags.cxx, Source/cmCollectFlags.h,
  3787. Source/cmDSPMakefile.cxx, Source/cmDSPWriter.cxx,
  3788. Source/cmDSWMakefile.cxx, Source/cmDSWWriter.cxx,
  3789. Source/cmMakeDepend.cxx, Source/cmMakefile.cxx,
  3790. Source/cmMakefile.h, Source/cmUnixMakefile.cxx,
  3791. Source/itkVC60Configure.cxx, Source/itkVC60Configure.h: ENH: clean
  3792. up code, and varible names
  3793. 2000-09-18 14:19 hoffman
  3794. * Source/cmUnixMakefile.cxx: BUG: remove cout
  3795. 2000-09-18 13:19 hoffman
  3796. * CMakeRules.make.in, CMakeVariables.make.in, README,
  3797. Source/cmDSPMakefile.cxx, Source/cmDSPWriter.cxx,
  3798. Source/cmMakeDepend.cxx, Source/cmUnixMakefile.cxx,
  3799. Source/cmWindowsConfigure.cxx, Source/cmWindowsConfigure.h,
  3800. Source/MFCDialog/CMakeSetup.dsp, Source/MFCDialog/CMakeSetup.rc,
  3801. Source/MFCDialog/CMakeSetupDialog.cpp, Source/MFCDialog/resource.h:
  3802. ENH: added a config setup file for CMakeSetup. Cleaned up the
  3803. names of the source and binary directories
  3804. 2000-09-18 11:27 hoffman
  3805. * Source/CMakeSetupCMD.dsp, Source/MFCDialog/CMakeSetup.dsp: ENH:
  3806. remove unused files
  3807. 2000-09-12 10:44 hoffman
  3808. * CMakeRules.make.in, CMakeVariables.make.in: BUG: fix build in
  3809. place source directory
  3810. 2000-09-12 09:37 hoffman
  3811. * Source/cmCollectFlags.cxx, Source/cmCollectFlags.h: NEW: class to
  3812. collect all the flags from parent directories
  3813. 2000-09-12 09:30 hoffman
  3814. * CMakeMaster.make.in, CMakeRules.make.in, CMakeTargets.make.in,
  3815. CMakeVariables.make.in, MakefileTemplate.in, README,
  3816. Source/CMakeBuildTargets.cxx, Source/CMakeSetup.cxx,
  3817. Source/CMakeSetup.dsw, Source/CMakeSetupCMD.cxx,
  3818. Source/CMakeSetupCMD.dsp, Source/Makefile.in,
  3819. Source/cmClassFile.cxx, Source/cmClassFile.h,
  3820. Source/cmDSPBuilder.cxx, Source/cmDSPBuilder.h,
  3821. Source/cmDSPMakefile.cxx, Source/cmDSPWriter.cxx,
  3822. Source/cmDSWBuilder.cxx, Source/cmDSWBuilder.h,
  3823. Source/cmDSWMakefile.cxx, Source/cmDSWMakefile.h,
  3824. Source/cmDSWWriter.cxx, Source/cmDSWWriter.h,
  3825. Source/cmMakeDepend.cxx, Source/cmMakefile.cxx,
  3826. Source/cmMakefile.h, Source/cmPCBuilder.cxx, Source/cmPCBuilder.h,
  3827. Source/cmSystemTools.cxx, Source/cmSystemTools.h,
  3828. Source/cmUnixMakefile.cxx, Source/cmUnixMakefile.h,
  3829. Source/cmWindowsConfigure.h, Source/itkVC60Configure.h,
  3830. Source/MFCDialog/CMakeDialog.cpp, Source/MFCDialog/CMakeSetup.dsp,
  3831. Source/MFCDialog/CMakeSetupDialog.cpp: ENH: CMake and configure now
  3832. use SUBDIRS in CMakeLists.txt to find all the directories of the
  3833. system.
  3834. 2000-09-01 14:43 hoffman
  3835. * Source/EXEHeader.dsptemplate, Source/cmSystemTools.cxx: BUG: fix
  3836. release build on windows
  3837. 2000-08-31 18:26 hoffman
  3838. * CMakeVariables.make.in, Source/cmUnixMakefile.cxx: BUG: fix build
  3839. of lib.a problem
  3840. 2000-08-31 18:15 hoffman
  3841. * Source/CMakeSetup.dsw, Source/cmDSPMakefile.cxx,
  3842. Source/cmDSPWriter.cxx: BUG: fix name of command line version in
  3843. dsp files
  3844. 2000-08-31 17:52 hoffman
  3845. * CMakeSimpleRules.make: ENH: fix for Sgi make
  3846. 2000-08-31 17:52 hoffman
  3847. * CMakeSimpleRules.make, CMakeSimpleRules.make.in: BUG: fix for out
  3848. of source build
  3849. 2000-08-31 13:36 hoffman
  3850. * CMakeRules.make.in, Source/Makefile.in,
  3851. Source/cmUnixMakefile.cxx: ENH: fix for SGI make
  3852. 2000-08-31 10:36 hoffman
  3853. * CMakeVariables.make.in, README: ENH: clean things up a bit
  3854. 2000-08-30 17:59 hoffman
  3855. * Source/cmDirectory.cxx, Source/cmDirectory.h,
  3856. MakefileTemplate.in: ENH: add ability to compile all the files in a
  3857. sub-directory
  3858. 2000-08-30 17:35 hoffman
  3859. * CMakeRules.make.in, CMakeVariables.make.in, README,
  3860. Source/CMakeSetupCMD.dsp, Source/Makefile.in,
  3861. Source/cmClassFile.cxx, Source/cmDSPMakefile.cxx,
  3862. Source/cmDSPWriter.cxx, Source/cmDSWMakefile.cxx,
  3863. Source/cmDSWWriter.cxx, Source/cmMakefile.cxx, Source/cmMakefile.h,
  3864. Source/cmUnixMakefile.cxx, Source/MFCDialog/CMakeSetup.dsp,
  3865. Source/MFCDialog/CMakeSetupDialog.cpp: ENH: move from tools and
  3866. create working CMake program
  3867. 2000-08-29 19:26 hoffman
  3868. * CMakeMaster.make.in, CMakeRules.make.in, CMakeVariables.make.in,
  3869. Source/CMakeBuildTargets.cxx, Source/CMakeSetup.cxx,
  3870. Source/CMakeSetup.dsw, Source/CMakeSetupCMD.cxx,
  3871. Source/CMakeSetupCMD.dsp, Source/EXEFooter.dsptemplate,
  3872. Source/EXEHeader.dsptemplate, Source/Makefile.in,
  3873. Source/cmClassFile.cxx, Source/cmClassFile.h,
  3874. Source/cmDSPBuilder.cxx, Source/cmDSPBuilder.h,
  3875. Source/cmDSPMakefile.cxx, Source/cmDSPMakefile.h,
  3876. Source/cmDSPWriter.cxx, Source/cmDSPWriter.h,
  3877. Source/cmDSWBuilder.cxx, Source/cmDSWBuilder.h,
  3878. Source/cmDSWMakefile.cxx, Source/cmDSWMakefile.h,
  3879. Source/cmDSWWriter.cxx, Source/cmDSWWriter.h,
  3880. Source/cmMakeDepend.cxx, Source/cmMakeDepend.h,
  3881. Source/cmMakefile.cxx, Source/cmMakefile.h, Source/cmPCBuilder.cxx,
  3882. Source/cmPCBuilder.h, Source/cmRegularExpression.cxx,
  3883. Source/cmRegularExpression.h, Source/cmSystemTools.cxx,
  3884. Source/cmSystemTools.h, Source/cmUnixMakefile.cxx,
  3885. Source/cmUnixMakefile.h, Source/cmWindowsConfigure.cxx,
  3886. Source/cmWindowsConfigure.h, Source/itkVC60Configure.cxx,
  3887. Source/itkVC60Configure.h, Source/staticLibFooter.dsptemplate,
  3888. Source/staticLibHeader.dsptemplate,
  3889. Source/MFCDialog/CMakeDialog.cpp, Source/MFCDialog/CMakeDialog.h,
  3890. Source/MFCDialog/CMakeSetup.cpp, Source/MFCDialog/CMakeSetup.dsp,
  3891. Source/MFCDialog/CMakeSetup.h, Source/MFCDialog/CMakeSetup.rc,
  3892. Source/MFCDialog/CMakeSetupDialog.cpp,
  3893. Source/MFCDialog/CMakeSetupDialog.h, Source/MFCDialog/StdAfx.cpp,
  3894. Source/MFCDialog/StdAfx.h, Source/MFCDialog/resource.h,
  3895. Source/MFCDialog/res/CMakeSetupDialog.ico,
  3896. Source/MFCDialog/res/CMakeSetupDialog.rc2, README: NEW: move from
  3897. tools and config to create CMake
  3898. 2000-08-29 14:56 hoffman
  3899. * CMakeMaster.make.in, CMakeRules.make.in, CMakeVariables.make.in,
  3900. dummy.in: [no log message]