cmVisualStudio10TargetGenerator.cxx 161 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593
  1. /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. file Copyright.txt or https://cmake.org/licensing for details. */
  3. #include "cmVisualStudio10TargetGenerator.h"
  4. #include "cmAlgorithms.h"
  5. #include "cmComputeLinkInformation.h"
  6. #include "cmCustomCommandGenerator.h"
  7. #include "cmGeneratedFileStream.h"
  8. #include "cmGeneratorTarget.h"
  9. #include "cmGlobalVisualStudio10Generator.h"
  10. #include "cmLocalVisualStudio10Generator.h"
  11. #include "cmMakefile.h"
  12. #include "cmSourceFile.h"
  13. #include "cmSystemTools.h"
  14. #include "cmVisualStudioGeneratorOptions.h"
  15. #include "windows.h"
  16. #include <iterator>
  17. #include <memory> // IWYU pragma: keep
  18. static void ConvertToWindowsSlash(std::string& s);
  19. static std::string cmVS10EscapeXML(std::string arg)
  20. {
  21. cmSystemTools::ReplaceString(arg, "&", "&amp;");
  22. cmSystemTools::ReplaceString(arg, "<", "&lt;");
  23. cmSystemTools::ReplaceString(arg, ">", "&gt;");
  24. return arg;
  25. }
  26. static std::string cmVS10EscapeAttr(std::string arg)
  27. {
  28. cmSystemTools::ReplaceString(arg, "&", "&amp;");
  29. cmSystemTools::ReplaceString(arg, "<", "&lt;");
  30. cmSystemTools::ReplaceString(arg, ">", "&gt;");
  31. cmSystemTools::ReplaceString(arg, "\"", "&quot;");
  32. return arg;
  33. }
  34. struct cmVisualStudio10TargetGenerator::Elem
  35. {
  36. std::ostream& S;
  37. const int Indent;
  38. bool HasElements = false;
  39. bool HasContent = false;
  40. std::string Tag;
  41. Elem(std::ostream& s)
  42. : S(s)
  43. , Indent(0)
  44. {
  45. }
  46. Elem(const Elem&) = delete;
  47. Elem(Elem& par)
  48. : S(par.S)
  49. , Indent(par.Indent + 1)
  50. {
  51. par.SetHasElements();
  52. }
  53. Elem(Elem& par, const char* tag)
  54. : S(par.S)
  55. , Indent(par.Indent + 1)
  56. {
  57. par.SetHasElements();
  58. this->StartElement(tag);
  59. }
  60. void SetHasElements()
  61. {
  62. if (!HasElements) {
  63. this->S << ">\n";
  64. HasElements = true;
  65. }
  66. }
  67. std::ostream& WriteString(const char* line);
  68. Elem& StartElement(const std::string& tag)
  69. {
  70. this->Tag = tag;
  71. this->WriteString("<") << tag;
  72. return *this;
  73. }
  74. void Element(const char* tag, const std::string& val)
  75. {
  76. Elem(*this, tag).Content(val);
  77. }
  78. Elem& Attribute(const char* an, const std::string& av)
  79. {
  80. this->S << " " << an << "=\"" << cmVS10EscapeAttr(av) << "\"";
  81. return *this;
  82. }
  83. // This method for now assumes that this->Tag has been set, e.g. by calling
  84. // StartElement().
  85. void Content(const std::string& val)
  86. {
  87. if (!this->HasContent) {
  88. this->S << ">";
  89. this->HasContent = true;
  90. }
  91. this->S << cmVS10EscapeXML(val);
  92. }
  93. ~Elem()
  94. {
  95. // Do not emit element which has not been started
  96. if (Tag.empty()) {
  97. return;
  98. }
  99. if (HasElements) {
  100. this->WriteString("</") << this->Tag << ">";
  101. if (this->Indent > 0) {
  102. this->S << '\n';
  103. } else {
  104. // special case: don't print EOL at EOF
  105. }
  106. } else if (HasContent) {
  107. this->S << "</" << this->Tag << ">\n";
  108. } else {
  109. this->S << " />\n";
  110. }
  111. }
  112. void WritePlatformConfigTag(const char* tag, const std::string& cond,
  113. const std::string& content);
  114. };
  115. class cmVS10GeneratorOptions : public cmVisualStudioGeneratorOptions
  116. {
  117. public:
  118. typedef cmVisualStudio10TargetGenerator::Elem Elem;
  119. cmVS10GeneratorOptions(cmLocalVisualStudioGenerator* lg, Tool tool,
  120. cmVS7FlagTable const* table,
  121. cmVisualStudio10TargetGenerator* g = nullptr)
  122. : cmVisualStudioGeneratorOptions(lg, tool, table)
  123. , TargetGenerator(g)
  124. {
  125. }
  126. void OutputFlag(std::ostream& /*fout*/, int /*indent*/, const char* tag,
  127. const std::string& content) override
  128. {
  129. if (!this->GetConfiguration().empty()) {
  130. // if there are configuration specific flags, then
  131. // use the configuration specific tag for PreprocessorDefinitions
  132. const std::string cond =
  133. this->TargetGenerator->CalcCondition(this->GetConfiguration());
  134. this->Parent->WritePlatformConfigTag(tag, cond, content);
  135. } else {
  136. this->Parent->Element(tag, content);
  137. }
  138. }
  139. private:
  140. cmVisualStudio10TargetGenerator* const TargetGenerator;
  141. Elem* Parent = nullptr;
  142. friend cmVisualStudio10TargetGenerator::OptionsHelper;
  143. };
  144. struct cmVisualStudio10TargetGenerator::OptionsHelper
  145. {
  146. cmVS10GeneratorOptions& O;
  147. OptionsHelper(cmVS10GeneratorOptions& o, Elem& e)
  148. : O(o)
  149. {
  150. O.Parent = &e;
  151. }
  152. ~OptionsHelper() { O.Parent = nullptr; }
  153. void OutputPreprocessorDefinitions(const std::string& lang)
  154. {
  155. O.OutputPreprocessorDefinitions(O.Parent->S, O.Parent->Indent + 1, lang);
  156. }
  157. void OutputAdditionalIncludeDirectories(const std::string& lang)
  158. {
  159. O.OutputAdditionalIncludeDirectories(O.Parent->S, O.Parent->Indent + 1,
  160. lang);
  161. }
  162. void OutputFlagMap() { O.OutputFlagMap(O.Parent->S, O.Parent->Indent + 1); }
  163. void PrependInheritedString(std::string const& key)
  164. {
  165. O.PrependInheritedString(key);
  166. }
  167. };
  168. static std::string cmVS10EscapeComment(std::string comment)
  169. {
  170. // MSBuild takes the CDATA of a <Message></Message> element and just
  171. // does "echo $CDATA" with no escapes. We must encode the string.
  172. // http://technet.microsoft.com/en-us/library/cc772462%28WS.10%29.aspx
  173. std::string echoable;
  174. for (char c : comment) {
  175. switch (c) {
  176. case '\r':
  177. break;
  178. case '\n':
  179. echoable += '\t';
  180. break;
  181. case '"': /* no break */
  182. case '|': /* no break */
  183. case '&': /* no break */
  184. case '<': /* no break */
  185. case '>': /* no break */
  186. case '^':
  187. echoable += '^'; /* no break */
  188. CM_FALLTHROUGH;
  189. default:
  190. echoable += c;
  191. break;
  192. }
  193. }
  194. return echoable;
  195. }
  196. static bool cmVS10IsTargetsFile(std::string const& path)
  197. {
  198. std::string const ext = cmSystemTools::GetFilenameLastExtension(path);
  199. return cmSystemTools::Strucmp(ext.c_str(), ".targets") == 0;
  200. }
  201. static std::string computeProjectFileExtension(cmGeneratorTarget const* t,
  202. const std::string& config)
  203. {
  204. std::string res;
  205. res = ".vcxproj";
  206. if (t->HasLanguage("CSharp", config)) {
  207. res = ".csproj";
  208. }
  209. return res;
  210. }
  211. cmVisualStudio10TargetGenerator::cmVisualStudio10TargetGenerator(
  212. cmGeneratorTarget* target, cmGlobalVisualStudio10Generator* gg)
  213. : GeneratorTarget(target)
  214. , Makefile(target->Target->GetMakefile())
  215. , Platform(gg->GetPlatformName())
  216. , Name(target->GetName())
  217. , GUID(gg->GetGUID(this->Name))
  218. , GlobalGenerator(gg)
  219. , LocalGenerator(
  220. (cmLocalVisualStudio10Generator*)target->GetLocalGenerator())
  221. {
  222. this->Makefile->GetConfigurations(this->Configurations);
  223. this->NsightTegra = gg->IsNsightTegra();
  224. for (int i = 0; i < 4; ++i) {
  225. this->NsightTegraVersion[i] = 0;
  226. }
  227. sscanf(gg->GetNsightTegraVersion().c_str(), "%u.%u.%u.%u",
  228. &this->NsightTegraVersion[0], &this->NsightTegraVersion[1],
  229. &this->NsightTegraVersion[2], &this->NsightTegraVersion[3]);
  230. this->MSTools = !this->NsightTegra;
  231. this->Managed = false;
  232. this->TargetCompileAsWinRT = false;
  233. this->IsMissingFiles = false;
  234. this->DefaultArtifactDir =
  235. this->LocalGenerator->GetCurrentBinaryDirectory() + std::string("/") +
  236. this->LocalGenerator->GetTargetDirectory(this->GeneratorTarget);
  237. this->InSourceBuild = (this->Makefile->GetCurrentSourceDirectory() ==
  238. this->Makefile->GetCurrentBinaryDirectory());
  239. }
  240. cmVisualStudio10TargetGenerator::~cmVisualStudio10TargetGenerator()
  241. {
  242. }
  243. std::string cmVisualStudio10TargetGenerator::CalcCondition(
  244. const std::string& config) const
  245. {
  246. std::ostringstream oss;
  247. oss << "'$(Configuration)|$(Platform)'=='";
  248. oss << config << "|" << this->Platform;
  249. oss << "'";
  250. // handle special case for 32 bit C# targets
  251. if (this->ProjectType == csproj && this->Platform == "Win32") {
  252. oss << " Or ";
  253. oss << "'$(Configuration)|$(Platform)'=='";
  254. oss << config << "|x86";
  255. oss << "'";
  256. }
  257. return oss.str();
  258. }
  259. void cmVisualStudio10TargetGenerator::Elem::WritePlatformConfigTag(
  260. const char* tag, const std::string& cond, const std::string& content)
  261. {
  262. Elem(*this, tag).Attribute("Condition", cond).Content(content);
  263. }
  264. std::ostream& cmVisualStudio10TargetGenerator::Elem::WriteString(
  265. const char* line)
  266. {
  267. this->S.fill(' ');
  268. this->S.width(this->Indent * 2);
  269. // write an empty string to get the fill level indent to print
  270. this->S << "";
  271. this->S << line;
  272. return this->S;
  273. }
  274. #define VS10_CXX_DEFAULT_PROPS "$(VCTargetsPath)\\Microsoft.Cpp.Default.props"
  275. #define VS10_CXX_PROPS "$(VCTargetsPath)\\Microsoft.Cpp.props"
  276. #define VS10_CXX_USER_PROPS \
  277. "$(UserRootDir)\\Microsoft.Cpp.$(Platform).user.props"
  278. #define VS10_CXX_TARGETS "$(VCTargetsPath)\\Microsoft.Cpp.targets"
  279. #define VS10_CSharp_DEFAULT_PROPS \
  280. "$(MSBuildExtensionsPath)\\$(MSBuildToolsVersion)\\Microsoft.Common.props"
  281. // This does not seem to exist by default, it's just provided for consistency
  282. // in case users want to have default custom props for C# targets
  283. #define VS10_CSharp_USER_PROPS \
  284. "$(UserRootDir)\\Microsoft.CSharp.$(Platform).user.props"
  285. #define VS10_CSharp_TARGETS "$(MSBuildToolsPath)\\Microsoft.CSharp.targets"
  286. void cmVisualStudio10TargetGenerator::Generate()
  287. {
  288. // do not generate external ms projects
  289. if (this->GeneratorTarget->GetType() == cmStateEnums::INTERFACE_LIBRARY ||
  290. this->GeneratorTarget->GetProperty("EXTERNAL_MSPROJECT")) {
  291. return;
  292. }
  293. const std::string ProjectFileExtension = computeProjectFileExtension(
  294. this->GeneratorTarget, *this->Configurations.begin());
  295. if (ProjectFileExtension == ".vcxproj") {
  296. this->ProjectType = vcxproj;
  297. this->Managed = false;
  298. } else if (ProjectFileExtension == ".csproj") {
  299. if (this->GeneratorTarget->GetType() == cmStateEnums::STATIC_LIBRARY) {
  300. std::string message = "The C# target \"" +
  301. this->GeneratorTarget->GetName() +
  302. "\" is of type STATIC_LIBRARY. This is discouraged (and may be "
  303. "disabled in future). Make it a SHARED library instead.";
  304. this->Makefile->IssueMessage(cmake::MessageType::DEPRECATION_WARNING,
  305. message);
  306. }
  307. this->ProjectType = csproj;
  308. this->Managed = true;
  309. }
  310. // Tell the global generator the name of the project file
  311. this->GeneratorTarget->Target->SetProperty("GENERATOR_FILE_NAME",
  312. this->Name.c_str());
  313. this->GeneratorTarget->Target->SetProperty("GENERATOR_FILE_NAME_EXT",
  314. ProjectFileExtension.c_str());
  315. this->DotNetHintReferences.clear();
  316. this->AdditionalUsingDirectories.clear();
  317. if (this->GeneratorTarget->GetType() <= cmStateEnums::OBJECT_LIBRARY) {
  318. if (!this->ComputeClOptions()) {
  319. return;
  320. }
  321. if (!this->ComputeRcOptions()) {
  322. return;
  323. }
  324. if (!this->ComputeCudaOptions()) {
  325. return;
  326. }
  327. if (!this->ComputeCudaLinkOptions()) {
  328. return;
  329. }
  330. if (!this->ComputeMasmOptions()) {
  331. return;
  332. }
  333. if (!this->ComputeNasmOptions()) {
  334. return;
  335. }
  336. if (!this->ComputeLinkOptions()) {
  337. return;
  338. }
  339. if (!this->ComputeLibOptions()) {
  340. return;
  341. }
  342. }
  343. std::string path = this->LocalGenerator->GetCurrentBinaryDirectory();
  344. path += "/";
  345. path += this->Name;
  346. path += ProjectFileExtension;
  347. cmGeneratedFileStream BuildFileStream(path.c_str());
  348. const std::string PathToProjectFile = path;
  349. BuildFileStream.SetCopyIfDifferent(true);
  350. // Write the encoding header into the file
  351. char magic[] = { char(0xEF), char(0xBB), char(0xBF) };
  352. BuildFileStream.write(magic, 3);
  353. BuildFileStream << "<?xml version=\"1.0\" encoding=\""
  354. << this->GlobalGenerator->Encoding() << "\"?>"
  355. << "\n";
  356. {
  357. Elem e0(BuildFileStream);
  358. e0.StartElement("Project");
  359. e0.Attribute("DefaultTargets", "Build");
  360. e0.Attribute("ToolsVersion", this->GlobalGenerator->GetToolsVersion());
  361. e0.Attribute("xmlns",
  362. "http://schemas.microsoft.com/developer/msbuild/2003");
  363. if (this->NsightTegra) {
  364. Elem e1(e0, "PropertyGroup");
  365. e1.Attribute("Label", "NsightTegraProject");
  366. const unsigned int nsightTegraMajorVersion = this->NsightTegraVersion[0];
  367. const unsigned int nsightTegraMinorVersion = this->NsightTegraVersion[1];
  368. if (nsightTegraMajorVersion >= 2) {
  369. if (nsightTegraMajorVersion > 3 ||
  370. (nsightTegraMajorVersion == 3 && nsightTegraMinorVersion >= 1)) {
  371. e1.Element("NsightTegraProjectRevisionNumber", "11");
  372. } else {
  373. // Nsight Tegra 2.0 uses project revision 9.
  374. e1.Element("NsightTegraProjectRevisionNumber", "9");
  375. }
  376. // Tell newer versions to upgrade silently when loading.
  377. e1.Element("NsightTegraUpgradeOnceWithoutPrompt", "true");
  378. } else {
  379. // Require Nsight Tegra 1.6 for JCompile support.
  380. e1.Element("NsightTegraProjectRevisionNumber", "7");
  381. }
  382. }
  383. if (const char* hostArch =
  384. this->GlobalGenerator->GetPlatformToolsetHostArchitecture()) {
  385. Elem e1(e0, "PropertyGroup");
  386. e1.Element("PreferredToolArchitecture", hostArch);
  387. }
  388. if (this->ProjectType != csproj) {
  389. this->WriteProjectConfigurations(e0);
  390. }
  391. {
  392. Elem e1(e0, "PropertyGroup");
  393. e1.Attribute("Label", "Globals");
  394. e1.Element("ProjectGuid", "{" + this->GUID + "}");
  395. if (this->MSTools &&
  396. this->GeneratorTarget->GetType() <= cmStateEnums::GLOBAL_TARGET) {
  397. this->WriteApplicationTypeSettings(e1);
  398. this->VerifyNecessaryFiles();
  399. }
  400. const char* vsProjectTypes =
  401. this->GeneratorTarget->GetProperty("VS_GLOBAL_PROJECT_TYPES");
  402. if (vsProjectTypes) {
  403. const char* tagName = "ProjectTypes";
  404. if (this->ProjectType == csproj) {
  405. tagName = "ProjectTypeGuids";
  406. }
  407. e1.Element(tagName, vsProjectTypes);
  408. }
  409. const char* vsProjectName =
  410. this->GeneratorTarget->GetProperty("VS_SCC_PROJECTNAME");
  411. const char* vsLocalPath =
  412. this->GeneratorTarget->GetProperty("VS_SCC_LOCALPATH");
  413. const char* vsProvider =
  414. this->GeneratorTarget->GetProperty("VS_SCC_PROVIDER");
  415. if (vsProjectName && vsLocalPath && vsProvider) {
  416. e1.Element("SccProjectName", vsProjectName);
  417. e1.Element("SccLocalPath", vsLocalPath);
  418. e1.Element("SccProvider", vsProvider);
  419. const char* vsAuxPath =
  420. this->GeneratorTarget->GetProperty("VS_SCC_AUXPATH");
  421. if (vsAuxPath) {
  422. e1.Element("SccAuxPath", vsAuxPath);
  423. }
  424. }
  425. if (this->GeneratorTarget->GetPropertyAsBool("VS_WINRT_COMPONENT")) {
  426. e1.Element("WinMDAssembly", "true");
  427. }
  428. const char* vsGlobalKeyword =
  429. this->GeneratorTarget->GetProperty("VS_GLOBAL_KEYWORD");
  430. if (!vsGlobalKeyword) {
  431. e1.Element("Keyword", "Win32Proj");
  432. } else {
  433. e1.Element("Keyword", vsGlobalKeyword);
  434. }
  435. const char* vsGlobalRootNamespace =
  436. this->GeneratorTarget->GetProperty("VS_GLOBAL_ROOTNAMESPACE");
  437. if (vsGlobalRootNamespace) {
  438. e1.Element("RootNamespace", vsGlobalRootNamespace);
  439. }
  440. e1.Element("Platform", this->Platform);
  441. const char* projLabel =
  442. this->GeneratorTarget->GetProperty("PROJECT_LABEL");
  443. if (!projLabel) {
  444. projLabel = this->Name.c_str();
  445. }
  446. e1.Element("ProjectName", projLabel);
  447. {
  448. // TODO: add deprecation warning for VS_* property?
  449. const char* targetFrameworkVersion =
  450. this->GeneratorTarget->GetProperty(
  451. "VS_DOTNET_TARGET_FRAMEWORK_VERSION");
  452. if (!targetFrameworkVersion) {
  453. targetFrameworkVersion = this->GeneratorTarget->GetProperty(
  454. "DOTNET_TARGET_FRAMEWORK_VERSION");
  455. }
  456. if (targetFrameworkVersion) {
  457. e1.Element("TargetFrameworkVersion", targetFrameworkVersion);
  458. }
  459. }
  460. // Disable the project upgrade prompt that is displayed the first time a
  461. // project using an older toolset version is opened in a newer version of
  462. // the IDE (respected by VS 2013 and above).
  463. if (this->GlobalGenerator->GetVersion() >=
  464. cmGlobalVisualStudioGenerator::VS12) {
  465. e1.Element("VCProjectUpgraderObjectName", "NoUpgrade");
  466. }
  467. std::vector<std::string> keys = this->GeneratorTarget->GetPropertyKeys();
  468. for (std::string const& keyIt : keys) {
  469. static const char* prefix = "VS_GLOBAL_";
  470. if (keyIt.find(prefix) != 0)
  471. continue;
  472. std::string globalKey = keyIt.substr(strlen(prefix));
  473. // Skip invalid or separately-handled properties.
  474. if (globalKey.empty() || globalKey == "PROJECT_TYPES" ||
  475. globalKey == "ROOTNAMESPACE" || globalKey == "KEYWORD") {
  476. continue;
  477. }
  478. const char* value = this->GeneratorTarget->GetProperty(keyIt);
  479. if (!value)
  480. continue;
  481. e1.Element(globalKey.c_str(), value);
  482. }
  483. if (this->Managed) {
  484. std::string outputType;
  485. switch (this->GeneratorTarget->GetType()) {
  486. case cmStateEnums::OBJECT_LIBRARY:
  487. case cmStateEnums::STATIC_LIBRARY:
  488. case cmStateEnums::SHARED_LIBRARY:
  489. outputType = "Library";
  490. break;
  491. case cmStateEnums::MODULE_LIBRARY:
  492. outputType = "Module";
  493. break;
  494. case cmStateEnums::EXECUTABLE:
  495. if (this->GeneratorTarget->Target->GetPropertyAsBool(
  496. "WIN32_EXECUTABLE")) {
  497. outputType = "WinExe";
  498. } else {
  499. outputType = "Exe";
  500. }
  501. break;
  502. case cmStateEnums::UTILITY:
  503. case cmStateEnums::GLOBAL_TARGET:
  504. outputType = "Utility";
  505. break;
  506. case cmStateEnums::UNKNOWN_LIBRARY:
  507. case cmStateEnums::INTERFACE_LIBRARY:
  508. break;
  509. }
  510. e1.Element("OutputType", outputType);
  511. e1.Element("AppDesignerFolder", "Properties");
  512. }
  513. }
  514. switch (this->ProjectType) {
  515. case vcxproj:
  516. if (this->GlobalGenerator->GetPlatformToolsetVersion()) {
  517. Elem(e0, "Import")
  518. .Attribute("Project",
  519. this->GlobalGenerator->GetAuxiliaryToolset());
  520. }
  521. Elem(e0, "Import").Attribute("Project", VS10_CXX_DEFAULT_PROPS);
  522. break;
  523. case csproj:
  524. Elem(e0, "Import")
  525. .Attribute("Project", VS10_CSharp_DEFAULT_PROPS)
  526. .Attribute("Condition", "Exists('" VS10_CSharp_DEFAULT_PROPS "')");
  527. break;
  528. }
  529. this->WriteProjectConfigurationValues(e0);
  530. if (this->ProjectType == vcxproj) {
  531. Elem(e0, "Import").Attribute("Project", VS10_CXX_PROPS);
  532. }
  533. {
  534. Elem e1(e0, "ImportGroup");
  535. e1.Attribute("Label", "ExtensionSettings");
  536. e1.SetHasElements();
  537. if (this->GlobalGenerator->IsCudaEnabled()) {
  538. Elem(e1, "Import")
  539. .Attribute("Project",
  540. "$(VCTargetsPath)\\BuildCustomizations\\CUDA " +
  541. this->GlobalGenerator->GetPlatformToolsetCudaString() +
  542. ".props");
  543. }
  544. if (this->GlobalGenerator->IsMasmEnabled()) {
  545. Elem(e1, "Import")
  546. .Attribute("Project",
  547. "$(VCTargetsPath)\\BuildCustomizations\\masm.props");
  548. }
  549. if (this->GlobalGenerator->IsNasmEnabled()) {
  550. // Always search in the standard modules location.
  551. std::string propsTemplate =
  552. GetCMakeFilePath("Templates/MSBuild/nasm.props.in");
  553. std::string propsLocal;
  554. propsLocal += this->DefaultArtifactDir;
  555. propsLocal += "\\nasm.props";
  556. ConvertToWindowsSlash(propsLocal);
  557. this->Makefile->ConfigureFile(propsTemplate.c_str(),
  558. propsLocal.c_str(), false, true, true);
  559. Elem(e1, "Import").Attribute("Project", propsLocal);
  560. }
  561. }
  562. {
  563. Elem e1(e0, "ImportGroup");
  564. e1.Attribute("Label", "PropertySheets");
  565. std::string props;
  566. switch (this->ProjectType) {
  567. case vcxproj:
  568. props = VS10_CXX_USER_PROPS;
  569. break;
  570. case csproj:
  571. props = VS10_CSharp_USER_PROPS;
  572. break;
  573. }
  574. if (const char* p =
  575. this->GeneratorTarget->GetProperty("VS_USER_PROPS")) {
  576. props = p;
  577. }
  578. if (!props.empty()) {
  579. ConvertToWindowsSlash(props);
  580. Elem(e1, "Import")
  581. .Attribute("Project", props)
  582. .Attribute("Condition", "exists('" + props + "')")
  583. .Attribute("Label", "LocalAppDataPlatform");
  584. }
  585. this->WritePlatformExtensions(e1);
  586. }
  587. Elem(e0, "PropertyGroup").Attribute("Label", "UserMacros");
  588. this->WriteWinRTPackageCertificateKeyFile(e0);
  589. this->WritePathAndIncrementalLinkOptions(e0);
  590. this->WriteItemDefinitionGroups(e0);
  591. this->WriteCustomCommands(e0);
  592. this->WriteAllSources(e0);
  593. this->WriteDotNetReferences(e0);
  594. this->WriteEmbeddedResourceGroup(e0);
  595. this->WriteXamlFilesGroup(e0);
  596. this->WriteWinRTReferences(e0);
  597. this->WriteProjectReferences(e0);
  598. this->WriteSDKReferences(e0);
  599. switch (this->ProjectType) {
  600. case vcxproj:
  601. Elem(e0, "Import").Attribute("Project", VS10_CXX_TARGETS);
  602. break;
  603. case csproj:
  604. Elem(e0, "Import").Attribute("Project", VS10_CSharp_TARGETS);
  605. break;
  606. }
  607. this->WriteTargetSpecificReferences(e0);
  608. {
  609. Elem e1(e0, "ImportGroup");
  610. e1.Attribute("Label", "ExtensionTargets");
  611. e1.SetHasElements();
  612. this->WriteTargetsFileReferences(e1);
  613. if (this->GlobalGenerator->IsCudaEnabled()) {
  614. Elem(e1, "Import")
  615. .Attribute("Project",
  616. "$(VCTargetsPath)\\BuildCustomizations\\CUDA " +
  617. this->GlobalGenerator->GetPlatformToolsetCudaString() +
  618. ".targets");
  619. }
  620. if (this->GlobalGenerator->IsMasmEnabled()) {
  621. Elem(e1, "Import")
  622. .Attribute("Project",
  623. "$(VCTargetsPath)\\BuildCustomizations\\masm.targets");
  624. }
  625. if (this->GlobalGenerator->IsNasmEnabled()) {
  626. std::string nasmTargets =
  627. GetCMakeFilePath("Templates/MSBuild/nasm.targets");
  628. Elem(e1, "Import").Attribute("Project", nasmTargets);
  629. }
  630. }
  631. if (this->ProjectType == csproj) {
  632. for (std::string const& c : this->Configurations) {
  633. Elem e1(e0, "PropertyGroup");
  634. e1.Attribute("Condition", "'$(Configuration)' == '" + c + "'");
  635. e1.SetHasElements();
  636. this->WriteEvents(e1, c);
  637. }
  638. // make sure custom commands are executed before build (if necessary)
  639. {
  640. Elem e1(e0, "PropertyGroup");
  641. std::ostringstream oss;
  642. oss << "\n";
  643. for (std::string const& i : this->CSharpCustomCommandNames) {
  644. oss << " " << i << ";\n";
  645. }
  646. oss << " "
  647. << "$(BuildDependsOn)\n";
  648. e1.Element("BuildDependsOn", oss.str());
  649. }
  650. }
  651. }
  652. if (BuildFileStream.Close()) {
  653. this->GlobalGenerator->FileReplacedDuringGenerate(PathToProjectFile);
  654. }
  655. // The groups are stored in a separate file for VS 10
  656. this->WriteGroups();
  657. }
  658. void cmVisualStudio10TargetGenerator::WriteDotNetReferences(Elem& e0)
  659. {
  660. std::vector<std::string> references;
  661. if (const char* vsDotNetReferences =
  662. this->GeneratorTarget->GetProperty("VS_DOTNET_REFERENCES")) {
  663. cmSystemTools::ExpandListArgument(vsDotNetReferences, references);
  664. }
  665. cmPropertyMap const& props = this->GeneratorTarget->Target->GetProperties();
  666. for (auto const& i : props) {
  667. if (i.first.find("VS_DOTNET_REFERENCE_") == 0) {
  668. std::string name = i.first.substr(20);
  669. if (!name.empty()) {
  670. std::string path = i.second.GetValue();
  671. if (!cmsys::SystemTools::FileIsFullPath(path)) {
  672. path = this->Makefile->GetCurrentSourceDirectory() + "/" + path;
  673. }
  674. ConvertToWindowsSlash(path);
  675. this->DotNetHintReferences[""].push_back(
  676. DotNetHintReference(name, path));
  677. }
  678. }
  679. }
  680. if (!references.empty() || !this->DotNetHintReferences.empty()) {
  681. Elem e1(e0, "ItemGroup");
  682. for (std::string const& ri : references) {
  683. // if the entry from VS_DOTNET_REFERENCES is an existing file, generate
  684. // a new hint-reference and name it from the filename
  685. if (cmsys::SystemTools::FileExists(ri, true)) {
  686. std::string name = cmsys::SystemTools::GetFilenameWithoutExtension(ri);
  687. std::string path = ri;
  688. ConvertToWindowsSlash(path);
  689. this->DotNetHintReferences[""].push_back(
  690. DotNetHintReference(name, path));
  691. } else {
  692. this->WriteDotNetReference(e1, ri, "", "");
  693. }
  694. }
  695. for (const auto& h : this->DotNetHintReferences) {
  696. // DotNetHintReferences is also populated from AddLibraries().
  697. // The configuration specific hint references are added there.
  698. for (const auto& i : h.second) {
  699. this->WriteDotNetReference(e1, i.first, i.second, h.first);
  700. }
  701. }
  702. }
  703. }
  704. void cmVisualStudio10TargetGenerator::WriteDotNetReference(
  705. Elem& e1, std::string const& ref, std::string const& hint,
  706. std::string const& config)
  707. {
  708. Elem e2(e1, "Reference");
  709. // If 'config' is not empty, the reference is only added for the given
  710. // configuration. This is used when referencing imported managed assemblies.
  711. // See also cmVisualStudio10TargetGenerator::AddLibraries().
  712. if (!config.empty()) {
  713. e2.Attribute("Condition", this->CalcCondition(config));
  714. }
  715. e2.Attribute("Include", ref);
  716. e2.Element("CopyLocalSatelliteAssemblies", "true");
  717. e2.Element("ReferenceOutputAssembly", "true");
  718. if (!hint.empty()) {
  719. const char* privateReference = "True";
  720. if (const char* value = this->GeneratorTarget->GetProperty(
  721. "VS_DOTNET_REFERENCES_COPY_LOCAL")) {
  722. if (cmSystemTools::IsOff(value)) {
  723. privateReference = "False";
  724. }
  725. }
  726. e2.Element("Private", privateReference);
  727. e2.Element("HintPath", hint);
  728. }
  729. this->WriteDotNetReferenceCustomTags(e2, ref);
  730. }
  731. void cmVisualStudio10TargetGenerator::WriteDotNetReferenceCustomTags(
  732. Elem& e2, std::string const& ref)
  733. {
  734. static const std::string refpropPrefix = "VS_DOTNET_REFERENCEPROP_";
  735. static const std::string refpropInfix = "_TAG_";
  736. const std::string refPropFullPrefix = refpropPrefix + ref + refpropInfix;
  737. typedef std::map<std::string, std::string> CustomTags;
  738. CustomTags tags;
  739. cmPropertyMap const& props = this->GeneratorTarget->Target->GetProperties();
  740. for (const auto& i : props) {
  741. if (i.first.find(refPropFullPrefix) == 0) {
  742. std::string refTag = i.first.substr(refPropFullPrefix.length());
  743. std::string refVal = i.second.GetValue();
  744. if (!refTag.empty() && !refVal.empty()) {
  745. tags[refTag] = refVal;
  746. }
  747. }
  748. }
  749. for (auto const& tag : tags) {
  750. e2.Element(tag.first.c_str(), tag.second);
  751. }
  752. }
  753. void cmVisualStudio10TargetGenerator::WriteEmbeddedResourceGroup(Elem& e0)
  754. {
  755. std::vector<cmSourceFile const*> resxObjs;
  756. this->GeneratorTarget->GetResxSources(resxObjs, "");
  757. if (!resxObjs.empty()) {
  758. Elem e1(e0, "ItemGroup");
  759. std::string srcDir = this->Makefile->GetCurrentSourceDirectory();
  760. ConvertToWindowsSlash(srcDir);
  761. for (cmSourceFile const* oi : resxObjs) {
  762. std::string obj = oi->GetFullPath();
  763. ConvertToWindowsSlash(obj);
  764. bool useRelativePath = false;
  765. if (this->ProjectType == csproj && this->InSourceBuild) {
  766. // If we do an in-source build and the resource file is in a
  767. // subdirectory
  768. // of the .csproj file, we have to use relative pathnames, otherwise
  769. // visual studio does not show the file in the IDE. Sorry.
  770. if (obj.find(srcDir) == 0) {
  771. obj = this->ConvertPath(obj, true);
  772. ConvertToWindowsSlash(obj);
  773. useRelativePath = true;
  774. }
  775. }
  776. Elem e2(e1, "EmbeddedResource");
  777. e2.Attribute("Include", obj);
  778. if (this->ProjectType != csproj) {
  779. std::string hFileName = obj.substr(0, obj.find_last_of(".")) + ".h";
  780. e2.Element("DependentUpon", hFileName);
  781. for (std::string const& c : this->Configurations) {
  782. std::string s;
  783. if (this->GeneratorTarget->GetProperty("VS_GLOBAL_ROOTNAMESPACE") ||
  784. // Handle variant of VS_GLOBAL_<variable> for RootNamespace.
  785. this->GeneratorTarget->GetProperty("VS_GLOBAL_RootNamespace")) {
  786. s = "$(RootNamespace).";
  787. }
  788. s += "%(Filename).resources";
  789. e2.WritePlatformConfigTag("LogicalName", this->CalcCondition(c), s);
  790. }
  791. } else {
  792. std::string binDir = this->Makefile->GetCurrentBinaryDirectory();
  793. ConvertToWindowsSlash(binDir);
  794. // If the resource was NOT added using a relative path (which should
  795. // be the default), we have to provide a link here
  796. if (!useRelativePath) {
  797. std::string link;
  798. if (obj.find(srcDir) == 0) {
  799. link = obj.substr(srcDir.length() + 1);
  800. } else if (obj.find(binDir) == 0) {
  801. link = obj.substr(binDir.length() + 1);
  802. } else {
  803. link = cmsys::SystemTools::GetFilenameName(obj);
  804. }
  805. if (!link.empty()) {
  806. e2.Element("Link", link);
  807. }
  808. }
  809. // Determine if this is a generated resource from a .Designer.cs file
  810. std::string designerResource =
  811. cmSystemTools::GetFilenamePath(oi->GetFullPath()) + "/" +
  812. cmSystemTools::GetFilenameWithoutLastExtension(oi->GetFullPath()) +
  813. ".Designer.cs";
  814. if (cmsys::SystemTools::FileExists(designerResource)) {
  815. std::string generator = "PublicResXFileCodeGenerator";
  816. if (const char* g = oi->GetProperty("VS_RESOURCE_GENERATOR")) {
  817. generator = g;
  818. }
  819. if (!generator.empty()) {
  820. e2.Element("Generator", generator);
  821. if (designerResource.find(srcDir) == 0) {
  822. designerResource = designerResource.substr(srcDir.length() + 1);
  823. } else if (designerResource.find(binDir) == 0) {
  824. designerResource = designerResource.substr(binDir.length() + 1);
  825. } else {
  826. designerResource =
  827. cmsys::SystemTools::GetFilenameName(designerResource);
  828. }
  829. ConvertToWindowsSlash(designerResource);
  830. e2.Element("LastGenOutput", designerResource);
  831. }
  832. }
  833. const cmPropertyMap& props = oi->GetProperties();
  834. for (const auto& p : props) {
  835. static const std::string propNamePrefix = "VS_CSHARP_";
  836. if (p.first.find(propNamePrefix) == 0) {
  837. std::string tagName = p.first.substr(propNamePrefix.length());
  838. if (!tagName.empty()) {
  839. std::string value = props.GetPropertyValue(p.first);
  840. if (!value.empty()) {
  841. e2.Element(tagName.c_str(), value);
  842. }
  843. }
  844. }
  845. }
  846. }
  847. }
  848. }
  849. }
  850. void cmVisualStudio10TargetGenerator::WriteXamlFilesGroup(Elem& e0)
  851. {
  852. std::vector<cmSourceFile const*> xamlObjs;
  853. this->GeneratorTarget->GetXamlSources(xamlObjs, "");
  854. if (!xamlObjs.empty()) {
  855. Elem e1(e0, "ItemGroup");
  856. for (cmSourceFile const* oi : xamlObjs) {
  857. std::string obj = oi->GetFullPath();
  858. const char* xamlType;
  859. const char* xamlTypeProperty = oi->GetProperty("VS_XAML_TYPE");
  860. if (xamlTypeProperty) {
  861. xamlType = xamlTypeProperty;
  862. } else {
  863. xamlType = "Page";
  864. }
  865. Elem e2(e1);
  866. this->WriteSource(e2, xamlType, oi);
  867. e2.SetHasElements();
  868. if (this->ProjectType == csproj && !this->InSourceBuild) {
  869. // add <Link> tag to written XAML source if necessary
  870. const std::string& srcDir =
  871. this->Makefile->GetCurrentSourceDirectory();
  872. const std::string& binDir =
  873. this->Makefile->GetCurrentBinaryDirectory();
  874. std::string link;
  875. if (obj.find(srcDir) == 0) {
  876. link = obj.substr(srcDir.length() + 1);
  877. } else if (obj.find(binDir) == 0) {
  878. link = obj.substr(binDir.length() + 1);
  879. } else {
  880. link = cmsys::SystemTools::GetFilenameName(obj);
  881. }
  882. if (!link.empty()) {
  883. ConvertToWindowsSlash(link);
  884. e2.Element("Link", link);
  885. }
  886. }
  887. e2.Element("SubType", "Designer");
  888. }
  889. }
  890. }
  891. void cmVisualStudio10TargetGenerator::WriteTargetSpecificReferences(Elem& e0)
  892. {
  893. if (this->MSTools) {
  894. if (this->GlobalGenerator->TargetsWindowsPhone() &&
  895. this->GlobalGenerator->GetSystemVersion() == "8.0") {
  896. Elem(e0, "Import")
  897. .Attribute("Project",
  898. "$(MSBuildExtensionsPath)\\Microsoft\\WindowsPhone\\v"
  899. "$(TargetPlatformVersion)\\Microsoft.Cpp.WindowsPhone."
  900. "$(TargetPlatformVersion).targets");
  901. }
  902. }
  903. }
  904. void cmVisualStudio10TargetGenerator::WriteTargetsFileReferences(Elem& e1)
  905. {
  906. for (TargetsFileAndConfigs const& tac : this->TargetsFileAndConfigsVec) {
  907. std::ostringstream oss;
  908. oss << "Exists('" << tac.File << "')";
  909. if (!tac.Configs.empty()) {
  910. oss << " And (";
  911. for (size_t j = 0; j < tac.Configs.size(); ++j) {
  912. if (j > 0) {
  913. oss << " Or ";
  914. }
  915. oss << "'$(Configuration)'=='" << tac.Configs[j] << "'";
  916. }
  917. oss << ")";
  918. }
  919. Elem(e1, "Import")
  920. .Attribute("Project", tac.File)
  921. .Attribute("Condition", oss.str());
  922. }
  923. }
  924. void cmVisualStudio10TargetGenerator::WriteWinRTReferences(Elem& e0)
  925. {
  926. std::vector<std::string> references;
  927. if (const char* vsWinRTReferences =
  928. this->GeneratorTarget->GetProperty("VS_WINRT_REFERENCES")) {
  929. cmSystemTools::ExpandListArgument(vsWinRTReferences, references);
  930. }
  931. if (this->GlobalGenerator->TargetsWindowsPhone() &&
  932. this->GlobalGenerator->GetSystemVersion() == "8.0" &&
  933. references.empty()) {
  934. references.push_back("platform.winmd");
  935. }
  936. if (!references.empty()) {
  937. Elem e1(e0, "ItemGroup");
  938. for (std::string const& ri : references) {
  939. Elem e2(e1, "Reference");
  940. e2.Attribute("Include", ri);
  941. e2.Element("IsWinMDFile", "true");
  942. }
  943. }
  944. }
  945. // ConfigurationType Application, Utility StaticLibrary DynamicLibrary
  946. void cmVisualStudio10TargetGenerator::WriteProjectConfigurations(Elem& e0)
  947. {
  948. Elem e1(e0, "ItemGroup");
  949. e1.Attribute("Label", "ProjectConfigurations");
  950. for (std::string const& c : this->Configurations) {
  951. Elem e2(e1, "ProjectConfiguration");
  952. e2.Attribute("Include", c + "|" + this->Platform);
  953. e2.Element("Configuration", c);
  954. e2.Element("Platform", this->Platform);
  955. }
  956. }
  957. void cmVisualStudio10TargetGenerator::WriteProjectConfigurationValues(Elem& e0)
  958. {
  959. for (std::string const& c : this->Configurations) {
  960. Elem e1(e0, "PropertyGroup");
  961. e1.Attribute("Condition", this->CalcCondition(c));
  962. e1.Attribute("Label", "Configuration");
  963. if (this->ProjectType != csproj) {
  964. std::string configType;
  965. if (const char* vsConfigurationType =
  966. this->GeneratorTarget->GetProperty("VS_CONFIGURATION_TYPE")) {
  967. configType = vsConfigurationType;
  968. } else {
  969. switch (this->GeneratorTarget->GetType()) {
  970. case cmStateEnums::SHARED_LIBRARY:
  971. case cmStateEnums::MODULE_LIBRARY:
  972. configType = "DynamicLibrary";
  973. break;
  974. case cmStateEnums::OBJECT_LIBRARY:
  975. case cmStateEnums::STATIC_LIBRARY:
  976. configType = "StaticLibrary";
  977. break;
  978. case cmStateEnums::EXECUTABLE:
  979. if (this->NsightTegra &&
  980. !this->GeneratorTarget->GetPropertyAsBool("ANDROID_GUI")) {
  981. // Android executables are .so too.
  982. configType = "DynamicLibrary";
  983. } else {
  984. configType = "Application";
  985. }
  986. break;
  987. case cmStateEnums::UTILITY:
  988. case cmStateEnums::GLOBAL_TARGET:
  989. if (this->NsightTegra) {
  990. // Tegra-Android platform does not understand "Utility".
  991. configType = "StaticLibrary";
  992. } else {
  993. configType = "Utility";
  994. }
  995. break;
  996. case cmStateEnums::UNKNOWN_LIBRARY:
  997. case cmStateEnums::INTERFACE_LIBRARY:
  998. break;
  999. }
  1000. }
  1001. e1.Element("ConfigurationType", configType);
  1002. }
  1003. if (this->MSTools) {
  1004. if (!this->Managed) {
  1005. this->WriteMSToolConfigurationValues(e1, c);
  1006. } else {
  1007. this->WriteMSToolConfigurationValuesManaged(e1, c);
  1008. }
  1009. } else if (this->NsightTegra) {
  1010. this->WriteNsightTegraConfigurationValues(e1, c);
  1011. }
  1012. }
  1013. }
  1014. void cmVisualStudio10TargetGenerator::WriteMSToolConfigurationValues(
  1015. Elem& e1, std::string const& config)
  1016. {
  1017. cmGlobalVisualStudio10Generator* gg = this->GlobalGenerator;
  1018. const char* mfcFlag = this->Makefile->GetDefinition("CMAKE_MFC_FLAG");
  1019. if (mfcFlag) {
  1020. std::string const mfcFlagValue = mfcFlag;
  1021. std::string useOfMfcValue = "false";
  1022. if (this->GeneratorTarget->GetType() <= cmStateEnums::OBJECT_LIBRARY) {
  1023. if (mfcFlagValue == "1") {
  1024. useOfMfcValue = "Static";
  1025. } else if (mfcFlagValue == "2") {
  1026. useOfMfcValue = "Dynamic";
  1027. }
  1028. }
  1029. e1.Element("UseOfMfc", useOfMfcValue);
  1030. }
  1031. if ((this->GeneratorTarget->GetType() <= cmStateEnums::OBJECT_LIBRARY &&
  1032. this->ClOptions[config]->UsingUnicode()) ||
  1033. this->GeneratorTarget->GetPropertyAsBool("VS_WINRT_COMPONENT") ||
  1034. this->GlobalGenerator->TargetsWindowsPhone() ||
  1035. this->GlobalGenerator->TargetsWindowsStore() ||
  1036. this->GeneratorTarget->GetPropertyAsBool("VS_WINRT_EXTENSIONS")) {
  1037. e1.Element("CharacterSet", "Unicode");
  1038. } else if (this->GeneratorTarget->GetType() <=
  1039. cmStateEnums::MODULE_LIBRARY &&
  1040. this->ClOptions[config]->UsingSBCS()) {
  1041. e1.Element("CharacterSet", "NotSet");
  1042. } else {
  1043. e1.Element("CharacterSet", "MultiByte");
  1044. }
  1045. if (const char* toolset = gg->GetPlatformToolset()) {
  1046. e1.Element("PlatformToolset", toolset);
  1047. }
  1048. if (this->GeneratorTarget->GetPropertyAsBool("VS_WINRT_COMPONENT") ||
  1049. this->GeneratorTarget->GetPropertyAsBool("VS_WINRT_EXTENSIONS")) {
  1050. e1.Element("WindowsAppContainer", "true");
  1051. }
  1052. }
  1053. void cmVisualStudio10TargetGenerator::WriteMSToolConfigurationValuesManaged(
  1054. Elem& e1, std::string const& config)
  1055. {
  1056. cmGlobalVisualStudio10Generator* gg = this->GlobalGenerator;
  1057. Options& o = *(this->ClOptions[config]);
  1058. if (o.IsDebug()) {
  1059. e1.Element("DebugSymbols", "true");
  1060. e1.Element("DefineDebug", "true");
  1061. }
  1062. std::string outDir = this->GeneratorTarget->GetDirectory(config) + "/";
  1063. ConvertToWindowsSlash(outDir);
  1064. e1.Element("OutputPath", outDir);
  1065. if (o.HasFlag("Platform")) {
  1066. e1.Element("PlatformTarget", o.GetFlag("Platform"));
  1067. o.RemoveFlag("Platform");
  1068. }
  1069. if (const char* toolset = gg->GetPlatformToolset()) {
  1070. e1.Element("PlatformToolset", toolset);
  1071. }
  1072. std::string postfixName = cmSystemTools::UpperCase(config);
  1073. postfixName += "_POSTFIX";
  1074. std::string assemblyName = this->GeneratorTarget->GetOutputName(
  1075. config, cmStateEnums::RuntimeBinaryArtifact);
  1076. if (const char* postfix = this->GeneratorTarget->GetProperty(postfixName)) {
  1077. assemblyName += postfix;
  1078. }
  1079. e1.Element("AssemblyName", assemblyName);
  1080. if (cmStateEnums::EXECUTABLE == this->GeneratorTarget->GetType()) {
  1081. e1.Element("StartAction", "Program");
  1082. e1.Element("StartProgram", outDir + assemblyName + ".exe");
  1083. }
  1084. OptionsHelper oh(o, e1);
  1085. oh.OutputFlagMap();
  1086. }
  1087. //----------------------------------------------------------------------------
  1088. void cmVisualStudio10TargetGenerator::WriteNsightTegraConfigurationValues(
  1089. Elem& e1, std::string const&)
  1090. {
  1091. cmGlobalVisualStudio10Generator* gg = this->GlobalGenerator;
  1092. const char* toolset = gg->GetPlatformToolset();
  1093. e1.Element("NdkToolchainVersion", toolset ? toolset : "Default");
  1094. if (const char* minApi =
  1095. this->GeneratorTarget->GetProperty("ANDROID_API_MIN")) {
  1096. e1.Element("AndroidMinAPI", "android-" + std::string(minApi));
  1097. }
  1098. if (const char* api = this->GeneratorTarget->GetProperty("ANDROID_API")) {
  1099. e1.Element("AndroidTargetAPI", "android-" + std::string(api));
  1100. }
  1101. if (const char* cpuArch =
  1102. this->GeneratorTarget->GetProperty("ANDROID_ARCH")) {
  1103. e1.Element("AndroidArch", cpuArch);
  1104. }
  1105. if (const char* stlType =
  1106. this->GeneratorTarget->GetProperty("ANDROID_STL_TYPE")) {
  1107. e1.Element("AndroidStlType", stlType);
  1108. }
  1109. }
  1110. void cmVisualStudio10TargetGenerator::WriteCustomCommands(Elem& e0)
  1111. {
  1112. this->CSharpCustomCommandNames.clear();
  1113. std::vector<cmSourceFile const*> customCommands;
  1114. this->GeneratorTarget->GetCustomCommands(customCommands, "");
  1115. for (cmSourceFile const* si : customCommands) {
  1116. this->WriteCustomCommand(e0, si);
  1117. }
  1118. // Add CMakeLists.txt file with rule to re-run CMake for user convenience.
  1119. if (this->GeneratorTarget->GetType() != cmStateEnums::GLOBAL_TARGET &&
  1120. this->GeneratorTarget->GetName() != CMAKE_CHECK_BUILD_SYSTEM_TARGET) {
  1121. if (cmSourceFile const* sf =
  1122. this->LocalGenerator->CreateVCProjBuildRule()) {
  1123. this->WriteCustomCommand(e0, sf);
  1124. }
  1125. }
  1126. }
  1127. void cmVisualStudio10TargetGenerator::WriteCustomCommand(
  1128. Elem& e0, cmSourceFile const* sf)
  1129. {
  1130. if (this->LocalGenerator->GetSourcesVisited(this->GeneratorTarget)
  1131. .insert(sf)
  1132. .second) {
  1133. if (std::vector<cmSourceFile*> const* depends =
  1134. this->GeneratorTarget->GetSourceDepends(sf)) {
  1135. for (cmSourceFile const* di : *depends) {
  1136. this->WriteCustomCommand(e0, di);
  1137. }
  1138. }
  1139. if (cmCustomCommand const* command = sf->GetCustomCommand()) {
  1140. // C# projects write their <Target> within WriteCustomRule()
  1141. this->WriteCustomRule(e0, sf, *command);
  1142. }
  1143. }
  1144. }
  1145. void cmVisualStudio10TargetGenerator::WriteCustomRule(
  1146. Elem& e0, cmSourceFile const* source, cmCustomCommand const& command)
  1147. {
  1148. std::string sourcePath = source->GetFullPath();
  1149. // VS 10 will always rebuild a custom command attached to a .rule
  1150. // file that doesn't exist so create the file explicitly.
  1151. if (source->GetPropertyAsBool("__CMAKE_RULE")) {
  1152. if (!cmSystemTools::FileExists(sourcePath)) {
  1153. // Make sure the path exists for the file
  1154. std::string path = cmSystemTools::GetFilenamePath(sourcePath);
  1155. cmSystemTools::MakeDirectory(path);
  1156. cmsys::ofstream fout(sourcePath.c_str());
  1157. if (fout) {
  1158. fout << "# generated from CMake\n";
  1159. fout.flush();
  1160. fout.close();
  1161. // Force given file to have a very old timestamp, thus
  1162. // preventing dependent rebuilds.
  1163. this->ForceOld(sourcePath);
  1164. } else {
  1165. std::string error = "Could not create file: [";
  1166. error += sourcePath;
  1167. error += "] ";
  1168. cmSystemTools::Error(error.c_str(),
  1169. cmSystemTools::GetLastSystemError().c_str());
  1170. }
  1171. }
  1172. }
  1173. cmLocalVisualStudio7Generator* lg = this->LocalGenerator;
  1174. std::unique_ptr<Elem> spe1;
  1175. std::unique_ptr<Elem> spe2;
  1176. if (this->ProjectType != csproj) {
  1177. spe1 = cm::make_unique<Elem>(e0, "ItemGroup");
  1178. spe2 = cm::make_unique<Elem>(*spe1);
  1179. this->WriteSource(*spe2, "CustomBuild", source);
  1180. spe2->SetHasElements();
  1181. } else {
  1182. Elem e1(e0, "ItemGroup");
  1183. Elem e2(e1);
  1184. std::string link;
  1185. this->GetCSharpSourceLink(source, link);
  1186. this->WriteSource(e2, "None", source);
  1187. e2.SetHasElements();
  1188. if (!link.empty()) {
  1189. e2.Element("Link", link);
  1190. }
  1191. }
  1192. for (std::string const& c : this->Configurations) {
  1193. cmCustomCommandGenerator ccg(command, c, lg);
  1194. std::string comment = lg->ConstructComment(ccg);
  1195. comment = cmVS10EscapeComment(comment);
  1196. std::string script = lg->ConstructScript(ccg);
  1197. // input files for custom command
  1198. std::stringstream inputs;
  1199. inputs << source->GetFullPath();
  1200. for (std::string const& d : ccg.GetDepends()) {
  1201. std::string dep;
  1202. if (lg->GetRealDependency(d, c, dep)) {
  1203. ConvertToWindowsSlash(dep);
  1204. inputs << ";" << dep;
  1205. }
  1206. }
  1207. // output files for custom command
  1208. std::stringstream outputs;
  1209. const char* sep = "";
  1210. for (std::string const& o : ccg.GetOutputs()) {
  1211. std::string out = o;
  1212. ConvertToWindowsSlash(out);
  1213. outputs << sep << out;
  1214. sep = ";";
  1215. }
  1216. if (this->ProjectType == csproj) {
  1217. std::string name = "CustomCommand_" + c + "_" +
  1218. cmSystemTools::ComputeStringMD5(sourcePath);
  1219. this->WriteCustomRuleCSharp(e0, c, name, script, inputs.str(),
  1220. outputs.str(), comment);
  1221. } else {
  1222. this->WriteCustomRuleCpp(*spe2, c, script, inputs.str(), outputs.str(),
  1223. comment);
  1224. }
  1225. }
  1226. }
  1227. void cmVisualStudio10TargetGenerator::WriteCustomRuleCpp(
  1228. Elem& e2, std::string const& config, std::string const& script,
  1229. std::string const& inputs, std::string const& outputs,
  1230. std::string const& comment)
  1231. {
  1232. const std::string cond = this->CalcCondition(config);
  1233. e2.WritePlatformConfigTag("Message", cond, comment);
  1234. e2.WritePlatformConfigTag("Command", cond, script);
  1235. e2.WritePlatformConfigTag("AdditionalInputs", cond,
  1236. inputs + ";%(AdditionalInputs)");
  1237. e2.WritePlatformConfigTag("Outputs", cond, outputs);
  1238. if (this->LocalGenerator->GetVersion() >
  1239. cmGlobalVisualStudioGenerator::VS10) {
  1240. // VS >= 11 let us turn off linking of custom command outputs.
  1241. e2.WritePlatformConfigTag("LinkObjects", cond, "false");
  1242. }
  1243. }
  1244. void cmVisualStudio10TargetGenerator::WriteCustomRuleCSharp(
  1245. Elem& e0, std::string const& config, std::string const& name,
  1246. std::string const& script, std::string const& inputs,
  1247. std::string const& outputs, std::string const& comment)
  1248. {
  1249. this->CSharpCustomCommandNames.insert(name);
  1250. Elem e1(e0, "Target");
  1251. e1.Attribute("Condition", this->CalcCondition(config));
  1252. e1.S << "\n Name=\"" << name << "\"";
  1253. e1.S << "\n Inputs=\"" << cmVS10EscapeAttr(inputs) << "\"";
  1254. e1.S << "\n Outputs=\"" << cmVS10EscapeAttr(outputs) << "\"";
  1255. if (!comment.empty()) {
  1256. Elem(e1, "Exec").Attribute("Command", "echo " + comment);
  1257. }
  1258. Elem(e1, "Exec").Attribute("Command", script);
  1259. }
  1260. std::string cmVisualStudio10TargetGenerator::ConvertPath(
  1261. std::string const& path, bool forceRelative)
  1262. {
  1263. return forceRelative
  1264. ? cmSystemTools::RelativePath(
  1265. this->LocalGenerator->GetCurrentBinaryDirectory(), path)
  1266. : path;
  1267. }
  1268. static void ConvertToWindowsSlash(std::string& s)
  1269. {
  1270. // first convert all of the slashes
  1271. std::string::size_type pos = 0;
  1272. while ((pos = s.find('/', pos)) != std::string::npos) {
  1273. s[pos] = '\\';
  1274. pos++;
  1275. }
  1276. }
  1277. void cmVisualStudio10TargetGenerator::WriteGroups()
  1278. {
  1279. if (this->ProjectType == csproj) {
  1280. return;
  1281. }
  1282. // collect up group information
  1283. std::vector<cmSourceGroup> sourceGroups = this->Makefile->GetSourceGroups();
  1284. std::vector<cmGeneratorTarget::AllConfigSource> const& sources =
  1285. this->GeneratorTarget->GetAllConfigSources();
  1286. std::set<cmSourceGroup*> groupsUsed;
  1287. for (cmGeneratorTarget::AllConfigSource const& si : sources) {
  1288. std::string const& source = si.Source->GetFullPath();
  1289. cmSourceGroup* sourceGroup =
  1290. this->Makefile->FindSourceGroup(source, sourceGroups);
  1291. groupsUsed.insert(sourceGroup);
  1292. }
  1293. this->AddMissingSourceGroups(groupsUsed, sourceGroups);
  1294. // Write out group file
  1295. std::string path = this->LocalGenerator->GetCurrentBinaryDirectory();
  1296. path += "/";
  1297. path += this->Name;
  1298. path += computeProjectFileExtension(this->GeneratorTarget,
  1299. *this->Configurations.begin());
  1300. path += ".filters";
  1301. cmGeneratedFileStream fout(path.c_str());
  1302. fout.SetCopyIfDifferent(true);
  1303. char magic[] = { char(0xEF), char(0xBB), char(0xBF) };
  1304. fout.write(magic, 3);
  1305. fout << "<?xml version=\"1.0\" encoding=\""
  1306. << this->GlobalGenerator->Encoding() << "\"?>"
  1307. << "\n";
  1308. {
  1309. Elem e0(fout);
  1310. e0.StartElement("Project");
  1311. e0.Attribute("ToolsVersion", this->GlobalGenerator->GetToolsVersion());
  1312. e0.Attribute("xmlns",
  1313. "http://schemas.microsoft.com/developer/msbuild/2003");
  1314. for (auto const& ti : this->Tools) {
  1315. this->WriteGroupSources(e0, ti.first, ti.second, sourceGroups);
  1316. }
  1317. // Added files are images and the manifest.
  1318. if (!this->AddedFiles.empty()) {
  1319. Elem e1(e0, "ItemGroup");
  1320. e1.SetHasElements();
  1321. for (std::string const& oi : this->AddedFiles) {
  1322. std::string fileName =
  1323. cmSystemTools::LowerCase(cmSystemTools::GetFilenameName(oi));
  1324. if (fileName == "wmappmanifest.xml") {
  1325. Elem e2(e1, "XML");
  1326. e2.Attribute("Include", oi);
  1327. e2.Element("Filter", "Resource Files");
  1328. } else if (cmSystemTools::GetFilenameExtension(fileName) ==
  1329. ".appxmanifest") {
  1330. Elem e2(e1, "AppxManifest");
  1331. e2.Attribute("Include", oi);
  1332. e2.Element("Filter", "Resource Files");
  1333. } else if (cmSystemTools::GetFilenameExtension(fileName) == ".pfx") {
  1334. Elem e2(e1, "None");
  1335. e2.Attribute("Include", oi);
  1336. e2.Element("Filter", "Resource Files");
  1337. } else {
  1338. Elem e2(e1, "Image");
  1339. e2.Attribute("Include", oi);
  1340. e2.Element("Filter", "Resource Files");
  1341. }
  1342. }
  1343. }
  1344. std::vector<cmSourceFile const*> resxObjs;
  1345. this->GeneratorTarget->GetResxSources(resxObjs, "");
  1346. if (!resxObjs.empty()) {
  1347. Elem e1(e0, "ItemGroup");
  1348. for (cmSourceFile const* oi : resxObjs) {
  1349. std::string obj = oi->GetFullPath();
  1350. ConvertToWindowsSlash(obj);
  1351. Elem e2(e1, "EmbeddedResource");
  1352. e2.Attribute("Include", obj);
  1353. e2.Element("Filter", "Resource Files");
  1354. }
  1355. }
  1356. {
  1357. Elem e1(e0, "ItemGroup");
  1358. e1.SetHasElements();
  1359. std::vector<cmSourceGroup*> groupsVec(groupsUsed.begin(),
  1360. groupsUsed.end());
  1361. std::sort(groupsVec.begin(), groupsVec.end(),
  1362. [](cmSourceGroup* l, cmSourceGroup* r) {
  1363. return l->GetFullName() < r->GetFullName();
  1364. });
  1365. for (cmSourceGroup* sg : groupsVec) {
  1366. std::string const& name = sg->GetFullName();
  1367. if (!name.empty()) {
  1368. std::string guidName = "SG_Filter_" + name;
  1369. std::string guid = this->GlobalGenerator->GetGUID(guidName);
  1370. Elem e2(e1, "Filter");
  1371. e2.Attribute("Include", name);
  1372. e2.Element("UniqueIdentifier", "{" + guid + "}");
  1373. }
  1374. }
  1375. if (!resxObjs.empty() || !this->AddedFiles.empty()) {
  1376. std::string guidName = "SG_Filter_Resource Files";
  1377. std::string guid = this->GlobalGenerator->GetGUID(guidName);
  1378. Elem e2(e1, "Filter");
  1379. e2.Attribute("Include", "Resource Files");
  1380. e2.Element("UniqueIdentifier", "{" + guid + "}");
  1381. e2.Element("Extensions",
  1382. "rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;"
  1383. "gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms");
  1384. }
  1385. }
  1386. }
  1387. fout << '\n';
  1388. if (fout.Close()) {
  1389. this->GlobalGenerator->FileReplacedDuringGenerate(path);
  1390. }
  1391. }
  1392. // Add to groupsUsed empty source groups that have non-empty children.
  1393. void cmVisualStudio10TargetGenerator::AddMissingSourceGroups(
  1394. std::set<cmSourceGroup*>& groupsUsed,
  1395. const std::vector<cmSourceGroup>& allGroups)
  1396. {
  1397. for (cmSourceGroup const& current : allGroups) {
  1398. std::vector<cmSourceGroup> const& children = current.GetGroupChildren();
  1399. if (children.empty()) {
  1400. continue; // the group is really empty
  1401. }
  1402. this->AddMissingSourceGroups(groupsUsed, children);
  1403. cmSourceGroup* current_ptr = const_cast<cmSourceGroup*>(&current);
  1404. if (groupsUsed.find(current_ptr) != groupsUsed.end()) {
  1405. continue; // group has already been added to set
  1406. }
  1407. // check if it least one of the group's descendants is not empty
  1408. // (at least one child must already have been added)
  1409. std::vector<cmSourceGroup>::const_iterator child_it = children.begin();
  1410. while (child_it != children.end()) {
  1411. cmSourceGroup* child_ptr = const_cast<cmSourceGroup*>(&(*child_it));
  1412. if (groupsUsed.find(child_ptr) != groupsUsed.end()) {
  1413. break; // found a child that was already added => add current group too
  1414. }
  1415. child_it++;
  1416. }
  1417. if (child_it == children.end()) {
  1418. continue; // no descendants have source files => ignore this group
  1419. }
  1420. groupsUsed.insert(current_ptr);
  1421. }
  1422. }
  1423. void cmVisualStudio10TargetGenerator::WriteGroupSources(
  1424. Elem& e0, std::string const& name, ToolSources const& sources,
  1425. std::vector<cmSourceGroup>& sourceGroups)
  1426. {
  1427. Elem e1(e0, "ItemGroup");
  1428. e1.SetHasElements();
  1429. for (ToolSource const& s : sources) {
  1430. cmSourceFile const* sf = s.SourceFile;
  1431. std::string const& source = sf->GetFullPath();
  1432. cmSourceGroup* sourceGroup =
  1433. this->Makefile->FindSourceGroup(source, sourceGroups);
  1434. std::string const& filter = sourceGroup->GetFullName();
  1435. std::string path = this->ConvertPath(source, s.RelativePath);
  1436. ConvertToWindowsSlash(path);
  1437. Elem e2(e1, name.c_str());
  1438. e2.Attribute("Include", path);
  1439. if (!filter.empty()) {
  1440. e2.Element("Filter", filter);
  1441. }
  1442. }
  1443. }
  1444. void cmVisualStudio10TargetGenerator::WriteHeaderSource(Elem& e1,
  1445. cmSourceFile const* sf)
  1446. {
  1447. std::string const& fileName = sf->GetFullPath();
  1448. Elem e2(e1);
  1449. this->WriteSource(e2, "ClInclude", sf);
  1450. if (this->IsResxHeader(fileName)) {
  1451. e2.Element("FileType", "CppForm");
  1452. } else if (this->IsXamlHeader(fileName)) {
  1453. std::string xamlFileName = fileName.substr(0, fileName.find_last_of("."));
  1454. e2.Element("DependentUpon", xamlFileName);
  1455. }
  1456. }
  1457. void cmVisualStudio10TargetGenerator::WriteExtraSource(Elem& e1,
  1458. cmSourceFile const* sf)
  1459. {
  1460. bool toolHasSettings = false;
  1461. const char* tool = "None";
  1462. std::string shaderType;
  1463. std::string shaderEntryPoint;
  1464. std::string shaderModel;
  1465. std::string shaderAdditionalFlags;
  1466. std::string shaderDisableOptimizations;
  1467. std::string shaderEnableDebug;
  1468. std::string shaderObjectFileName;
  1469. std::string outputHeaderFile;
  1470. std::string variableName;
  1471. std::string settingsGenerator;
  1472. std::string settingsLastGenOutput;
  1473. std::string sourceLink;
  1474. std::string subType;
  1475. std::string copyToOutDir;
  1476. std::string includeInVsix;
  1477. std::string ext = cmSystemTools::LowerCase(sf->GetExtension());
  1478. if (this->ProjectType == csproj) {
  1479. // EVERY extra source file must have a <Link>, otherwise it might not
  1480. // be visible in Visual Studio at all. The path relative to current
  1481. // source- or binary-dir is used within the link, if the file is
  1482. // in none of these paths, it is added with the plain filename without
  1483. // any path. This means the file will show up at root-level of the csproj
  1484. // (where CMakeLists.txt etc. are).
  1485. if (!this->InSourceBuild) {
  1486. toolHasSettings = true;
  1487. std::string fullFileName = sf->GetFullPath();
  1488. std::string srcDir = this->Makefile->GetCurrentSourceDirectory();
  1489. std::string binDir = this->Makefile->GetCurrentBinaryDirectory();
  1490. if (fullFileName.find(binDir) != std::string::npos) {
  1491. sourceLink.clear();
  1492. } else if (fullFileName.find(srcDir) != std::string::npos) {
  1493. sourceLink = fullFileName.substr(srcDir.length() + 1);
  1494. } else {
  1495. // fallback: add plain filename without any path
  1496. sourceLink = cmsys::SystemTools::GetFilenameName(fullFileName);
  1497. }
  1498. if (!sourceLink.empty()) {
  1499. ConvertToWindowsSlash(sourceLink);
  1500. }
  1501. }
  1502. }
  1503. if (ext == "hlsl") {
  1504. tool = "FXCompile";
  1505. // Figure out the type of shader compiler to use.
  1506. if (const char* st = sf->GetProperty("VS_SHADER_TYPE")) {
  1507. shaderType = st;
  1508. toolHasSettings = true;
  1509. }
  1510. // Figure out which entry point to use if any
  1511. if (const char* se = sf->GetProperty("VS_SHADER_ENTRYPOINT")) {
  1512. shaderEntryPoint = se;
  1513. toolHasSettings = true;
  1514. }
  1515. // Figure out which shader model to use if any
  1516. if (const char* sm = sf->GetProperty("VS_SHADER_MODEL")) {
  1517. shaderModel = sm;
  1518. toolHasSettings = true;
  1519. }
  1520. // Figure out which output header file to use if any
  1521. if (const char* ohf = sf->GetProperty("VS_SHADER_OUTPUT_HEADER_FILE")) {
  1522. outputHeaderFile = ohf;
  1523. toolHasSettings = true;
  1524. }
  1525. // Figure out which variable name to use if any
  1526. if (const char* vn = sf->GetProperty("VS_SHADER_VARIABLE_NAME")) {
  1527. variableName = vn;
  1528. toolHasSettings = true;
  1529. }
  1530. // Figure out if there's any additional flags to use
  1531. if (const char* saf = sf->GetProperty("VS_SHADER_FLAGS")) {
  1532. shaderAdditionalFlags = saf;
  1533. toolHasSettings = true;
  1534. }
  1535. // Figure out if debug information should be generated
  1536. if (const char* sed = sf->GetProperty("VS_SHADER_ENABLE_DEBUG")) {
  1537. shaderEnableDebug = sed;
  1538. toolHasSettings = true;
  1539. }
  1540. // Figure out if optimizations should be disabled
  1541. if (const char* sdo = sf->GetProperty("VS_SHADER_DISABLE_OPTIMIZATIONS")) {
  1542. shaderDisableOptimizations = sdo;
  1543. toolHasSettings = true;
  1544. }
  1545. if (const char* sofn = sf->GetProperty("VS_SHADER_OBJECT_FILE_NAME")) {
  1546. shaderObjectFileName = sofn;
  1547. toolHasSettings = true;
  1548. }
  1549. } else if (ext == "jpg" || ext == "png") {
  1550. tool = "Image";
  1551. } else if (ext == "resw") {
  1552. tool = "PRIResource";
  1553. } else if (ext == "xml") {
  1554. tool = "XML";
  1555. } else if (ext == "natvis") {
  1556. tool = "Natvis";
  1557. } else if (ext == "settings") {
  1558. settingsLastGenOutput =
  1559. cmsys::SystemTools::GetFilenameName(sf->GetFullPath());
  1560. std::size_t pos = settingsLastGenOutput.find(".settings");
  1561. settingsLastGenOutput.replace(pos, 9, ".Designer.cs");
  1562. settingsGenerator = "SettingsSingleFileGenerator";
  1563. toolHasSettings = true;
  1564. } else if (ext == "vsixmanifest") {
  1565. subType = "Designer";
  1566. }
  1567. if (const char* c = sf->GetProperty("VS_COPY_TO_OUT_DIR")) {
  1568. copyToOutDir = c;
  1569. toolHasSettings = true;
  1570. }
  1571. if (sf->GetPropertyAsBool("VS_INCLUDE_IN_VSIX")) {
  1572. includeInVsix = "True";
  1573. tool = "Content";
  1574. toolHasSettings = true;
  1575. }
  1576. // Collect VS_CSHARP_* property values (if some are set)
  1577. std::map<std::string, std::string> sourceFileTags;
  1578. this->GetCSharpSourceProperties(sf, sourceFileTags);
  1579. if (this->NsightTegra) {
  1580. // Nsight Tegra needs specific file types to check up-to-dateness.
  1581. std::string name = cmSystemTools::LowerCase(sf->GetLocation().GetName());
  1582. if (name == "androidmanifest.xml" || name == "build.xml" ||
  1583. name == "proguard.cfg" || name == "proguard-project.txt" ||
  1584. ext == "properties") {
  1585. tool = "AndroidBuild";
  1586. } else if (ext == "java") {
  1587. tool = "JCompile";
  1588. } else if (ext == "asm" || ext == "s") {
  1589. tool = "ClCompile";
  1590. }
  1591. }
  1592. const char* toolOverride = sf->GetProperty("VS_TOOL_OVERRIDE");
  1593. if (toolOverride && *toolOverride) {
  1594. tool = toolOverride;
  1595. }
  1596. std::string deployContent;
  1597. std::string deployLocation;
  1598. if (this->GlobalGenerator->TargetsWindowsPhone() ||
  1599. this->GlobalGenerator->TargetsWindowsStore()) {
  1600. const char* content = sf->GetProperty("VS_DEPLOYMENT_CONTENT");
  1601. if (content && *content) {
  1602. toolHasSettings = true;
  1603. deployContent = content;
  1604. const char* location = sf->GetProperty("VS_DEPLOYMENT_LOCATION");
  1605. if (location && *location) {
  1606. deployLocation = location;
  1607. }
  1608. }
  1609. }
  1610. Elem e2(e1);
  1611. this->WriteSource(e2, tool, sf);
  1612. if (toolHasSettings) {
  1613. e2.SetHasElements();
  1614. if (!deployContent.empty()) {
  1615. cmGeneratorExpression ge;
  1616. std::unique_ptr<cmCompiledGeneratorExpression> cge =
  1617. ge.Parse(deployContent);
  1618. // Deployment location cannot be set on a configuration basis
  1619. if (!deployLocation.empty()) {
  1620. e2.Element("Link", deployLocation + "\\%(FileName)%(Extension)");
  1621. }
  1622. for (size_t i = 0; i != this->Configurations.size(); ++i) {
  1623. if (cge->Evaluate(this->LocalGenerator, this->Configurations[i]) ==
  1624. "1") {
  1625. e2.WritePlatformConfigTag("DeploymentContent",
  1626. "'$(Configuration)|$(Platform)'=='" +
  1627. this->Configurations[i] + "|" +
  1628. this->Platform + "'",
  1629. "true");
  1630. } else {
  1631. e2.WritePlatformConfigTag("ExcludedFromBuild",
  1632. "'$(Configuration)|$(Platform)'=='" +
  1633. this->Configurations[i] + "|" +
  1634. this->Platform + "'",
  1635. "true");
  1636. }
  1637. }
  1638. }
  1639. if (!shaderType.empty()) {
  1640. e2.Element("ShaderType", shaderType);
  1641. }
  1642. if (!shaderEntryPoint.empty()) {
  1643. e2.Element("EntryPointName", shaderEntryPoint);
  1644. }
  1645. if (!shaderModel.empty()) {
  1646. e2.Element("ShaderModel", shaderModel);
  1647. }
  1648. if (!outputHeaderFile.empty()) {
  1649. for (size_t i = 0; i != this->Configurations.size(); ++i) {
  1650. e2.WritePlatformConfigTag("HeaderFileOutput",
  1651. "'$(Configuration)|$(Platform)'=='" +
  1652. this->Configurations[i] + "|" +
  1653. this->Platform + "'",
  1654. outputHeaderFile);
  1655. }
  1656. }
  1657. if (!variableName.empty()) {
  1658. for (size_t i = 0; i != this->Configurations.size(); ++i) {
  1659. e2.WritePlatformConfigTag("VariableName",
  1660. "'$(Configuration)|$(Platform)'=='" +
  1661. this->Configurations[i] + "|" +
  1662. this->Platform + "'",
  1663. variableName);
  1664. }
  1665. }
  1666. if (!shaderEnableDebug.empty()) {
  1667. cmGeneratorExpression ge;
  1668. std::unique_ptr<cmCompiledGeneratorExpression> cge =
  1669. ge.Parse(shaderEnableDebug);
  1670. for (size_t i = 0; i != this->Configurations.size(); ++i) {
  1671. const std::string& enableDebug =
  1672. cge->Evaluate(this->LocalGenerator, this->Configurations[i]);
  1673. if (!enableDebug.empty()) {
  1674. e2.WritePlatformConfigTag(
  1675. "EnableDebuggingInformation",
  1676. "'$(Configuration)|$(Platform)'=='" + this->Configurations[i] +
  1677. "|" + this->Platform + "'",
  1678. cmSystemTools::IsOn(enableDebug.c_str()) ? "true" : "false");
  1679. }
  1680. }
  1681. }
  1682. if (!shaderDisableOptimizations.empty()) {
  1683. cmGeneratorExpression ge;
  1684. std::unique_ptr<cmCompiledGeneratorExpression> cge =
  1685. ge.Parse(shaderDisableOptimizations);
  1686. for (size_t i = 0; i != this->Configurations.size(); ++i) {
  1687. const std::string& disableOptimizations =
  1688. cge->Evaluate(this->LocalGenerator, this->Configurations[i]);
  1689. if (!disableOptimizations.empty()) {
  1690. e2.WritePlatformConfigTag(
  1691. "DisableOptimizations",
  1692. "'$(Configuration)|$(Platform)'=='" + this->Configurations[i] +
  1693. "|" + this->Platform + "'",
  1694. (cmSystemTools::IsOn(disableOptimizations.c_str()) ? "true"
  1695. : "false"));
  1696. }
  1697. }
  1698. }
  1699. if (!shaderObjectFileName.empty()) {
  1700. e2.Element("ObjectFileOutput", shaderObjectFileName);
  1701. }
  1702. if (!shaderAdditionalFlags.empty()) {
  1703. e2.Element("AdditionalOptions", shaderAdditionalFlags);
  1704. }
  1705. if (!settingsGenerator.empty()) {
  1706. e2.Element("Generator", settingsGenerator);
  1707. }
  1708. if (!settingsLastGenOutput.empty()) {
  1709. e2.Element("LastGenOutput", settingsLastGenOutput);
  1710. }
  1711. if (!sourceLink.empty()) {
  1712. e2.Element("Link", sourceLink);
  1713. }
  1714. if (!subType.empty()) {
  1715. e2.Element("SubType", subType);
  1716. }
  1717. if (!copyToOutDir.empty()) {
  1718. e2.Element("CopyToOutputDirectory", copyToOutDir);
  1719. }
  1720. if (!includeInVsix.empty()) {
  1721. e2.Element("IncludeInVSIX", includeInVsix);
  1722. }
  1723. // write source file specific tags
  1724. this->WriteCSharpSourceProperties(e2, sourceFileTags);
  1725. }
  1726. }
  1727. void cmVisualStudio10TargetGenerator::WriteSource(Elem& e2,
  1728. std::string const& tool,
  1729. cmSourceFile const* sf)
  1730. {
  1731. // Visual Studio tools append relative paths to the current dir, as in:
  1732. //
  1733. // c:\path\to\current\dir\..\..\..\relative\path\to\source.c
  1734. //
  1735. // and fail if this exceeds the maximum allowed path length. Our path
  1736. // conversion uses full paths when possible to allow deeper trees.
  1737. // However, CUDA 8.0 msbuild rules fail on absolute paths so for CUDA
  1738. // we must use relative paths.
  1739. bool forceRelative = sf->GetLanguage() == "CUDA";
  1740. std::string sourceFile = this->ConvertPath(sf->GetFullPath(), forceRelative);
  1741. if (this->LocalGenerator->GetVersion() ==
  1742. cmGlobalVisualStudioGenerator::VS10 &&
  1743. cmSystemTools::FileIsFullPath(sourceFile)) {
  1744. // Normal path conversion resulted in a full path. VS 10 (but not 11)
  1745. // refuses to show the property page in the IDE for a source file with a
  1746. // full path (not starting in a '.' or '/' AFAICT). CMake <= 2.8.4 used a
  1747. // relative path but to allow deeper build trees CMake 2.8.[5678] used a
  1748. // full path except for custom commands. Custom commands do not work
  1749. // without a relative path, but they do not seem to be involved in tools
  1750. // with the above behavior. For other sources we now use a relative path
  1751. // when the combined path will not be too long so property pages appear.
  1752. std::string sourceRel = this->ConvertPath(sf->GetFullPath(), true);
  1753. size_t const maxLen = 250;
  1754. if (sf->GetCustomCommand() ||
  1755. ((strlen(this->LocalGenerator->GetCurrentBinaryDirectory()) + 1 +
  1756. sourceRel.length()) <= maxLen)) {
  1757. forceRelative = true;
  1758. sourceFile = sourceRel;
  1759. } else {
  1760. this->GlobalGenerator->PathTooLong(this->GeneratorTarget, sf, sourceRel);
  1761. }
  1762. }
  1763. ConvertToWindowsSlash(sourceFile);
  1764. e2.StartElement(tool.c_str());
  1765. e2.Attribute("Include", sourceFile);
  1766. ToolSource toolSource = { sf, forceRelative };
  1767. this->Tools[tool].push_back(toolSource);
  1768. }
  1769. void cmVisualStudio10TargetGenerator::WriteAllSources(Elem& e0)
  1770. {
  1771. if (this->GeneratorTarget->GetType() > cmStateEnums::UTILITY) {
  1772. return;
  1773. }
  1774. Elem e1(e0, "ItemGroup");
  1775. e1.SetHasElements();
  1776. std::vector<size_t> all_configs;
  1777. for (size_t ci = 0; ci < this->Configurations.size(); ++ci) {
  1778. all_configs.push_back(ci);
  1779. }
  1780. std::vector<cmGeneratorTarget::AllConfigSource> const& sources =
  1781. this->GeneratorTarget->GetAllConfigSources();
  1782. cmSourceFile const* srcCMakeLists =
  1783. this->LocalGenerator->CreateVCProjBuildRule();
  1784. for (cmGeneratorTarget::AllConfigSource const& si : sources) {
  1785. if (si.Source == srcCMakeLists) {
  1786. // Skip explicit reference to CMakeLists.txt source.
  1787. continue;
  1788. }
  1789. const char* tool = nullptr;
  1790. switch (si.Kind) {
  1791. case cmGeneratorTarget::SourceKindAppManifest:
  1792. tool = "AppxManifest";
  1793. break;
  1794. case cmGeneratorTarget::SourceKindCertificate:
  1795. tool = "None";
  1796. break;
  1797. case cmGeneratorTarget::SourceKindCustomCommand:
  1798. // Handled elsewhere.
  1799. break;
  1800. case cmGeneratorTarget::SourceKindExternalObject:
  1801. tool = "Object";
  1802. if (this->LocalGenerator->GetVersion() <
  1803. cmGlobalVisualStudioGenerator::VS11) {
  1804. // For VS == 10 we cannot use LinkObjects to avoid linking custom
  1805. // command outputs. If an object file is generated in this target,
  1806. // then vs10 will use it in the build, and we have to list it as
  1807. // None instead of Object.
  1808. std::vector<cmSourceFile*> const* d =
  1809. this->GeneratorTarget->GetSourceDepends(si.Source);
  1810. if (d && !d->empty()) {
  1811. tool = "None";
  1812. }
  1813. }
  1814. break;
  1815. case cmGeneratorTarget::SourceKindExtra:
  1816. this->WriteExtraSource(e1, si.Source);
  1817. break;
  1818. case cmGeneratorTarget::SourceKindHeader:
  1819. this->WriteHeaderSource(e1, si.Source);
  1820. break;
  1821. case cmGeneratorTarget::SourceKindIDL:
  1822. tool = "Midl";
  1823. break;
  1824. case cmGeneratorTarget::SourceKindManifest:
  1825. // Handled elsewhere.
  1826. break;
  1827. case cmGeneratorTarget::SourceKindModuleDefinition:
  1828. tool = "None";
  1829. break;
  1830. case cmGeneratorTarget::SourceKindObjectSource: {
  1831. const std::string& lang = si.Source->GetLanguage();
  1832. if (lang == "C" || lang == "CXX") {
  1833. tool = "ClCompile";
  1834. } else if (lang == "ASM_MASM" &&
  1835. this->GlobalGenerator->IsMasmEnabled()) {
  1836. tool = "MASM";
  1837. } else if (lang == "ASM_NASM" &&
  1838. this->GlobalGenerator->IsNasmEnabled()) {
  1839. tool = "NASM";
  1840. } else if (lang == "RC") {
  1841. tool = "ResourceCompile";
  1842. } else if (lang == "CSharp") {
  1843. tool = "Compile";
  1844. } else if (lang == "CUDA" && this->GlobalGenerator->IsCudaEnabled()) {
  1845. tool = "CudaCompile";
  1846. } else {
  1847. tool = "None";
  1848. }
  1849. } break;
  1850. case cmGeneratorTarget::SourceKindResx:
  1851. // Handled elsewhere.
  1852. break;
  1853. case cmGeneratorTarget::SourceKindXaml:
  1854. // Handled elsewhere.
  1855. break;
  1856. }
  1857. if (tool) {
  1858. // Compute set of configurations to exclude, if any.
  1859. std::vector<size_t> const& include_configs = si.Configs;
  1860. std::vector<size_t> exclude_configs;
  1861. std::set_difference(all_configs.begin(), all_configs.end(),
  1862. include_configs.begin(), include_configs.end(),
  1863. std::back_inserter(exclude_configs));
  1864. Elem e2(e1);
  1865. this->WriteSource(e2, tool, si.Source);
  1866. if (si.Kind == cmGeneratorTarget::SourceKindObjectSource) {
  1867. this->OutputSourceSpecificFlags(e2, si.Source);
  1868. }
  1869. if (!exclude_configs.empty()) {
  1870. this->WriteExcludeFromBuild(e2, exclude_configs);
  1871. }
  1872. }
  1873. }
  1874. if (this->IsMissingFiles) {
  1875. this->WriteMissingFiles(e1);
  1876. }
  1877. }
  1878. void cmVisualStudio10TargetGenerator::OutputSourceSpecificFlags(
  1879. Elem& e2, cmSourceFile const* source)
  1880. {
  1881. cmSourceFile const& sf = *source;
  1882. std::string objectName;
  1883. if (this->GeneratorTarget->HasExplicitObjectName(&sf)) {
  1884. objectName = this->GeneratorTarget->GetObjectName(&sf);
  1885. }
  1886. std::string flags;
  1887. bool configDependentFlags = false;
  1888. std::string options;
  1889. bool configDependentOptions = false;
  1890. std::string defines;
  1891. bool configDependentDefines = false;
  1892. std::string includes;
  1893. bool configDependentIncludes = false;
  1894. if (const char* cflags = sf.GetProperty("COMPILE_FLAGS")) {
  1895. configDependentFlags =
  1896. cmGeneratorExpression::Find(cflags) != std::string::npos;
  1897. flags += cflags;
  1898. }
  1899. if (const char* coptions = sf.GetProperty("COMPILE_OPTIONS")) {
  1900. configDependentOptions =
  1901. cmGeneratorExpression::Find(coptions) != std::string::npos;
  1902. options += coptions;
  1903. }
  1904. if (const char* cdefs = sf.GetProperty("COMPILE_DEFINITIONS")) {
  1905. configDependentDefines =
  1906. cmGeneratorExpression::Find(cdefs) != std::string::npos;
  1907. defines += cdefs;
  1908. }
  1909. if (const char* cincludes = sf.GetProperty("INCLUDE_DIRECTORIES")) {
  1910. configDependentIncludes =
  1911. cmGeneratorExpression::Find(cincludes) != std::string::npos;
  1912. includes += cincludes;
  1913. }
  1914. std::string lang =
  1915. this->GlobalGenerator->GetLanguageFromExtension(sf.GetExtension().c_str());
  1916. std::string sourceLang = this->LocalGenerator->GetSourceFileLanguage(sf);
  1917. const std::string& linkLanguage =
  1918. this->GeneratorTarget->GetLinkerLanguage("");
  1919. bool needForceLang = false;
  1920. // source file does not match its extension language
  1921. if (lang != sourceLang) {
  1922. needForceLang = true;
  1923. lang = sourceLang;
  1924. }
  1925. // if the source file does not match the linker language
  1926. // then force c or c++
  1927. const char* compileAs = 0;
  1928. if (needForceLang || (linkLanguage != lang)) {
  1929. if (lang == "CXX") {
  1930. // force a C++ file type
  1931. compileAs = "CompileAsCpp";
  1932. } else if (lang == "C") {
  1933. // force to c
  1934. compileAs = "CompileAsC";
  1935. }
  1936. }
  1937. bool noWinRT = this->TargetCompileAsWinRT && lang == "C";
  1938. // for the first time we need a new line if there is something
  1939. // produced here.
  1940. if (!objectName.empty()) {
  1941. if (lang == "CUDA") {
  1942. e2.Element("CompileOut", "$(IntDir)/" + objectName);
  1943. } else {
  1944. e2.Element("ObjectFileName", "$(IntDir)/" + objectName);
  1945. }
  1946. }
  1947. for (std::string const& config : this->Configurations) {
  1948. std::string configUpper = cmSystemTools::UpperCase(config);
  1949. std::string configDefines = defines;
  1950. std::string defPropName = "COMPILE_DEFINITIONS_";
  1951. defPropName += configUpper;
  1952. if (const char* ccdefs = sf.GetProperty(defPropName)) {
  1953. if (!configDefines.empty()) {
  1954. configDefines += ";";
  1955. }
  1956. configDependentDefines |=
  1957. cmGeneratorExpression::Find(ccdefs) != std::string::npos;
  1958. configDefines += ccdefs;
  1959. }
  1960. // if we have flags or defines for this config then
  1961. // use them
  1962. if (!flags.empty() || !options.empty() || !configDefines.empty() ||
  1963. !includes.empty() || compileAs || noWinRT) {
  1964. cmGlobalVisualStudio10Generator* gg = this->GlobalGenerator;
  1965. cmIDEFlagTable const* flagtable = nullptr;
  1966. const std::string& srclang = source->GetLanguage();
  1967. if (srclang == "C" || srclang == "CXX") {
  1968. flagtable = gg->GetClFlagTable();
  1969. } else if (srclang == "ASM_MASM" &&
  1970. this->GlobalGenerator->IsMasmEnabled()) {
  1971. flagtable = gg->GetMasmFlagTable();
  1972. } else if (lang == "ASM_NASM" &&
  1973. this->GlobalGenerator->IsNasmEnabled()) {
  1974. flagtable = gg->GetNasmFlagTable();
  1975. } else if (srclang == "RC") {
  1976. flagtable = gg->GetRcFlagTable();
  1977. } else if (srclang == "CSharp") {
  1978. flagtable = gg->GetCSharpFlagTable();
  1979. }
  1980. cmGeneratorExpressionInterpreter genexInterpreter(
  1981. this->LocalGenerator, this->GeneratorTarget, config,
  1982. this->GeneratorTarget->GetName(), lang);
  1983. cmVS10GeneratorOptions clOptions(
  1984. this->LocalGenerator, cmVisualStudioGeneratorOptions::Compiler,
  1985. flagtable, this);
  1986. if (compileAs) {
  1987. clOptions.AddFlag("CompileAs", compileAs);
  1988. }
  1989. if (noWinRT) {
  1990. clOptions.AddFlag("CompileAsWinRT", "false");
  1991. }
  1992. if (configDependentFlags) {
  1993. clOptions.Parse(genexInterpreter.Evaluate(flags, "COMPILE_FLAGS"));
  1994. } else {
  1995. clOptions.Parse(flags);
  1996. }
  1997. if (!options.empty()) {
  1998. std::string expandedOptions;
  1999. if (configDependentOptions) {
  2000. this->LocalGenerator->AppendCompileOptions(
  2001. expandedOptions,
  2002. genexInterpreter.Evaluate(options, "COMPILE_OPTIONS"));
  2003. } else {
  2004. this->LocalGenerator->AppendCompileOptions(expandedOptions, options);
  2005. }
  2006. clOptions.Parse(expandedOptions);
  2007. }
  2008. if (clOptions.HasFlag("DisableSpecificWarnings")) {
  2009. clOptions.AppendFlag("DisableSpecificWarnings",
  2010. "%(DisableSpecificWarnings)");
  2011. }
  2012. if (configDependentDefines) {
  2013. clOptions.AddDefines(
  2014. genexInterpreter.Evaluate(configDefines, "COMPILE_DEFINITIONS"));
  2015. } else {
  2016. clOptions.AddDefines(configDefines);
  2017. }
  2018. std::vector<std::string> includeList;
  2019. if (configDependentIncludes) {
  2020. this->LocalGenerator->AppendIncludeDirectories(
  2021. includeList,
  2022. genexInterpreter.Evaluate(includes, "INCLUDE_DIRECTORIES"), *source);
  2023. } else {
  2024. this->LocalGenerator->AppendIncludeDirectories(includeList, includes,
  2025. *source);
  2026. }
  2027. clOptions.AddIncludes(includeList);
  2028. clOptions.SetConfiguration(config);
  2029. OptionsHelper oh(clOptions, e2);
  2030. oh.PrependInheritedString("AdditionalOptions");
  2031. oh.OutputAdditionalIncludeDirectories(lang);
  2032. oh.OutputFlagMap();
  2033. oh.OutputPreprocessorDefinitions(lang);
  2034. }
  2035. }
  2036. if (this->IsXamlSource(source->GetFullPath())) {
  2037. const std::string& fileName = source->GetFullPath();
  2038. std::string xamlFileName = fileName.substr(0, fileName.find_last_of("."));
  2039. e2.Element("DependentUpon", xamlFileName);
  2040. }
  2041. if (this->ProjectType == csproj) {
  2042. std::string f = source->GetFullPath();
  2043. typedef std::map<std::string, std::string> CsPropMap;
  2044. CsPropMap sourceFileTags;
  2045. // set <Link> tag if necessary
  2046. std::string link;
  2047. this->GetCSharpSourceLink(source, link);
  2048. if (!link.empty()) {
  2049. sourceFileTags["Link"] = link;
  2050. }
  2051. this->GetCSharpSourceProperties(&sf, sourceFileTags);
  2052. // write source file specific tags
  2053. if (!sourceFileTags.empty()) {
  2054. this->WriteCSharpSourceProperties(e2, sourceFileTags);
  2055. }
  2056. }
  2057. }
  2058. void cmVisualStudio10TargetGenerator::WriteExcludeFromBuild(
  2059. Elem& e2, std::vector<size_t> const& exclude_configs)
  2060. {
  2061. for (size_t ci : exclude_configs) {
  2062. e2.WritePlatformConfigTag("ExcludedFromBuild",
  2063. "'$(Configuration)|$(Platform)'=='" +
  2064. this->Configurations[ci] + "|" +
  2065. this->Platform + "'",
  2066. "true");
  2067. }
  2068. }
  2069. void cmVisualStudio10TargetGenerator::WritePathAndIncrementalLinkOptions(
  2070. Elem& e0)
  2071. {
  2072. cmStateEnums::TargetType ttype = this->GeneratorTarget->GetType();
  2073. if (ttype > cmStateEnums::GLOBAL_TARGET) {
  2074. return;
  2075. }
  2076. if (this->ProjectType == csproj) {
  2077. return;
  2078. }
  2079. Elem e1(e0, "PropertyGroup");
  2080. e1.Element("_ProjectFileVersion", "10.0.20506.1");
  2081. for (std::string const& config : this->Configurations) {
  2082. const std::string cond = this->CalcCondition(config);
  2083. if (ttype >= cmStateEnums::UTILITY) {
  2084. e1.WritePlatformConfigTag(
  2085. "IntDir", cond, "$(Platform)\\$(Configuration)\\$(ProjectName)\\");
  2086. } else {
  2087. std::string intermediateDir =
  2088. this->LocalGenerator->GetTargetDirectory(this->GeneratorTarget);
  2089. intermediateDir += "/";
  2090. intermediateDir += config;
  2091. intermediateDir += "/";
  2092. std::string outDir;
  2093. std::string targetNameFull;
  2094. if (ttype == cmStateEnums::OBJECT_LIBRARY) {
  2095. outDir = intermediateDir;
  2096. targetNameFull = this->GeneratorTarget->GetName();
  2097. targetNameFull += ".lib";
  2098. } else {
  2099. outDir = this->GeneratorTarget->GetDirectory(config) + "/";
  2100. targetNameFull = this->GeneratorTarget->GetFullName(config);
  2101. }
  2102. ConvertToWindowsSlash(intermediateDir);
  2103. ConvertToWindowsSlash(outDir);
  2104. e1.WritePlatformConfigTag("OutDir", cond, outDir);
  2105. e1.WritePlatformConfigTag("IntDir", cond, intermediateDir);
  2106. if (const char* sdkExecutableDirectories = this->Makefile->GetDefinition(
  2107. "CMAKE_VS_SDK_EXECUTABLE_DIRECTORIES")) {
  2108. e1.WritePlatformConfigTag("ExecutablePath", cond,
  2109. sdkExecutableDirectories);
  2110. }
  2111. if (const char* sdkIncludeDirectories = this->Makefile->GetDefinition(
  2112. "CMAKE_VS_SDK_INCLUDE_DIRECTORIES")) {
  2113. e1.WritePlatformConfigTag("IncludePath", cond, sdkIncludeDirectories);
  2114. }
  2115. if (const char* sdkReferenceDirectories = this->Makefile->GetDefinition(
  2116. "CMAKE_VS_SDK_REFERENCE_DIRECTORIES")) {
  2117. e1.WritePlatformConfigTag("ReferencePath", cond,
  2118. sdkReferenceDirectories);
  2119. }
  2120. if (const char* sdkLibraryDirectories = this->Makefile->GetDefinition(
  2121. "CMAKE_VS_SDK_LIBRARY_DIRECTORIES")) {
  2122. e1.WritePlatformConfigTag("LibraryPath", cond, sdkLibraryDirectories);
  2123. }
  2124. if (const char* sdkLibraryWDirectories = this->Makefile->GetDefinition(
  2125. "CMAKE_VS_SDK_LIBRARY_WINRT_DIRECTORIES")) {
  2126. e1.WritePlatformConfigTag("LibraryWPath", cond,
  2127. sdkLibraryWDirectories);
  2128. }
  2129. if (const char* sdkSourceDirectories =
  2130. this->Makefile->GetDefinition("CMAKE_VS_SDK_SOURCE_DIRECTORIES")) {
  2131. e1.WritePlatformConfigTag("SourcePath", cond, sdkSourceDirectories);
  2132. }
  2133. if (const char* sdkExcludeDirectories = this->Makefile->GetDefinition(
  2134. "CMAKE_VS_SDK_EXCLUDE_DIRECTORIES")) {
  2135. e1.WritePlatformConfigTag("ExcludePath", cond, sdkExcludeDirectories);
  2136. }
  2137. if (const char* workingDir = this->GeneratorTarget->GetProperty(
  2138. "VS_DEBUGGER_WORKING_DIRECTORY")) {
  2139. cmGeneratorExpression ge;
  2140. std::unique_ptr<cmCompiledGeneratorExpression> cge =
  2141. ge.Parse(workingDir);
  2142. std::string genWorkingDir =
  2143. cge->Evaluate(this->LocalGenerator, config);
  2144. e1.WritePlatformConfigTag("LocalDebuggerWorkingDirectory", cond,
  2145. genWorkingDir);
  2146. }
  2147. if (const char* environment =
  2148. this->GeneratorTarget->GetProperty("VS_DEBUGGER_ENVIRONMENT")) {
  2149. cmGeneratorExpression ge;
  2150. std::unique_ptr<cmCompiledGeneratorExpression> cge =
  2151. ge.Parse(environment);
  2152. std::string genEnvironment =
  2153. cge->Evaluate(this->LocalGenerator, config);
  2154. e1.WritePlatformConfigTag("LocalDebuggerEnvironment", cond,
  2155. genEnvironment);
  2156. }
  2157. if (const char* debuggerCommand =
  2158. this->GeneratorTarget->GetProperty("VS_DEBUGGER_COMMAND")) {
  2159. cmGeneratorExpression ge;
  2160. std::unique_ptr<cmCompiledGeneratorExpression> cge =
  2161. ge.Parse(debuggerCommand);
  2162. std::string genDebuggerCommand =
  2163. cge->Evaluate(this->LocalGenerator, config);
  2164. e1.WritePlatformConfigTag("LocalDebuggerCommand", cond,
  2165. genDebuggerCommand);
  2166. }
  2167. if (const char* commandArguments = this->GeneratorTarget->GetProperty(
  2168. "VS_DEBUGGER_COMMAND_ARGUMENTS")) {
  2169. cmGeneratorExpression ge;
  2170. std::unique_ptr<cmCompiledGeneratorExpression> cge =
  2171. ge.Parse(commandArguments);
  2172. std::string genCommandArguments =
  2173. cge->Evaluate(this->LocalGenerator, config);
  2174. e1.WritePlatformConfigTag("LocalDebuggerCommandArguments", cond,
  2175. genCommandArguments);
  2176. }
  2177. std::string name =
  2178. cmSystemTools::GetFilenameWithoutLastExtension(targetNameFull);
  2179. e1.WritePlatformConfigTag("TargetName", cond, name);
  2180. std::string ext =
  2181. cmSystemTools::GetFilenameLastExtension(targetNameFull);
  2182. if (ext.empty()) {
  2183. // An empty TargetExt causes a default extension to be used.
  2184. // A single "." appears to be treated as an empty extension.
  2185. ext = ".";
  2186. }
  2187. e1.WritePlatformConfigTag("TargetExt", cond, ext);
  2188. this->OutputLinkIncremental(e1, config);
  2189. }
  2190. }
  2191. }
  2192. void cmVisualStudio10TargetGenerator::OutputLinkIncremental(
  2193. Elem& e1, std::string const& configName)
  2194. {
  2195. if (!this->MSTools) {
  2196. return;
  2197. }
  2198. if (this->ProjectType == csproj) {
  2199. return;
  2200. }
  2201. // static libraries and things greater than modules do not need
  2202. // to set this option
  2203. if (this->GeneratorTarget->GetType() == cmStateEnums::STATIC_LIBRARY ||
  2204. this->GeneratorTarget->GetType() > cmStateEnums::MODULE_LIBRARY) {
  2205. return;
  2206. }
  2207. Options& linkOptions = *(this->LinkOptions[configName]);
  2208. const std::string cond = this->CalcCondition(configName);
  2209. const char* incremental = linkOptions.GetFlag("LinkIncremental");
  2210. e1.WritePlatformConfigTag("LinkIncremental", cond,
  2211. (incremental ? incremental : "true"));
  2212. linkOptions.RemoveFlag("LinkIncremental");
  2213. const char* manifest = linkOptions.GetFlag("GenerateManifest");
  2214. e1.WritePlatformConfigTag("GenerateManifest", cond,
  2215. (manifest ? manifest : "true"));
  2216. linkOptions.RemoveFlag("GenerateManifest");
  2217. // Some link options belong here. Use them now and remove them so that
  2218. // WriteLinkOptions does not use them.
  2219. const char* flags[] = { "LinkDelaySign", "LinkKeyFile", 0 };
  2220. for (const char** f = flags; *f; ++f) {
  2221. const char* flag = *f;
  2222. if (const char* value = linkOptions.GetFlag(flag)) {
  2223. e1.WritePlatformConfigTag(flag, cond, value);
  2224. linkOptions.RemoveFlag(flag);
  2225. }
  2226. }
  2227. }
  2228. std::vector<std::string> cmVisualStudio10TargetGenerator::GetIncludes(
  2229. std::string const& config, std::string const& lang) const
  2230. {
  2231. std::vector<std::string> includes;
  2232. this->LocalGenerator->GetIncludeDirectories(includes, this->GeneratorTarget,
  2233. lang, config);
  2234. for (std::string& i : includes) {
  2235. ConvertToWindowsSlash(i);
  2236. }
  2237. return includes;
  2238. }
  2239. bool cmVisualStudio10TargetGenerator::ComputeClOptions()
  2240. {
  2241. for (std::string const& c : this->Configurations) {
  2242. if (!this->ComputeClOptions(c)) {
  2243. return false;
  2244. }
  2245. }
  2246. return true;
  2247. }
  2248. bool cmVisualStudio10TargetGenerator::ComputeClOptions(
  2249. std::string const& configName)
  2250. {
  2251. // much of this was copied from here:
  2252. // copied from cmLocalVisualStudio7Generator.cxx 805
  2253. // TODO: Integrate code below with cmLocalVisualStudio7Generator.
  2254. cmGlobalVisualStudio10Generator* gg = this->GlobalGenerator;
  2255. std::unique_ptr<Options> pOptions;
  2256. switch (this->ProjectType) {
  2257. case vcxproj:
  2258. pOptions = cm::make_unique<Options>(
  2259. this->LocalGenerator, Options::Compiler, gg->GetClFlagTable());
  2260. break;
  2261. case csproj:
  2262. pOptions =
  2263. cm::make_unique<Options>(this->LocalGenerator, Options::CSharpCompiler,
  2264. gg->GetCSharpFlagTable());
  2265. break;
  2266. }
  2267. Options& clOptions = *pOptions;
  2268. std::string flags;
  2269. const std::string& linkLanguage =
  2270. this->GeneratorTarget->GetLinkerLanguage(configName);
  2271. if (linkLanguage.empty()) {
  2272. cmSystemTools::Error(
  2273. "CMake can not determine linker language for target: ",
  2274. this->Name.c_str());
  2275. return false;
  2276. }
  2277. // Choose a language whose flags to use for ClCompile.
  2278. static const char* clLangs[] = { "CXX", "C", "Fortran", "CSharp" };
  2279. std::string langForClCompile;
  2280. if (std::find(cm::cbegin(clLangs), cm::cend(clLangs), linkLanguage) !=
  2281. cm::cend(clLangs)) {
  2282. langForClCompile = linkLanguage;
  2283. } else {
  2284. std::set<std::string> languages;
  2285. this->GeneratorTarget->GetLanguages(languages, configName);
  2286. for (const char* const* l = cm::cbegin(clLangs); l != cm::cend(clLangs);
  2287. ++l) {
  2288. if (languages.find(*l) != languages.end()) {
  2289. langForClCompile = *l;
  2290. break;
  2291. }
  2292. }
  2293. }
  2294. this->LangForClCompile = langForClCompile;
  2295. if (!langForClCompile.empty()) {
  2296. std::string baseFlagVar = "CMAKE_";
  2297. baseFlagVar += langForClCompile;
  2298. baseFlagVar += "_FLAGS";
  2299. flags = this->Makefile->GetRequiredDefinition(baseFlagVar);
  2300. std::string flagVar =
  2301. baseFlagVar + std::string("_") + cmSystemTools::UpperCase(configName);
  2302. flags += " ";
  2303. flags += this->Makefile->GetRequiredDefinition(flagVar);
  2304. this->LocalGenerator->AddCompileOptions(flags, this->GeneratorTarget,
  2305. langForClCompile, configName);
  2306. }
  2307. // set the correct language
  2308. if (linkLanguage == "C") {
  2309. clOptions.AddFlag("CompileAs", "CompileAsC");
  2310. }
  2311. if (linkLanguage == "CXX") {
  2312. clOptions.AddFlag("CompileAs", "CompileAsCpp");
  2313. }
  2314. // Check IPO related warning/error.
  2315. this->GeneratorTarget->IsIPOEnabled(linkLanguage, configName);
  2316. // Get preprocessor definitions for this directory.
  2317. std::string defineFlags = this->Makefile->GetDefineFlags();
  2318. if (this->MSTools) {
  2319. if (this->ProjectType == vcxproj) {
  2320. clOptions.FixExceptionHandlingDefault();
  2321. clOptions.AddFlag("PrecompiledHeader", "NotUsing");
  2322. std::string asmLocation = configName + "/";
  2323. clOptions.AddFlag("AssemblerListingLocation", asmLocation);
  2324. }
  2325. }
  2326. // check for managed C++ assembly compiler flag. This overrides any
  2327. // /clr* compiler flags which may be defined in the flags variable(s).
  2328. if (this->ProjectType != csproj) {
  2329. // Warn if /clr was added manually. This should not be done
  2330. // anymore, because cmGeneratorTarget may not be aware that the
  2331. // target uses C++/CLI.
  2332. if (flags.find("/clr") != std::string::npos ||
  2333. defineFlags.find("/clr") != std::string::npos) {
  2334. if (configName == this->Configurations[0]) {
  2335. std::string message = "For the target \"" +
  2336. this->GeneratorTarget->GetName() +
  2337. "\" the /clr compiler flag was added manually. " +
  2338. "Set usage of C++/CLI by setting COMMON_LANGUAGE_RUNTIME "
  2339. "target property.";
  2340. this->Makefile->IssueMessage(cmake::MessageType::WARNING, message);
  2341. }
  2342. }
  2343. if (auto* clr =
  2344. this->GeneratorTarget->GetProperty("COMMON_LANGUAGE_RUNTIME")) {
  2345. std::string clrString = clr;
  2346. if (!clrString.empty()) {
  2347. clrString = ":" + clrString;
  2348. }
  2349. flags += " /clr" + clrString;
  2350. }
  2351. }
  2352. clOptions.Parse(flags);
  2353. clOptions.Parse(defineFlags);
  2354. std::vector<std::string> targetDefines;
  2355. switch (this->ProjectType) {
  2356. case vcxproj:
  2357. if (!langForClCompile.empty()) {
  2358. this->GeneratorTarget->GetCompileDefinitions(targetDefines, configName,
  2359. langForClCompile);
  2360. }
  2361. break;
  2362. case csproj:
  2363. this->GeneratorTarget->GetCompileDefinitions(targetDefines, configName,
  2364. "CSharp");
  2365. break;
  2366. }
  2367. clOptions.AddDefines(targetDefines);
  2368. // Get includes for this target
  2369. if (!this->LangForClCompile.empty()) {
  2370. clOptions.AddIncludes(
  2371. this->GetIncludes(configName, this->LangForClCompile));
  2372. }
  2373. if (this->MSTools) {
  2374. clOptions.SetVerboseMakefile(
  2375. this->Makefile->IsOn("CMAKE_VERBOSE_MAKEFILE"));
  2376. }
  2377. // Add a definition for the configuration name.
  2378. std::string configDefine = "CMAKE_INTDIR=\"";
  2379. configDefine += configName;
  2380. configDefine += "\"";
  2381. clOptions.AddDefine(configDefine);
  2382. if (const char* exportMacro = this->GeneratorTarget->GetExportMacro()) {
  2383. clOptions.AddDefine(exportMacro);
  2384. }
  2385. if (this->MSTools) {
  2386. // If we have the VS_WINRT_COMPONENT set then force Compile as WinRT.
  2387. if (this->GeneratorTarget->GetPropertyAsBool("VS_WINRT_COMPONENT")) {
  2388. clOptions.AddFlag("CompileAsWinRT", "true");
  2389. // For WinRT components, add the _WINRT_DLL define to produce a lib
  2390. if (this->GeneratorTarget->GetType() == cmStateEnums::SHARED_LIBRARY ||
  2391. this->GeneratorTarget->GetType() == cmStateEnums::MODULE_LIBRARY) {
  2392. clOptions.AddDefine("_WINRT_DLL");
  2393. }
  2394. } else if (this->GlobalGenerator->TargetsWindowsStore() ||
  2395. this->GlobalGenerator->TargetsWindowsPhone()) {
  2396. if (!clOptions.IsWinRt()) {
  2397. clOptions.AddFlag("CompileAsWinRT", "false");
  2398. }
  2399. }
  2400. if (const char* winRT = clOptions.GetFlag("CompileAsWinRT")) {
  2401. if (cmSystemTools::IsOn(winRT)) {
  2402. this->TargetCompileAsWinRT = true;
  2403. }
  2404. }
  2405. }
  2406. if (this->ProjectType != csproj && clOptions.IsManaged()) {
  2407. this->Managed = true;
  2408. std::string managedType = clOptions.GetFlag("CompileAsManaged");
  2409. if (managedType == "Safe" || managedType == "Pure") {
  2410. // force empty calling convention if safe clr is used
  2411. clOptions.AddFlag("CallingConvention", "");
  2412. }
  2413. // The default values of these flags are incompatible to
  2414. // managed assemblies. We have to force valid values if
  2415. // the target is a managed C++ target.
  2416. clOptions.AddFlag("ExceptionHandling", "Async");
  2417. clOptions.AddFlag("BasicRuntimeChecks", "Default");
  2418. }
  2419. if (this->ProjectType == csproj) {
  2420. // /nowin32manifest overrides /win32manifest: parameter
  2421. if (clOptions.HasFlag("NoWin32Manifest")) {
  2422. clOptions.RemoveFlag("ApplicationManifest");
  2423. }
  2424. }
  2425. this->ClOptions[configName] = std::move(pOptions);
  2426. return true;
  2427. }
  2428. void cmVisualStudio10TargetGenerator::WriteClOptions(
  2429. Elem& e1, std::string const& configName)
  2430. {
  2431. Options& clOptions = *(this->ClOptions[configName]);
  2432. if (this->ProjectType == csproj) {
  2433. return;
  2434. }
  2435. Elem e2(e1, "ClCompile");
  2436. OptionsHelper oh(clOptions, e2);
  2437. oh.PrependInheritedString("AdditionalOptions");
  2438. oh.OutputAdditionalIncludeDirectories(this->LangForClCompile);
  2439. oh.OutputFlagMap();
  2440. oh.OutputPreprocessorDefinitions(this->LangForClCompile);
  2441. if (this->NsightTegra) {
  2442. if (const char* processMax =
  2443. this->GeneratorTarget->GetProperty("ANDROID_PROCESS_MAX")) {
  2444. e2.Element("ProcessMax", processMax);
  2445. }
  2446. }
  2447. if (this->MSTools) {
  2448. cmsys::RegularExpression clangToolset("v[0-9]+_clang_.*");
  2449. const char* toolset = this->GlobalGenerator->GetPlatformToolset();
  2450. if (toolset && clangToolset.find(toolset)) {
  2451. e2.Element("ObjectFileName", "$(IntDir)%(filename).obj");
  2452. } else {
  2453. e2.Element("ObjectFileName", "$(IntDir)");
  2454. }
  2455. // If not in debug mode, write the DebugInformationFormat field
  2456. // without value so PDBs don't get generated uselessly. Each tag
  2457. // goes on its own line because Visual Studio corrects it this
  2458. // way when saving the project after CMake generates it.
  2459. if (!clOptions.IsDebug()) {
  2460. Elem e3(e2, "DebugInformationFormat");
  2461. e3.SetHasElements();
  2462. }
  2463. // Specify the compiler program database file if configured.
  2464. std::string pdb = this->GeneratorTarget->GetCompilePDBPath(configName);
  2465. if (!pdb.empty()) {
  2466. ConvertToWindowsSlash(pdb);
  2467. e2.Element("ProgramDataBaseFileName", pdb);
  2468. }
  2469. // add AdditionalUsingDirectories
  2470. if (this->AdditionalUsingDirectories.count(configName) > 0) {
  2471. std::string dirs;
  2472. for (auto u : this->AdditionalUsingDirectories[configName]) {
  2473. if (!dirs.empty()) {
  2474. dirs.append(";");
  2475. }
  2476. dirs.append(u);
  2477. }
  2478. e2.Element("AdditionalUsingDirectories", dirs);
  2479. }
  2480. }
  2481. }
  2482. bool cmVisualStudio10TargetGenerator::ComputeRcOptions()
  2483. {
  2484. for (std::string const& c : this->Configurations) {
  2485. if (!this->ComputeRcOptions(c)) {
  2486. return false;
  2487. }
  2488. }
  2489. return true;
  2490. }
  2491. bool cmVisualStudio10TargetGenerator::ComputeRcOptions(
  2492. std::string const& configName)
  2493. {
  2494. cmGlobalVisualStudio10Generator* gg = this->GlobalGenerator;
  2495. auto pOptions = cm::make_unique<Options>(
  2496. this->LocalGenerator, Options::ResourceCompiler, gg->GetRcFlagTable());
  2497. Options& rcOptions = *pOptions;
  2498. std::string CONFIG = cmSystemTools::UpperCase(configName);
  2499. std::string rcConfigFlagsVar = std::string("CMAKE_RC_FLAGS_") + CONFIG;
  2500. std::string flags =
  2501. std::string(this->Makefile->GetSafeDefinition("CMAKE_RC_FLAGS")) +
  2502. std::string(" ") +
  2503. std::string(this->Makefile->GetSafeDefinition(rcConfigFlagsVar));
  2504. rcOptions.Parse(flags);
  2505. // For historical reasons, add the C preprocessor defines to RC.
  2506. Options& clOptions = *(this->ClOptions[configName]);
  2507. rcOptions.AddDefines(clOptions.GetDefines());
  2508. // Get includes for this target
  2509. rcOptions.AddIncludes(this->GetIncludes(configName, "RC"));
  2510. this->RcOptions[configName] = std::move(pOptions);
  2511. return true;
  2512. }
  2513. void cmVisualStudio10TargetGenerator::WriteRCOptions(
  2514. Elem& e1, std::string const& configName)
  2515. {
  2516. if (!this->MSTools) {
  2517. return;
  2518. }
  2519. Elem e2(e1, "ResourceCompile");
  2520. OptionsHelper rcOptions(*(this->RcOptions[configName]), e2);
  2521. rcOptions.OutputPreprocessorDefinitions("RC");
  2522. rcOptions.OutputAdditionalIncludeDirectories("RC");
  2523. rcOptions.PrependInheritedString("AdditionalOptions");
  2524. rcOptions.OutputFlagMap();
  2525. }
  2526. bool cmVisualStudio10TargetGenerator::ComputeCudaOptions()
  2527. {
  2528. if (!this->GlobalGenerator->IsCudaEnabled()) {
  2529. return true;
  2530. }
  2531. for (std::string const& c : this->Configurations) {
  2532. if (!this->ComputeCudaOptions(c)) {
  2533. return false;
  2534. }
  2535. }
  2536. return true;
  2537. }
  2538. bool cmVisualStudio10TargetGenerator::ComputeCudaOptions(
  2539. std::string const& configName)
  2540. {
  2541. cmGlobalVisualStudio10Generator* gg = this->GlobalGenerator;
  2542. auto pOptions = cm::make_unique<Options>(
  2543. this->LocalGenerator, Options::CudaCompiler, gg->GetCudaFlagTable());
  2544. Options& cudaOptions = *pOptions;
  2545. // Get compile flags for CUDA in this directory.
  2546. std::string CONFIG = cmSystemTools::UpperCase(configName);
  2547. std::string configFlagsVar = std::string("CMAKE_CUDA_FLAGS_") + CONFIG;
  2548. std::string flags =
  2549. std::string(this->Makefile->GetSafeDefinition("CMAKE_CUDA_FLAGS")) +
  2550. std::string(" ") +
  2551. std::string(this->Makefile->GetSafeDefinition(configFlagsVar));
  2552. this->LocalGenerator->AddCompileOptions(flags, this->GeneratorTarget, "CUDA",
  2553. configName);
  2554. // Get preprocessor definitions for this directory.
  2555. std::string defineFlags = this->Makefile->GetDefineFlags();
  2556. cudaOptions.Parse(flags);
  2557. cudaOptions.Parse(defineFlags);
  2558. cudaOptions.ParseFinish();
  2559. // If we haven't explicitly enabled GPU debug information
  2560. // explicitly disable it
  2561. if (!cudaOptions.HasFlag("GPUDebugInfo")) {
  2562. cudaOptions.AddFlag("GPUDebugInfo", "false");
  2563. }
  2564. // The extension on object libraries the CUDA gives isn't
  2565. // consistent with how MSVC generates object libraries for C+, so set
  2566. // the default to not have any extension
  2567. cudaOptions.AddFlag("CompileOut", "$(IntDir)%(Filename).obj");
  2568. bool notPtx = true;
  2569. if (this->GeneratorTarget->GetPropertyAsBool("CUDA_SEPARABLE_COMPILATION")) {
  2570. cudaOptions.AddFlag("GenerateRelocatableDeviceCode", "true");
  2571. } else if (this->GeneratorTarget->GetPropertyAsBool(
  2572. "CUDA_PTX_COMPILATION")) {
  2573. cudaOptions.AddFlag("NvccCompilation", "ptx");
  2574. // We drop the %(Extension) component as CMake expects all PTX files
  2575. // to not have the source file extension at all
  2576. cudaOptions.AddFlag("CompileOut", "$(IntDir)%(Filename).ptx");
  2577. notPtx = false;
  2578. }
  2579. if (notPtx &&
  2580. cmSystemTools::VersionCompareGreaterEq(
  2581. "8.0", this->GlobalGenerator->GetPlatformToolsetCudaString())) {
  2582. // Explicitly state that we want this file to be treated as a
  2583. // CUDA file no matter what the file extensions is
  2584. // This is only needed for < CUDA 9
  2585. cudaOptions.AppendFlagString("AdditionalOptions", "-x cu");
  2586. }
  2587. // Specify the compiler program database file if configured.
  2588. std::string pdb = this->GeneratorTarget->GetCompilePDBPath(configName);
  2589. if (!pdb.empty()) {
  2590. // CUDA does not have a field for this and does not honor the
  2591. // ProgramDataBaseFileName field in ClCompile. Work around this
  2592. // limitation by creating the directory and passing the flag ourselves.
  2593. std::string const pdbDir = cmSystemTools::GetFilenamePath(pdb);
  2594. cmSystemTools::MakeDirectory(pdbDir);
  2595. pdb = this->ConvertPath(pdb, true);
  2596. ConvertToWindowsSlash(pdb);
  2597. std::string const clFd = "-Xcompiler=\"-Fd\\\"" + pdb + "\\\"\"";
  2598. cudaOptions.AppendFlagString("AdditionalOptions", clFd);
  2599. }
  2600. // CUDA automatically passes the proper '--machine' flag to nvcc
  2601. // for the current architecture, but does not reflect this default
  2602. // in the user-visible IDE settings. Set it explicitly.
  2603. if (this->Platform == "x64") {
  2604. cudaOptions.AddFlag("TargetMachinePlatform", "64");
  2605. }
  2606. // Convert the host compiler options to the toolset's abstractions
  2607. // using a secondary flag table.
  2608. cudaOptions.ClearTables();
  2609. cudaOptions.AddTable(gg->GetCudaHostFlagTable());
  2610. cudaOptions.Reparse("AdditionalCompilerOptions");
  2611. // `CUDA 8.0.targets` places AdditionalCompilerOptions before nvcc!
  2612. // Pass them through -Xcompiler in AdditionalOptions instead.
  2613. if (const char* acoPtr = cudaOptions.GetFlag("AdditionalCompilerOptions")) {
  2614. std::string aco = acoPtr;
  2615. cudaOptions.RemoveFlag("AdditionalCompilerOptions");
  2616. if (!aco.empty()) {
  2617. aco = this->LocalGenerator->EscapeForShell(aco, false);
  2618. cudaOptions.AppendFlagString("AdditionalOptions", "-Xcompiler=" + aco);
  2619. }
  2620. }
  2621. cudaOptions.FixCudaCodeGeneration();
  2622. std::vector<std::string> targetDefines;
  2623. this->GeneratorTarget->GetCompileDefinitions(targetDefines, configName,
  2624. "CUDA");
  2625. cudaOptions.AddDefines(targetDefines);
  2626. // Add a definition for the configuration name.
  2627. std::string configDefine = "CMAKE_INTDIR=\"";
  2628. configDefine += configName;
  2629. configDefine += "\"";
  2630. cudaOptions.AddDefine(configDefine);
  2631. if (const char* exportMacro = this->GeneratorTarget->GetExportMacro()) {
  2632. cudaOptions.AddDefine(exportMacro);
  2633. }
  2634. // Get includes for this target
  2635. cudaOptions.AddIncludes(this->GetIncludes(configName, "CUDA"));
  2636. cudaOptions.AddFlag("UseHostInclude", "false");
  2637. this->CudaOptions[configName] = std::move(pOptions);
  2638. return true;
  2639. }
  2640. void cmVisualStudio10TargetGenerator::WriteCudaOptions(
  2641. Elem& e1, std::string const& configName)
  2642. {
  2643. if (!this->MSTools || !this->GlobalGenerator->IsCudaEnabled()) {
  2644. return;
  2645. }
  2646. Elem e2(e1, "CudaCompile");
  2647. OptionsHelper cudaOptions(*(this->CudaOptions[configName]), e2);
  2648. cudaOptions.OutputAdditionalIncludeDirectories("CUDA");
  2649. cudaOptions.OutputPreprocessorDefinitions("CUDA");
  2650. cudaOptions.PrependInheritedString("AdditionalOptions");
  2651. cudaOptions.OutputFlagMap();
  2652. }
  2653. bool cmVisualStudio10TargetGenerator::ComputeCudaLinkOptions()
  2654. {
  2655. if (!this->GlobalGenerator->IsCudaEnabled()) {
  2656. return true;
  2657. }
  2658. for (std::string const& c : this->Configurations) {
  2659. if (!this->ComputeCudaLinkOptions(c)) {
  2660. return false;
  2661. }
  2662. }
  2663. return true;
  2664. }
  2665. bool cmVisualStudio10TargetGenerator::ComputeCudaLinkOptions(
  2666. std::string const& configName)
  2667. {
  2668. cmGlobalVisualStudio10Generator* gg = this->GlobalGenerator;
  2669. auto pOptions = cm::make_unique<Options>(
  2670. this->LocalGenerator, Options::CudaCompiler, gg->GetCudaFlagTable());
  2671. Options& cudaLinkOptions = *pOptions;
  2672. // Determine if we need to do a device link
  2673. bool doDeviceLinking = false;
  2674. switch (this->GeneratorTarget->GetType()) {
  2675. case cmStateEnums::SHARED_LIBRARY:
  2676. case cmStateEnums::MODULE_LIBRARY:
  2677. case cmStateEnums::EXECUTABLE:
  2678. doDeviceLinking = true;
  2679. break;
  2680. case cmStateEnums::STATIC_LIBRARY:
  2681. doDeviceLinking = this->GeneratorTarget->GetPropertyAsBool(
  2682. "CUDA_RESOLVE_DEVICE_SYMBOLS");
  2683. break;
  2684. default:
  2685. break;
  2686. }
  2687. cudaLinkOptions.AddFlag("PerformDeviceLink",
  2688. doDeviceLinking ? "true" : "false");
  2689. // Suppress deprecation warnings for default GPU targets during device link.
  2690. if (cmSystemTools::VersionCompareGreaterEq(
  2691. this->GlobalGenerator->GetPlatformToolsetCudaString(), "8.0")) {
  2692. cudaLinkOptions.AppendFlagString("AdditionalOptions",
  2693. "-Wno-deprecated-gpu-targets");
  2694. }
  2695. this->CudaLinkOptions[configName] = std::move(pOptions);
  2696. return true;
  2697. }
  2698. void cmVisualStudio10TargetGenerator::WriteCudaLinkOptions(
  2699. Elem& e1, std::string const& configName)
  2700. {
  2701. if (this->GeneratorTarget->GetType() > cmStateEnums::MODULE_LIBRARY) {
  2702. return;
  2703. }
  2704. if (!this->MSTools || !this->GlobalGenerator->IsCudaEnabled()) {
  2705. return;
  2706. }
  2707. Elem e2(e1, "CudaLink");
  2708. OptionsHelper cudaLinkOptions(*(this->CudaLinkOptions[configName]), e2);
  2709. cudaLinkOptions.OutputFlagMap();
  2710. }
  2711. bool cmVisualStudio10TargetGenerator::ComputeMasmOptions()
  2712. {
  2713. if (!this->GlobalGenerator->IsMasmEnabled()) {
  2714. return true;
  2715. }
  2716. for (std::string const& c : this->Configurations) {
  2717. if (!this->ComputeMasmOptions(c)) {
  2718. return false;
  2719. }
  2720. }
  2721. return true;
  2722. }
  2723. bool cmVisualStudio10TargetGenerator::ComputeMasmOptions(
  2724. std::string const& configName)
  2725. {
  2726. cmGlobalVisualStudio10Generator* gg = this->GlobalGenerator;
  2727. auto pOptions = cm::make_unique<Options>(
  2728. this->LocalGenerator, Options::MasmCompiler, gg->GetMasmFlagTable());
  2729. Options& masmOptions = *pOptions;
  2730. std::string CONFIG = cmSystemTools::UpperCase(configName);
  2731. std::string configFlagsVar = std::string("CMAKE_ASM_MASM_FLAGS_") + CONFIG;
  2732. std::string flags =
  2733. std::string(this->Makefile->GetSafeDefinition("CMAKE_ASM_MASM_FLAGS")) +
  2734. std::string(" ") +
  2735. std::string(this->Makefile->GetSafeDefinition(configFlagsVar));
  2736. masmOptions.Parse(flags);
  2737. // Get includes for this target
  2738. masmOptions.AddIncludes(this->GetIncludes(configName, "ASM_MASM"));
  2739. this->MasmOptions[configName] = std::move(pOptions);
  2740. return true;
  2741. }
  2742. void cmVisualStudio10TargetGenerator::WriteMasmOptions(
  2743. Elem& e1, std::string const& configName)
  2744. {
  2745. if (!this->MSTools || !this->GlobalGenerator->IsMasmEnabled()) {
  2746. return;
  2747. }
  2748. Elem e2(e1, "MASM");
  2749. // Preprocessor definitions and includes are shared with clOptions.
  2750. OptionsHelper clOptions(*(this->ClOptions[configName]), e2);
  2751. clOptions.OutputPreprocessorDefinitions("ASM_MASM");
  2752. OptionsHelper masmOptions(*(this->MasmOptions[configName]), e2);
  2753. masmOptions.OutputAdditionalIncludeDirectories("ASM_MASM");
  2754. masmOptions.PrependInheritedString("AdditionalOptions");
  2755. masmOptions.OutputFlagMap();
  2756. }
  2757. bool cmVisualStudio10TargetGenerator::ComputeNasmOptions()
  2758. {
  2759. if (!this->GlobalGenerator->IsNasmEnabled()) {
  2760. return true;
  2761. }
  2762. for (std::string const& c : this->Configurations) {
  2763. if (!this->ComputeNasmOptions(c)) {
  2764. return false;
  2765. }
  2766. }
  2767. return true;
  2768. }
  2769. bool cmVisualStudio10TargetGenerator::ComputeNasmOptions(
  2770. std::string const& configName)
  2771. {
  2772. cmGlobalVisualStudio10Generator* gg = this->GlobalGenerator;
  2773. auto pOptions = cm::make_unique<Options>(
  2774. this->LocalGenerator, Options::NasmCompiler, gg->GetNasmFlagTable());
  2775. Options& nasmOptions = *pOptions;
  2776. std::string CONFIG = cmSystemTools::UpperCase(configName);
  2777. std::string configFlagsVar = std::string("CMAKE_ASM_NASM_FLAGS_") + CONFIG;
  2778. std::string flags =
  2779. std::string(this->Makefile->GetSafeDefinition("CMAKE_ASM_NASM_FLAGS")) +
  2780. std::string(" -f") +
  2781. std::string(
  2782. this->Makefile->GetSafeDefinition("CMAKE_ASM_NASM_OBJECT_FORMAT")) +
  2783. std::string(" ") +
  2784. std::string(this->Makefile->GetSafeDefinition(configFlagsVar));
  2785. nasmOptions.Parse(flags);
  2786. // Get includes for this target
  2787. nasmOptions.AddIncludes(this->GetIncludes(configName, "ASM_NASM"));
  2788. this->NasmOptions[configName] = std::move(pOptions);
  2789. return true;
  2790. }
  2791. void cmVisualStudio10TargetGenerator::WriteNasmOptions(
  2792. Elem& e1, std::string const& configName)
  2793. {
  2794. if (!this->GlobalGenerator->IsNasmEnabled()) {
  2795. return;
  2796. }
  2797. Elem e2(e1, "NASM");
  2798. std::vector<std::string> includes =
  2799. this->GetIncludes(configName, "ASM_NASM");
  2800. OptionsHelper nasmOptions(*(this->NasmOptions[configName]), e2);
  2801. nasmOptions.OutputAdditionalIncludeDirectories("ASM_NASM");
  2802. nasmOptions.OutputFlagMap();
  2803. nasmOptions.PrependInheritedString("AdditionalOptions");
  2804. nasmOptions.OutputPreprocessorDefinitions("ASM_NASM");
  2805. // Preprocessor definitions and includes are shared with clOptions.
  2806. OptionsHelper clOptions(*(this->ClOptions[configName]), e2);
  2807. clOptions.OutputPreprocessorDefinitions("ASM_NASM");
  2808. }
  2809. void cmVisualStudio10TargetGenerator::WriteLibOptions(
  2810. Elem& e1, std::string const& config)
  2811. {
  2812. if (this->GeneratorTarget->GetType() != cmStateEnums::STATIC_LIBRARY &&
  2813. this->GeneratorTarget->GetType() != cmStateEnums::OBJECT_LIBRARY) {
  2814. return;
  2815. }
  2816. std::string libflags;
  2817. this->LocalGenerator->GetStaticLibraryFlags(
  2818. libflags, cmSystemTools::UpperCase(config), this->GeneratorTarget);
  2819. if (!libflags.empty()) {
  2820. Elem e2(e1, "Lib");
  2821. cmGlobalVisualStudio10Generator* gg = this->GlobalGenerator;
  2822. cmVS10GeneratorOptions libOptions(this->LocalGenerator,
  2823. cmVisualStudioGeneratorOptions::Linker,
  2824. gg->GetLibFlagTable(), this);
  2825. libOptions.Parse(libflags);
  2826. OptionsHelper oh(libOptions, e2);
  2827. oh.PrependInheritedString("AdditionalOptions");
  2828. oh.OutputFlagMap();
  2829. }
  2830. // We cannot generate metadata for static libraries. WindowsPhone
  2831. // and WindowsStore tools look at GenerateWindowsMetadata in the
  2832. // Link tool options even for static libraries.
  2833. if (this->GlobalGenerator->TargetsWindowsPhone() ||
  2834. this->GlobalGenerator->TargetsWindowsStore()) {
  2835. Elem e2(e1, "Link");
  2836. e2.Element("GenerateWindowsMetadata", "false");
  2837. }
  2838. }
  2839. void cmVisualStudio10TargetGenerator::WriteManifestOptions(
  2840. Elem& e1, std::string const& config)
  2841. {
  2842. if (this->GeneratorTarget->GetType() != cmStateEnums::EXECUTABLE &&
  2843. this->GeneratorTarget->GetType() != cmStateEnums::SHARED_LIBRARY &&
  2844. this->GeneratorTarget->GetType() != cmStateEnums::MODULE_LIBRARY) {
  2845. return;
  2846. }
  2847. std::vector<cmSourceFile const*> manifest_srcs;
  2848. this->GeneratorTarget->GetManifests(manifest_srcs, config);
  2849. if (!manifest_srcs.empty()) {
  2850. std::ostringstream oss;
  2851. for (cmSourceFile const* mi : manifest_srcs) {
  2852. std::string m = this->ConvertPath(mi->GetFullPath(), false);
  2853. ConvertToWindowsSlash(m);
  2854. oss << m << ";";
  2855. }
  2856. Elem e2(e1, "Manifest");
  2857. e2.Element("AdditionalManifestFiles", oss.str());
  2858. }
  2859. }
  2860. void cmVisualStudio10TargetGenerator::WriteAntBuildOptions(
  2861. Elem& e1, std::string const& configName)
  2862. {
  2863. // Look through the sources for AndroidManifest.xml and use
  2864. // its location as the root source directory.
  2865. std::string rootDir = this->LocalGenerator->GetCurrentSourceDirectory();
  2866. {
  2867. std::vector<cmSourceFile const*> extraSources;
  2868. this->GeneratorTarget->GetExtraSources(extraSources, "");
  2869. for (cmSourceFile const* si : extraSources) {
  2870. if ("androidmanifest.xml" ==
  2871. cmSystemTools::LowerCase(si->GetLocation().GetName())) {
  2872. rootDir = si->GetLocation().GetDirectory();
  2873. break;
  2874. }
  2875. }
  2876. }
  2877. // Tell MSBuild to launch Ant.
  2878. Elem e2(e1, "AntBuild");
  2879. {
  2880. std::string antBuildPath = rootDir;
  2881. ConvertToWindowsSlash(antBuildPath);
  2882. e2.Element("AntBuildPath", antBuildPath);
  2883. }
  2884. if (this->GeneratorTarget->GetPropertyAsBool("ANDROID_SKIP_ANT_STEP")) {
  2885. e2.Element("SkipAntStep", "true");
  2886. }
  2887. if (this->GeneratorTarget->GetPropertyAsBool("ANDROID_PROGUARD")) {
  2888. e2.Element("EnableProGuard", "true");
  2889. }
  2890. if (const char* proGuardConfigLocation =
  2891. this->GeneratorTarget->GetProperty("ANDROID_PROGUARD_CONFIG_PATH")) {
  2892. e2.Element("ProGuardConfigLocation", proGuardConfigLocation);
  2893. }
  2894. if (const char* securePropertiesLocation =
  2895. this->GeneratorTarget->GetProperty("ANDROID_SECURE_PROPS_PATH")) {
  2896. e2.Element("SecurePropertiesLocation", securePropertiesLocation);
  2897. }
  2898. if (const char* nativeLibDirectoriesExpression =
  2899. this->GeneratorTarget->GetProperty("ANDROID_NATIVE_LIB_DIRECTORIES")) {
  2900. cmGeneratorExpression ge;
  2901. std::unique_ptr<cmCompiledGeneratorExpression> cge =
  2902. ge.Parse(nativeLibDirectoriesExpression);
  2903. std::string nativeLibDirs =
  2904. cge->Evaluate(this->LocalGenerator, configName);
  2905. e2.Element("NativeLibDirectories", nativeLibDirs);
  2906. }
  2907. if (const char* nativeLibDependenciesExpression =
  2908. this->GeneratorTarget->GetProperty(
  2909. "ANDROID_NATIVE_LIB_DEPENDENCIES")) {
  2910. cmGeneratorExpression ge;
  2911. std::unique_ptr<cmCompiledGeneratorExpression> cge =
  2912. ge.Parse(nativeLibDependenciesExpression);
  2913. std::string nativeLibDeps =
  2914. cge->Evaluate(this->LocalGenerator, configName);
  2915. e2.Element("NativeLibDependencies", nativeLibDeps);
  2916. }
  2917. if (const char* javaSourceDir =
  2918. this->GeneratorTarget->GetProperty("ANDROID_JAVA_SOURCE_DIR")) {
  2919. e2.Element("JavaSourceDir", javaSourceDir);
  2920. }
  2921. if (const char* jarDirectoriesExpression =
  2922. this->GeneratorTarget->GetProperty("ANDROID_JAR_DIRECTORIES")) {
  2923. cmGeneratorExpression ge;
  2924. std::unique_ptr<cmCompiledGeneratorExpression> cge =
  2925. ge.Parse(jarDirectoriesExpression);
  2926. std::string jarDirectories =
  2927. cge->Evaluate(this->LocalGenerator, configName);
  2928. e2.Element("JarDirectories", jarDirectories);
  2929. }
  2930. if (const char* jarDeps =
  2931. this->GeneratorTarget->GetProperty("ANDROID_JAR_DEPENDENCIES")) {
  2932. e2.Element("JarDependencies", jarDeps);
  2933. }
  2934. if (const char* assetsDirectories =
  2935. this->GeneratorTarget->GetProperty("ANDROID_ASSETS_DIRECTORIES")) {
  2936. e2.Element("AssetsDirectories", assetsDirectories);
  2937. }
  2938. {
  2939. std::string manifest_xml = rootDir + "/AndroidManifest.xml";
  2940. ConvertToWindowsSlash(manifest_xml);
  2941. e2.Element("AndroidManifestLocation", manifest_xml);
  2942. }
  2943. if (const char* antAdditionalOptions =
  2944. this->GeneratorTarget->GetProperty("ANDROID_ANT_ADDITIONAL_OPTIONS")) {
  2945. e2.Element("AdditionalOptions",
  2946. std::string(antAdditionalOptions) + " %(AdditionalOptions)");
  2947. }
  2948. }
  2949. bool cmVisualStudio10TargetGenerator::ComputeLinkOptions()
  2950. {
  2951. if (this->GeneratorTarget->GetType() == cmStateEnums::EXECUTABLE ||
  2952. this->GeneratorTarget->GetType() == cmStateEnums::SHARED_LIBRARY ||
  2953. this->GeneratorTarget->GetType() == cmStateEnums::MODULE_LIBRARY) {
  2954. for (std::string const& c : this->Configurations) {
  2955. if (!this->ComputeLinkOptions(c)) {
  2956. return false;
  2957. }
  2958. }
  2959. }
  2960. return true;
  2961. }
  2962. bool cmVisualStudio10TargetGenerator::ComputeLinkOptions(
  2963. std::string const& config)
  2964. {
  2965. cmGlobalVisualStudio10Generator* gg = this->GlobalGenerator;
  2966. auto pOptions = cm::make_unique<Options>(
  2967. this->LocalGenerator, Options::Linker, gg->GetLinkFlagTable(), this);
  2968. Options& linkOptions = *pOptions;
  2969. cmGeneratorTarget::LinkClosure const* linkClosure =
  2970. this->GeneratorTarget->GetLinkClosure(config);
  2971. const std::string& linkLanguage = linkClosure->LinkerLanguage;
  2972. if (linkLanguage.empty()) {
  2973. cmSystemTools::Error(
  2974. "CMake can not determine linker language for target: ",
  2975. this->Name.c_str());
  2976. return false;
  2977. }
  2978. std::string CONFIG = cmSystemTools::UpperCase(config);
  2979. const char* linkType = "SHARED";
  2980. if (this->GeneratorTarget->GetType() == cmStateEnums::MODULE_LIBRARY) {
  2981. linkType = "MODULE";
  2982. }
  2983. if (this->GeneratorTarget->GetType() == cmStateEnums::EXECUTABLE) {
  2984. linkType = "EXE";
  2985. }
  2986. std::string flags;
  2987. std::string linkFlagVarBase = "CMAKE_";
  2988. linkFlagVarBase += linkType;
  2989. linkFlagVarBase += "_LINKER_FLAGS";
  2990. flags += " ";
  2991. flags += this->Makefile->GetRequiredDefinition(linkFlagVarBase);
  2992. std::string linkFlagVar = linkFlagVarBase + "_" + CONFIG;
  2993. flags += " ";
  2994. flags += this->Makefile->GetRequiredDefinition(linkFlagVar);
  2995. const char* targetLinkFlags =
  2996. this->GeneratorTarget->GetProperty("LINK_FLAGS");
  2997. if (targetLinkFlags) {
  2998. flags += " ";
  2999. flags += targetLinkFlags;
  3000. }
  3001. std::string flagsProp = "LINK_FLAGS_";
  3002. flagsProp += CONFIG;
  3003. if (const char* flagsConfig =
  3004. this->GeneratorTarget->GetProperty(flagsProp)) {
  3005. flags += " ";
  3006. flags += flagsConfig;
  3007. }
  3008. std::vector<std::string> opts;
  3009. this->GeneratorTarget->GetLinkOptions(opts, config, linkLanguage);
  3010. // LINK_OPTIONS are escaped.
  3011. this->LocalGenerator->AppendCompileOptions(flags, opts);
  3012. cmComputeLinkInformation* pcli =
  3013. this->GeneratorTarget->GetLinkInformation(config);
  3014. if (!pcli) {
  3015. cmSystemTools::Error(
  3016. "CMake can not compute cmComputeLinkInformation for target: ",
  3017. this->Name.c_str());
  3018. return false;
  3019. }
  3020. cmComputeLinkInformation& cli = *pcli;
  3021. std::vector<std::string> libVec;
  3022. std::vector<std::string> vsTargetVec;
  3023. this->AddLibraries(cli, libVec, vsTargetVec, config);
  3024. if (std::find(linkClosure->Languages.begin(), linkClosure->Languages.end(),
  3025. "CUDA") != linkClosure->Languages.end()) {
  3026. switch (this->CudaOptions[config]->GetCudaRuntime()) {
  3027. case cmVisualStudioGeneratorOptions::CudaRuntimeStatic:
  3028. libVec.push_back("cudadevrt.lib");
  3029. libVec.push_back("cudart_static.lib");
  3030. break;
  3031. case cmVisualStudioGeneratorOptions::CudaRuntimeShared:
  3032. libVec.push_back("cudadevrt.lib");
  3033. libVec.push_back("cudart.lib");
  3034. break;
  3035. case cmVisualStudioGeneratorOptions::CudaRuntimeNone:
  3036. break;
  3037. }
  3038. }
  3039. std::string standardLibsVar = "CMAKE_";
  3040. standardLibsVar += linkLanguage;
  3041. standardLibsVar += "_STANDARD_LIBRARIES";
  3042. std::string const libs = this->Makefile->GetSafeDefinition(standardLibsVar);
  3043. cmSystemTools::ParseWindowsCommandLine(libs.c_str(), libVec);
  3044. linkOptions.AddFlag("AdditionalDependencies", libVec);
  3045. // Populate TargetsFileAndConfigsVec
  3046. for (std::string const& ti : vsTargetVec) {
  3047. this->AddTargetsFileAndConfigPair(ti, config);
  3048. }
  3049. std::vector<std::string> const& ldirs = cli.GetDirectories();
  3050. std::vector<std::string> linkDirs;
  3051. for (std::string const& d : ldirs) {
  3052. // first just full path
  3053. linkDirs.push_back(d);
  3054. // next path with configuration type Debug, Release, etc
  3055. linkDirs.push_back(d + "/$(Configuration)");
  3056. }
  3057. linkDirs.push_back("%(AdditionalLibraryDirectories)");
  3058. linkOptions.AddFlag("AdditionalLibraryDirectories", linkDirs);
  3059. std::string targetName;
  3060. std::string targetNameSO;
  3061. std::string targetNameFull;
  3062. std::string targetNameImport;
  3063. std::string targetNamePDB;
  3064. if (this->GeneratorTarget->GetType() == cmStateEnums::EXECUTABLE) {
  3065. this->GeneratorTarget->GetExecutableNames(
  3066. targetName, targetNameFull, targetNameImport, targetNamePDB, config);
  3067. } else {
  3068. this->GeneratorTarget->GetLibraryNames(targetName, targetNameSO,
  3069. targetNameFull, targetNameImport,
  3070. targetNamePDB, config);
  3071. }
  3072. if (this->MSTools) {
  3073. if (this->GeneratorTarget->GetPropertyAsBool("WIN32_EXECUTABLE")) {
  3074. if (this->GlobalGenerator->TargetsWindowsCE()) {
  3075. linkOptions.AddFlag("SubSystem", "WindowsCE");
  3076. if (this->GeneratorTarget->GetType() == cmStateEnums::EXECUTABLE) {
  3077. if (this->ClOptions[config]->UsingUnicode()) {
  3078. linkOptions.AddFlag("EntryPointSymbol", "wWinMainCRTStartup");
  3079. } else {
  3080. linkOptions.AddFlag("EntryPointSymbol", "WinMainCRTStartup");
  3081. }
  3082. }
  3083. } else {
  3084. linkOptions.AddFlag("SubSystem", "Windows");
  3085. }
  3086. } else {
  3087. if (this->GlobalGenerator->TargetsWindowsCE()) {
  3088. linkOptions.AddFlag("SubSystem", "WindowsCE");
  3089. if (this->GeneratorTarget->GetType() == cmStateEnums::EXECUTABLE) {
  3090. if (this->ClOptions[config]->UsingUnicode()) {
  3091. linkOptions.AddFlag("EntryPointSymbol", "mainWCRTStartup");
  3092. } else {
  3093. linkOptions.AddFlag("EntryPointSymbol", "mainACRTStartup");
  3094. }
  3095. }
  3096. } else {
  3097. linkOptions.AddFlag("SubSystem", "Console");
  3098. };
  3099. }
  3100. if (const char* stackVal = this->Makefile->GetDefinition(
  3101. "CMAKE_" + linkLanguage + "_STACK_SIZE")) {
  3102. linkOptions.AddFlag("StackReserveSize", stackVal);
  3103. }
  3104. linkOptions.AddFlag("GenerateDebugInformation", "false");
  3105. std::string pdb = this->GeneratorTarget->GetPDBDirectory(config);
  3106. pdb += "/";
  3107. pdb += targetNamePDB;
  3108. std::string imLib = this->GeneratorTarget->GetDirectory(
  3109. config, cmStateEnums::ImportLibraryArtifact);
  3110. imLib += "/";
  3111. imLib += targetNameImport;
  3112. linkOptions.AddFlag("ImportLibrary", imLib);
  3113. linkOptions.AddFlag("ProgramDataBaseFile", pdb);
  3114. // A Windows Runtime component uses internal .NET metadata,
  3115. // so does not have an import library.
  3116. if (this->GeneratorTarget->GetPropertyAsBool("VS_WINRT_COMPONENT") &&
  3117. this->GeneratorTarget->GetType() != cmStateEnums::EXECUTABLE) {
  3118. linkOptions.AddFlag("GenerateWindowsMetadata", "true");
  3119. } else if (this->GlobalGenerator->TargetsWindowsPhone() ||
  3120. this->GlobalGenerator->TargetsWindowsStore()) {
  3121. // WindowsPhone and WindowsStore components are in an app container
  3122. // and produce WindowsMetadata. If we are not producing a WINRT
  3123. // component, then do not generate the metadata here.
  3124. linkOptions.AddFlag("GenerateWindowsMetadata", "false");
  3125. }
  3126. if (this->GlobalGenerator->TargetsWindowsPhone() &&
  3127. this->GlobalGenerator->GetSystemVersion() == "8.0") {
  3128. // WindowsPhone 8.0 does not have ole32.
  3129. linkOptions.AppendFlag("IgnoreSpecificDefaultLibraries", "ole32.lib");
  3130. }
  3131. } else if (this->NsightTegra) {
  3132. linkOptions.AddFlag("SoName", targetNameSO);
  3133. }
  3134. linkOptions.Parse(flags);
  3135. linkOptions.FixManifestUACFlags();
  3136. if (this->MSTools) {
  3137. cmGeneratorTarget::ModuleDefinitionInfo const* mdi =
  3138. this->GeneratorTarget->GetModuleDefinitionInfo(config);
  3139. if (mdi && !mdi->DefFile.empty()) {
  3140. linkOptions.AddFlag("ModuleDefinitionFile", mdi->DefFile);
  3141. }
  3142. linkOptions.AppendFlag("IgnoreSpecificDefaultLibraries",
  3143. "%(IgnoreSpecificDefaultLibraries)");
  3144. }
  3145. // VS 2015 without all updates has a v140 toolset whose
  3146. // GenerateDebugInformation expects No/Debug instead of false/true.
  3147. if (gg->GetPlatformToolsetNeedsDebugEnum()) {
  3148. if (const char* debug = linkOptions.GetFlag("GenerateDebugInformation")) {
  3149. if (strcmp(debug, "false") == 0) {
  3150. linkOptions.AddFlag("GenerateDebugInformation", "No");
  3151. } else if (strcmp(debug, "true") == 0) {
  3152. linkOptions.AddFlag("GenerateDebugInformation", "Debug");
  3153. }
  3154. }
  3155. }
  3156. // Managed code cannot be linked with /DEBUG:FASTLINK
  3157. if (this->Managed) {
  3158. if (const char* debug = linkOptions.GetFlag("GenerateDebugInformation")) {
  3159. if (strcmp(debug, "DebugFastLink") == 0) {
  3160. linkOptions.AddFlag("GenerateDebugInformation", "Debug");
  3161. }
  3162. }
  3163. }
  3164. this->LinkOptions[config] = std::move(pOptions);
  3165. return true;
  3166. }
  3167. bool cmVisualStudio10TargetGenerator::ComputeLibOptions()
  3168. {
  3169. if (this->GeneratorTarget->GetType() == cmStateEnums::STATIC_LIBRARY) {
  3170. for (std::string const& c : this->Configurations) {
  3171. if (!this->ComputeLibOptions(c)) {
  3172. return false;
  3173. }
  3174. }
  3175. }
  3176. return true;
  3177. }
  3178. bool cmVisualStudio10TargetGenerator::ComputeLibOptions(
  3179. std::string const& config)
  3180. {
  3181. cmComputeLinkInformation* pcli =
  3182. this->GeneratorTarget->GetLinkInformation(config);
  3183. if (!pcli) {
  3184. cmSystemTools::Error(
  3185. "CMake can not compute cmComputeLinkInformation for target: ",
  3186. this->Name.c_str());
  3187. return false;
  3188. }
  3189. cmComputeLinkInformation& cli = *pcli;
  3190. typedef cmComputeLinkInformation::ItemVector ItemVector;
  3191. const ItemVector& libs = cli.GetItems();
  3192. std::string currentBinDir =
  3193. this->LocalGenerator->GetCurrentBinaryDirectory();
  3194. for (cmComputeLinkInformation::Item const& l : libs) {
  3195. if (l.IsPath && cmVS10IsTargetsFile(l.Value)) {
  3196. std::string path =
  3197. this->LocalGenerator->ConvertToRelativePath(currentBinDir, l.Value);
  3198. ConvertToWindowsSlash(path);
  3199. this->AddTargetsFileAndConfigPair(path, config);
  3200. }
  3201. }
  3202. return true;
  3203. }
  3204. void cmVisualStudio10TargetGenerator::WriteLinkOptions(
  3205. Elem& e1, std::string const& config)
  3206. {
  3207. if (this->GeneratorTarget->GetType() == cmStateEnums::STATIC_LIBRARY ||
  3208. this->GeneratorTarget->GetType() > cmStateEnums::MODULE_LIBRARY) {
  3209. return;
  3210. }
  3211. if (this->ProjectType == csproj) {
  3212. return;
  3213. }
  3214. {
  3215. Elem e2(e1, "Link");
  3216. OptionsHelper linkOptions(*(this->LinkOptions[config]), e2);
  3217. linkOptions.PrependInheritedString("AdditionalOptions");
  3218. linkOptions.OutputFlagMap();
  3219. }
  3220. if (!this->GlobalGenerator->NeedLinkLibraryDependencies(
  3221. this->GeneratorTarget)) {
  3222. Elem e2(e1, "ProjectReference");
  3223. e2.Element("LinkLibraryDependencies", "false");
  3224. }
  3225. }
  3226. void cmVisualStudio10TargetGenerator::AddLibraries(
  3227. const cmComputeLinkInformation& cli, std::vector<std::string>& libVec,
  3228. std::vector<std::string>& vsTargetVec, const std::string& config)
  3229. {
  3230. typedef cmComputeLinkInformation::ItemVector ItemVector;
  3231. ItemVector const& libs = cli.GetItems();
  3232. std::string currentBinDir =
  3233. this->LocalGenerator->GetCurrentBinaryDirectory();
  3234. for (cmComputeLinkInformation::Item const& l : libs) {
  3235. if (l.Target) {
  3236. auto managedType = l.Target->GetManagedType(config);
  3237. if (managedType != cmGeneratorTarget::ManagedType::Native &&
  3238. this->GeneratorTarget->GetManagedType(config) !=
  3239. cmGeneratorTarget::ManagedType::Native &&
  3240. l.Target->IsImported()) {
  3241. auto location = l.Target->GetFullPath(config);
  3242. if (!location.empty()) {
  3243. ConvertToWindowsSlash(location);
  3244. switch (this->ProjectType) {
  3245. case csproj:
  3246. // If the target we want to "link" to is an imported managed
  3247. // target and this is a C# project, we add a hint reference. This
  3248. // reference is written to project file in
  3249. // WriteDotNetReferences().
  3250. this->DotNetHintReferences[config].push_back(
  3251. DotNetHintReference(l.Target->GetName(), location));
  3252. break;
  3253. case vcxproj:
  3254. // Add path of assembly to list of using-directories, so the
  3255. // managed assembly can be used by '#using <assembly.dll>' in
  3256. // code.
  3257. this->AdditionalUsingDirectories[config].insert(
  3258. cmSystemTools::GetFilenamePath(location));
  3259. break;
  3260. }
  3261. }
  3262. }
  3263. // Do not allow C# targets to be added to the LIB listing. LIB files are
  3264. // used for linking C++ dependencies. C# libraries do not have lib files.
  3265. // Instead, they compile down to C# reference libraries (DLL files). The
  3266. // `<ProjectReference>` elements added to the vcxproj are enough for the
  3267. // IDE to deduce the DLL file required by other C# projects that need its
  3268. // reference library.
  3269. if (managedType == cmGeneratorTarget::ManagedType::Managed) {
  3270. continue;
  3271. }
  3272. }
  3273. if (l.IsPath) {
  3274. std::string path =
  3275. this->LocalGenerator->ConvertToRelativePath(currentBinDir, l.Value);
  3276. ConvertToWindowsSlash(path);
  3277. if (cmVS10IsTargetsFile(l.Value)) {
  3278. vsTargetVec.push_back(path);
  3279. } else {
  3280. libVec.push_back(path);
  3281. }
  3282. } else if (!l.Target ||
  3283. l.Target->GetType() != cmStateEnums::INTERFACE_LIBRARY) {
  3284. libVec.push_back(l.Value);
  3285. }
  3286. }
  3287. }
  3288. void cmVisualStudio10TargetGenerator::AddTargetsFileAndConfigPair(
  3289. std::string const& targetsFile, std::string const& config)
  3290. {
  3291. for (TargetsFileAndConfigs& i : this->TargetsFileAndConfigsVec) {
  3292. if (cmSystemTools::ComparePath(targetsFile, i.File)) {
  3293. if (std::find(i.Configs.begin(), i.Configs.end(), config) ==
  3294. i.Configs.end()) {
  3295. i.Configs.push_back(config);
  3296. }
  3297. return;
  3298. }
  3299. }
  3300. TargetsFileAndConfigs entry;
  3301. entry.File = targetsFile;
  3302. entry.Configs.push_back(config);
  3303. this->TargetsFileAndConfigsVec.push_back(entry);
  3304. }
  3305. void cmVisualStudio10TargetGenerator::WriteMidlOptions(
  3306. Elem& e1, std::string const& configName)
  3307. {
  3308. if (!this->MSTools) {
  3309. return;
  3310. }
  3311. if (this->ProjectType == csproj) {
  3312. return;
  3313. }
  3314. // This processes *any* of the .idl files specified in the project's file
  3315. // list (and passed as the item metadata %(Filename) expressing the rule
  3316. // input filename) into output files at the per-config *build* dir
  3317. // ($(IntDir)) each.
  3318. //
  3319. // IOW, this MIDL section is intended to provide a fully generic syntax
  3320. // content suitable for most cases (read: if you get errors, then it's quite
  3321. // probable that the error is on your side of the .idl setup).
  3322. //
  3323. // Also, note that the marked-as-generated _i.c file in the Visual Studio
  3324. // generator case needs to be referred to as $(IntDir)\foo_i.c at the
  3325. // project's file list, otherwise the compiler-side processing won't pick it
  3326. // up (for non-directory form, it ends up looking in project binary dir
  3327. // only). Perhaps there's something to be done to make this more automatic
  3328. // on the CMake side?
  3329. std::vector<std::string> const includes =
  3330. this->GetIncludes(configName, "MIDL");
  3331. std::ostringstream oss;
  3332. for (std::string const& i : includes) {
  3333. oss << i << ";";
  3334. }
  3335. oss << "%(AdditionalIncludeDirectories)";
  3336. Elem e2(e1, "Midl");
  3337. e2.Element("AdditionalIncludeDirectories", oss.str());
  3338. e2.Element("OutputDirectory", "$(ProjectDir)/$(IntDir)");
  3339. e2.Element("HeaderFileName", "%(Filename).h");
  3340. e2.Element("TypeLibraryName", "%(Filename).tlb");
  3341. e2.Element("InterfaceIdentifierFileName", "%(Filename)_i.c");
  3342. e2.Element("ProxyFileName", "%(Filename)_p.c");
  3343. }
  3344. void cmVisualStudio10TargetGenerator::WriteItemDefinitionGroups(Elem& e0)
  3345. {
  3346. if (this->ProjectType == csproj) {
  3347. return;
  3348. }
  3349. for (const std::string& c : this->Configurations) {
  3350. Elem e1(e0, "ItemDefinitionGroup");
  3351. e1.Attribute("Condition", this->CalcCondition(c));
  3352. // output cl compile flags <ClCompile></ClCompile>
  3353. if (this->GeneratorTarget->GetType() <= cmStateEnums::OBJECT_LIBRARY) {
  3354. this->WriteClOptions(e1, c);
  3355. // output rc compile flags <ResourceCompile></ResourceCompile>
  3356. this->WriteRCOptions(e1, c);
  3357. this->WriteCudaOptions(e1, c);
  3358. this->WriteMasmOptions(e1, c);
  3359. this->WriteNasmOptions(e1, c);
  3360. }
  3361. // output midl flags <Midl></Midl>
  3362. this->WriteMidlOptions(e1, c);
  3363. // write events
  3364. if (this->ProjectType != csproj) {
  3365. this->WriteEvents(e1, c);
  3366. }
  3367. // output link flags <Link></Link>
  3368. this->WriteLinkOptions(e1, c);
  3369. this->WriteCudaLinkOptions(e1, c);
  3370. // output lib flags <Lib></Lib>
  3371. this->WriteLibOptions(e1, c);
  3372. // output manifest flags <Manifest></Manifest>
  3373. this->WriteManifestOptions(e1, c);
  3374. if (this->NsightTegra &&
  3375. this->GeneratorTarget->GetType() == cmStateEnums::EXECUTABLE &&
  3376. this->GeneratorTarget->GetPropertyAsBool("ANDROID_GUI")) {
  3377. this->WriteAntBuildOptions(e1, c);
  3378. }
  3379. }
  3380. }
  3381. void cmVisualStudio10TargetGenerator::WriteEvents(
  3382. Elem& e1, std::string const& configName)
  3383. {
  3384. bool addedPrelink = false;
  3385. cmGeneratorTarget::ModuleDefinitionInfo const* mdi =
  3386. this->GeneratorTarget->GetModuleDefinitionInfo(configName);
  3387. if (mdi && mdi->DefFileGenerated) {
  3388. addedPrelink = true;
  3389. std::vector<cmCustomCommand> commands =
  3390. this->GeneratorTarget->GetPreLinkCommands();
  3391. this->GlobalGenerator->AddSymbolExportCommand(this->GeneratorTarget,
  3392. commands, configName);
  3393. this->WriteEvent(e1, "PreLinkEvent", commands, configName);
  3394. }
  3395. if (!addedPrelink) {
  3396. this->WriteEvent(e1, "PreLinkEvent",
  3397. this->GeneratorTarget->GetPreLinkCommands(), configName);
  3398. }
  3399. this->WriteEvent(e1, "PreBuildEvent",
  3400. this->GeneratorTarget->GetPreBuildCommands(), configName);
  3401. this->WriteEvent(e1, "PostBuildEvent",
  3402. this->GeneratorTarget->GetPostBuildCommands(), configName);
  3403. }
  3404. void cmVisualStudio10TargetGenerator::WriteEvent(
  3405. Elem& e1, const char* name, std::vector<cmCustomCommand> const& commands,
  3406. std::string const& configName)
  3407. {
  3408. if (commands.empty()) {
  3409. return;
  3410. }
  3411. cmLocalVisualStudio7Generator* lg = this->LocalGenerator;
  3412. std::string script;
  3413. const char* pre = "";
  3414. std::string comment;
  3415. for (cmCustomCommand const& cc : commands) {
  3416. cmCustomCommandGenerator ccg(cc, configName, lg);
  3417. if (!ccg.HasOnlyEmptyCommandLines()) {
  3418. comment += pre;
  3419. comment += lg->ConstructComment(ccg);
  3420. script += pre;
  3421. pre = "\n";
  3422. script += lg->ConstructScript(ccg);
  3423. }
  3424. }
  3425. comment = cmVS10EscapeComment(comment);
  3426. if (this->ProjectType != csproj) {
  3427. Elem e2(e1, name);
  3428. e2.Element("Message", comment);
  3429. e2.Element("Command", script);
  3430. } else {
  3431. std::string strippedComment = comment;
  3432. strippedComment.erase(
  3433. std::remove(strippedComment.begin(), strippedComment.end(), '\t'),
  3434. strippedComment.end());
  3435. std::ostringstream oss;
  3436. if (!comment.empty() && !strippedComment.empty()) {
  3437. oss << "echo " << comment << "\n";
  3438. }
  3439. oss << script << "\n";
  3440. e1.Element(name, oss.str());
  3441. }
  3442. }
  3443. void cmVisualStudio10TargetGenerator::WriteProjectReferences(Elem& e0)
  3444. {
  3445. cmGlobalGenerator::TargetDependSet const& unordered =
  3446. this->GlobalGenerator->GetTargetDirectDepends(this->GeneratorTarget);
  3447. typedef cmGlobalVisualStudioGenerator::OrderedTargetDependSet
  3448. OrderedTargetDependSet;
  3449. OrderedTargetDependSet depends(unordered, CMAKE_CHECK_BUILD_SYSTEM_TARGET);
  3450. Elem e1(e0, "ItemGroup");
  3451. e1.SetHasElements();
  3452. for (cmGeneratorTarget const* dt : depends) {
  3453. if (dt->GetType() == cmStateEnums::INTERFACE_LIBRARY) {
  3454. continue;
  3455. }
  3456. // skip fortran targets as they can not be processed by MSBuild
  3457. // the only reference will be in the .sln file
  3458. if (this->GlobalGenerator->TargetIsFortranOnly(dt)) {
  3459. continue;
  3460. }
  3461. cmLocalGenerator* lg = dt->GetLocalGenerator();
  3462. std::string name = dt->GetName();
  3463. std::string path;
  3464. const char* p = dt->GetProperty("EXTERNAL_MSPROJECT");
  3465. if (p) {
  3466. path = p;
  3467. } else {
  3468. path = lg->GetCurrentBinaryDirectory();
  3469. path += "/";
  3470. path += dt->GetName();
  3471. path += computeProjectFileExtension(dt, *this->Configurations.begin());
  3472. }
  3473. ConvertToWindowsSlash(path);
  3474. Elem e2(e1, "ProjectReference");
  3475. e2.Attribute("Include", path);
  3476. e2.Element("Project", "{" + this->GlobalGenerator->GetGUID(name) + "}");
  3477. e2.Element("Name", name);
  3478. this->WriteDotNetReferenceCustomTags(e2, name);
  3479. if (this->Managed) {
  3480. // If the dependency target is not managed (compiled with /clr or
  3481. // C# target) we cannot reference it and have to set
  3482. // 'ReferenceOutputAssembly' to false.
  3483. auto referenceNotManaged =
  3484. dt->GetManagedType("") < cmGeneratorTarget::ManagedType::Mixed;
  3485. // Workaround to check for manually set /clr flags.
  3486. if (referenceNotManaged) {
  3487. if (const auto* flags = dt->GetProperty("COMPILE_OPTIONS")) {
  3488. std::string flagsStr = flags;
  3489. if (flagsStr.find("clr") != std::string::npos) {
  3490. // There is a warning already issued when building the flags.
  3491. referenceNotManaged = false;
  3492. }
  3493. }
  3494. }
  3495. // Workaround for static library C# targets
  3496. if (referenceNotManaged &&
  3497. dt->GetType() == cmStateEnums::STATIC_LIBRARY) {
  3498. referenceNotManaged = !dt->HasLanguage("CSharp", "");
  3499. }
  3500. if (referenceNotManaged) {
  3501. e2.Element("ReferenceOutputAssembly", "false");
  3502. e2.Element("CopyToOutputDirectory", "Never");
  3503. }
  3504. }
  3505. }
  3506. }
  3507. void cmVisualStudio10TargetGenerator::WritePlatformExtensions(Elem& e1)
  3508. {
  3509. // This only applies to Windows 10 apps
  3510. if (this->GlobalGenerator->TargetsWindowsStore() &&
  3511. cmHasLiteralPrefix(this->GlobalGenerator->GetSystemVersion(), "10.0")) {
  3512. const char* desktopExtensionsVersion =
  3513. this->GeneratorTarget->GetProperty("VS_DESKTOP_EXTENSIONS_VERSION");
  3514. if (desktopExtensionsVersion) {
  3515. this->WriteSinglePlatformExtension(e1, "WindowsDesktop",
  3516. desktopExtensionsVersion);
  3517. }
  3518. const char* mobileExtensionsVersion =
  3519. this->GeneratorTarget->GetProperty("VS_MOBILE_EXTENSIONS_VERSION");
  3520. if (mobileExtensionsVersion) {
  3521. this->WriteSinglePlatformExtension(e1, "WindowsMobile",
  3522. mobileExtensionsVersion);
  3523. }
  3524. }
  3525. }
  3526. void cmVisualStudio10TargetGenerator::WriteSinglePlatformExtension(
  3527. Elem& e1, std::string const& extension, std::string const& version)
  3528. {
  3529. const std::string s = "$([Microsoft.Build.Utilities.ToolLocationHelper]"
  3530. "::GetPlatformExtensionSDKLocation(`" +
  3531. extension + ", Version=" + version +
  3532. "`, $(TargetPlatformIdentifier), $(TargetPlatformVersion), null, "
  3533. "$(ExtensionSDKDirectoryRoot), null))"
  3534. "\\DesignTime\\CommonConfiguration\\Neutral\\" +
  3535. extension + ".props";
  3536. Elem e2(e1, "Import");
  3537. e2.Attribute("Project", s);
  3538. e2.Attribute("Condition", "exists('" + s + "')");
  3539. }
  3540. void cmVisualStudio10TargetGenerator::WriteSDKReferences(Elem& e0)
  3541. {
  3542. std::vector<std::string> sdkReferences;
  3543. Elem e1(e0);
  3544. bool hasWrittenItemGroup = false;
  3545. if (const char* vsSDKReferences =
  3546. this->GeneratorTarget->GetProperty("VS_SDK_REFERENCES")) {
  3547. cmSystemTools::ExpandListArgument(vsSDKReferences, sdkReferences);
  3548. e1.StartElement("ItemGroup");
  3549. hasWrittenItemGroup = true;
  3550. for (std::string const& ri : sdkReferences) {
  3551. Elem(e1, "SDKReference").Attribute("Include", ri);
  3552. }
  3553. }
  3554. // This only applies to Windows 10 apps
  3555. if (this->GlobalGenerator->TargetsWindowsStore() &&
  3556. cmHasLiteralPrefix(this->GlobalGenerator->GetSystemVersion(), "10.0")) {
  3557. const char* desktopExtensionsVersion =
  3558. this->GeneratorTarget->GetProperty("VS_DESKTOP_EXTENSIONS_VERSION");
  3559. const char* mobileExtensionsVersion =
  3560. this->GeneratorTarget->GetProperty("VS_MOBILE_EXTENSIONS_VERSION");
  3561. const char* iotExtensionsVersion =
  3562. this->GeneratorTarget->GetProperty("VS_IOT_EXTENSIONS_VERSION");
  3563. if (desktopExtensionsVersion || mobileExtensionsVersion ||
  3564. iotExtensionsVersion) {
  3565. if (!hasWrittenItemGroup) {
  3566. e1.StartElement("ItemGroup");
  3567. }
  3568. if (desktopExtensionsVersion) {
  3569. this->WriteSingleSDKReference(e1, "WindowsDesktop",
  3570. desktopExtensionsVersion);
  3571. }
  3572. if (mobileExtensionsVersion) {
  3573. this->WriteSingleSDKReference(e1, "WindowsMobile",
  3574. mobileExtensionsVersion);
  3575. }
  3576. if (iotExtensionsVersion) {
  3577. this->WriteSingleSDKReference(e1, "WindowsIoT", iotExtensionsVersion);
  3578. }
  3579. }
  3580. }
  3581. }
  3582. void cmVisualStudio10TargetGenerator::WriteSingleSDKReference(
  3583. Elem& e1, std::string const& extension, std::string const& version)
  3584. {
  3585. Elem(e1, "SDKReference")
  3586. .Attribute("Include", extension + ", Version=" + version);
  3587. }
  3588. void cmVisualStudio10TargetGenerator::WriteWinRTPackageCertificateKeyFile(
  3589. Elem& e0)
  3590. {
  3591. if ((this->GlobalGenerator->TargetsWindowsStore() ||
  3592. this->GlobalGenerator->TargetsWindowsPhone()) &&
  3593. (cmStateEnums::EXECUTABLE == this->GeneratorTarget->GetType())) {
  3594. std::string pfxFile;
  3595. std::vector<cmSourceFile const*> certificates;
  3596. this->GeneratorTarget->GetCertificates(certificates, "");
  3597. for (cmSourceFile const* si : certificates) {
  3598. pfxFile = this->ConvertPath(si->GetFullPath(), false);
  3599. ConvertToWindowsSlash(pfxFile);
  3600. break;
  3601. }
  3602. if (this->IsMissingFiles &&
  3603. !(this->GlobalGenerator->TargetsWindowsPhone() &&
  3604. this->GlobalGenerator->GetSystemVersion() == "8.0")) {
  3605. // Move the manifest to a project directory to avoid clashes
  3606. std::string artifactDir =
  3607. this->LocalGenerator->GetTargetDirectory(this->GeneratorTarget);
  3608. ConvertToWindowsSlash(artifactDir);
  3609. Elem e1(e0, "PropertyGroup");
  3610. e1.Element("AppxPackageArtifactsDir", artifactDir + "\\");
  3611. std::string resourcePriFile =
  3612. this->DefaultArtifactDir + "/resources.pri";
  3613. ConvertToWindowsSlash(resourcePriFile);
  3614. e1.Element("ProjectPriFullPath", resourcePriFile);
  3615. // If we are missing files and we don't have a certificate and
  3616. // aren't targeting WP8.0, add a default certificate
  3617. if (pfxFile.empty()) {
  3618. std::string templateFolder =
  3619. cmSystemTools::GetCMakeRoot() + "/Templates/Windows";
  3620. pfxFile = this->DefaultArtifactDir + "/Windows_TemporaryKey.pfx";
  3621. cmSystemTools::CopyAFile(templateFolder + "/Windows_TemporaryKey.pfx",
  3622. pfxFile, false);
  3623. ConvertToWindowsSlash(pfxFile);
  3624. this->AddedFiles.push_back(pfxFile);
  3625. this->AddedDefaultCertificate = true;
  3626. }
  3627. e1.Element("PackageCertificateKeyFile", pfxFile);
  3628. std::string thumb = cmSystemTools::ComputeCertificateThumbprint(pfxFile);
  3629. if (!thumb.empty()) {
  3630. e1.Element("PackageCertificateThumbprint", thumb);
  3631. }
  3632. } else if (!pfxFile.empty()) {
  3633. Elem e1(e0, "PropertyGroup");
  3634. e1.Element("PackageCertificateKeyFile", pfxFile);
  3635. std::string thumb = cmSystemTools::ComputeCertificateThumbprint(pfxFile);
  3636. if (!thumb.empty()) {
  3637. e1.Element("PackageCertificateThumbprint", thumb);
  3638. }
  3639. }
  3640. }
  3641. }
  3642. bool cmVisualStudio10TargetGenerator::IsResxHeader(
  3643. const std::string& headerFile)
  3644. {
  3645. std::set<std::string> expectedResxHeaders;
  3646. this->GeneratorTarget->GetExpectedResxHeaders(expectedResxHeaders, "");
  3647. std::set<std::string>::const_iterator it =
  3648. expectedResxHeaders.find(headerFile);
  3649. return it != expectedResxHeaders.end();
  3650. }
  3651. bool cmVisualStudio10TargetGenerator::IsXamlHeader(
  3652. const std::string& headerFile)
  3653. {
  3654. std::set<std::string> expectedXamlHeaders;
  3655. this->GeneratorTarget->GetExpectedXamlHeaders(expectedXamlHeaders, "");
  3656. std::set<std::string>::const_iterator it =
  3657. expectedXamlHeaders.find(headerFile);
  3658. return it != expectedXamlHeaders.end();
  3659. }
  3660. bool cmVisualStudio10TargetGenerator::IsXamlSource(
  3661. const std::string& sourceFile)
  3662. {
  3663. std::set<std::string> expectedXamlSources;
  3664. this->GeneratorTarget->GetExpectedXamlSources(expectedXamlSources, "");
  3665. std::set<std::string>::const_iterator it =
  3666. expectedXamlSources.find(sourceFile);
  3667. return it != expectedXamlSources.end();
  3668. }
  3669. void cmVisualStudio10TargetGenerator::WriteApplicationTypeSettings(Elem& e1)
  3670. {
  3671. cmGlobalVisualStudio10Generator* gg = this->GlobalGenerator;
  3672. bool isAppContainer = false;
  3673. bool const isWindowsPhone = this->GlobalGenerator->TargetsWindowsPhone();
  3674. bool const isWindowsStore = this->GlobalGenerator->TargetsWindowsStore();
  3675. std::string const& v = this->GlobalGenerator->GetSystemVersion();
  3676. if (isWindowsPhone || isWindowsStore) {
  3677. e1.Element("ApplicationType",
  3678. (isWindowsPhone ? "Windows Phone" : "Windows Store"));
  3679. e1.Element("DefaultLanguage", "en-US");
  3680. if (cmHasLiteralPrefix(v, "10.0")) {
  3681. e1.Element("ApplicationTypeRevision", "10.0");
  3682. // Visual Studio 14.0 is necessary for building 10.0 apps
  3683. e1.Element("MinimumVisualStudioVersion", "14.0");
  3684. if (this->GeneratorTarget->GetType() < cmStateEnums::UTILITY) {
  3685. isAppContainer = true;
  3686. }
  3687. } else if (v == "8.1") {
  3688. e1.Element("ApplicationTypeRevision", v);
  3689. // Visual Studio 12.0 is necessary for building 8.1 apps
  3690. e1.Element("MinimumVisualStudioVersion", "12.0");
  3691. if (this->GeneratorTarget->GetType() < cmStateEnums::UTILITY) {
  3692. isAppContainer = true;
  3693. }
  3694. } else if (v == "8.0") {
  3695. e1.Element("ApplicationTypeRevision", v);
  3696. // Visual Studio 11.0 is necessary for building 8.0 apps
  3697. e1.Element("MinimumVisualStudioVersion", "11.0");
  3698. if (isWindowsStore &&
  3699. this->GeneratorTarget->GetType() < cmStateEnums::UTILITY) {
  3700. isAppContainer = true;
  3701. } else if (isWindowsPhone &&
  3702. this->GeneratorTarget->GetType() ==
  3703. cmStateEnums::EXECUTABLE) {
  3704. e1.Element("XapOutputs", "true");
  3705. e1.Element("XapFilename",
  3706. this->Name + "_$(Configuration)_$(Platform).xap");
  3707. }
  3708. }
  3709. }
  3710. if (isAppContainer) {
  3711. e1.Element("AppContainerApplication", "true");
  3712. } else if (this->Platform == "ARM64") {
  3713. e1.Element("WindowsSDKDesktopARM64Support", "true");
  3714. } else if (this->Platform == "ARM") {
  3715. e1.Element("WindowsSDKDesktopARMSupport", "true");
  3716. }
  3717. std::string const& targetPlatformVersion =
  3718. gg->GetWindowsTargetPlatformVersion();
  3719. if (!targetPlatformVersion.empty()) {
  3720. e1.Element("WindowsTargetPlatformVersion", targetPlatformVersion);
  3721. }
  3722. const char* targetPlatformMinVersion = this->GeneratorTarget->GetProperty(
  3723. "VS_WINDOWS_TARGET_PLATFORM_MIN_VERSION");
  3724. if (targetPlatformMinVersion) {
  3725. e1.Element("WindowsTargetPlatformMinVersion", targetPlatformMinVersion);
  3726. } else if (isWindowsStore && cmHasLiteralPrefix(v, "10.0")) {
  3727. // If the min version is not set, then use the TargetPlatformVersion
  3728. if (!targetPlatformVersion.empty()) {
  3729. e1.Element("WindowsTargetPlatformMinVersion", targetPlatformVersion);
  3730. }
  3731. }
  3732. // Added IoT Startup Task support
  3733. if (this->GeneratorTarget->GetPropertyAsBool("VS_IOT_STARTUP_TASK")) {
  3734. e1.Element("ContainsStartupTask", "true");
  3735. }
  3736. }
  3737. void cmVisualStudio10TargetGenerator::VerifyNecessaryFiles()
  3738. {
  3739. // For Windows and Windows Phone executables, we will assume that if a
  3740. // manifest is not present that we need to add all the necessary files
  3741. if (this->GeneratorTarget->GetType() == cmStateEnums::EXECUTABLE) {
  3742. std::vector<cmSourceFile const*> manifestSources;
  3743. this->GeneratorTarget->GetAppManifest(manifestSources, "");
  3744. {
  3745. std::string const& v = this->GlobalGenerator->GetSystemVersion();
  3746. if (this->GlobalGenerator->TargetsWindowsPhone()) {
  3747. if (v == "8.0") {
  3748. // Look through the sources for WMAppManifest.xml
  3749. std::vector<cmSourceFile const*> extraSources;
  3750. this->GeneratorTarget->GetExtraSources(extraSources, "");
  3751. bool foundManifest = false;
  3752. for (cmSourceFile const* si : extraSources) {
  3753. // Need to do a lowercase comparison on the filename
  3754. if ("wmappmanifest.xml" ==
  3755. cmSystemTools::LowerCase(si->GetLocation().GetName())) {
  3756. foundManifest = true;
  3757. break;
  3758. }
  3759. }
  3760. if (!foundManifest) {
  3761. this->IsMissingFiles = true;
  3762. }
  3763. } else if (v == "8.1") {
  3764. if (manifestSources.empty()) {
  3765. this->IsMissingFiles = true;
  3766. }
  3767. }
  3768. } else if (this->GlobalGenerator->TargetsWindowsStore()) {
  3769. if (manifestSources.empty()) {
  3770. if (v == "8.0") {
  3771. this->IsMissingFiles = true;
  3772. } else if (v == "8.1" || cmHasLiteralPrefix(v, "10.0")) {
  3773. this->IsMissingFiles = true;
  3774. }
  3775. }
  3776. }
  3777. }
  3778. }
  3779. }
  3780. void cmVisualStudio10TargetGenerator::WriteMissingFiles(Elem& e1)
  3781. {
  3782. std::string const& v = this->GlobalGenerator->GetSystemVersion();
  3783. if (this->GlobalGenerator->TargetsWindowsPhone()) {
  3784. if (v == "8.0") {
  3785. this->WriteMissingFilesWP80(e1);
  3786. } else if (v == "8.1") {
  3787. this->WriteMissingFilesWP81(e1);
  3788. }
  3789. } else if (this->GlobalGenerator->TargetsWindowsStore()) {
  3790. if (v == "8.0") {
  3791. this->WriteMissingFilesWS80(e1);
  3792. } else if (v == "8.1") {
  3793. this->WriteMissingFilesWS81(e1);
  3794. } else if (cmHasLiteralPrefix(v, "10.0")) {
  3795. this->WriteMissingFilesWS10_0(e1);
  3796. }
  3797. }
  3798. }
  3799. void cmVisualStudio10TargetGenerator::WriteMissingFilesWP80(Elem& e1)
  3800. {
  3801. std::string templateFolder =
  3802. cmSystemTools::GetCMakeRoot() + "/Templates/Windows";
  3803. // For WP80, the manifest needs to be in the same folder as the project
  3804. // this can cause an overwrite problem if projects aren't organized in
  3805. // folders
  3806. std::string manifestFile =
  3807. this->LocalGenerator->GetCurrentBinaryDirectory() +
  3808. std::string("/WMAppManifest.xml");
  3809. std::string artifactDir =
  3810. this->LocalGenerator->GetTargetDirectory(this->GeneratorTarget);
  3811. ConvertToWindowsSlash(artifactDir);
  3812. std::string artifactDirXML = cmVS10EscapeXML(artifactDir);
  3813. std::string targetNameXML =
  3814. cmVS10EscapeXML(this->GeneratorTarget->GetName());
  3815. cmGeneratedFileStream fout(manifestFile.c_str());
  3816. fout.SetCopyIfDifferent(true);
  3817. /* clang-format off */
  3818. fout <<
  3819. "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n"
  3820. "<Deployment"
  3821. " xmlns=\"http://schemas.microsoft.com/windowsphone/2012/deployment\""
  3822. " AppPlatformVersion=\"8.0\">\n"
  3823. "\t<DefaultLanguage xmlns=\"\" code=\"en-US\"/>\n"
  3824. "\t<App xmlns=\"\" ProductID=\"{" << this->GUID << "}\""
  3825. " Title=\"CMake Test Program\" RuntimeType=\"Modern Native\""
  3826. " Version=\"1.0.0.0\" Genre=\"apps.normal\" Author=\"CMake\""
  3827. " Description=\"Default CMake App\" Publisher=\"CMake\""
  3828. " PublisherID=\"{" << this->GUID << "}\">\n"
  3829. "\t\t<IconPath IsRelative=\"true\" IsResource=\"false\">"
  3830. << artifactDirXML << "\\ApplicationIcon.png</IconPath>\n"
  3831. "\t\t<Capabilities/>\n"
  3832. "\t\t<Tasks>\n"
  3833. "\t\t\t<DefaultTask Name=\"_default\""
  3834. " ImagePath=\"" << targetNameXML << ".exe\" ImageParams=\"\" />\n"
  3835. "\t\t</Tasks>\n"
  3836. "\t\t<Tokens>\n"
  3837. "\t\t\t<PrimaryToken TokenID=\"" << targetNameXML << "Token\""
  3838. " TaskName=\"_default\">\n"
  3839. "\t\t\t\t<TemplateFlip>\n"
  3840. "\t\t\t\t\t<SmallImageURI IsRelative=\"true\" IsResource=\"false\">"
  3841. << artifactDirXML << "\\SmallLogo.png</SmallImageURI>\n"
  3842. "\t\t\t\t\t<Count>0</Count>\n"
  3843. "\t\t\t\t\t<BackgroundImageURI IsRelative=\"true\" IsResource=\"false\">"
  3844. << artifactDirXML << "\\Logo.png</BackgroundImageURI>\n"
  3845. "\t\t\t\t</TemplateFlip>\n"
  3846. "\t\t\t</PrimaryToken>\n"
  3847. "\t\t</Tokens>\n"
  3848. "\t\t<ScreenResolutions>\n"
  3849. "\t\t\t<ScreenResolution Name=\"ID_RESOLUTION_WVGA\" />\n"
  3850. "\t\t</ScreenResolutions>\n"
  3851. "\t</App>\n"
  3852. "</Deployment>\n";
  3853. /* clang-format on */
  3854. std::string sourceFile = this->ConvertPath(manifestFile, false);
  3855. ConvertToWindowsSlash(sourceFile);
  3856. {
  3857. Elem e2(e1, "Xml");
  3858. e2.Attribute("Include", sourceFile);
  3859. e2.Element("SubType", "Designer");
  3860. }
  3861. this->AddedFiles.push_back(sourceFile);
  3862. std::string smallLogo = this->DefaultArtifactDir + "/SmallLogo.png";
  3863. cmSystemTools::CopyAFile(templateFolder + "/SmallLogo.png", smallLogo,
  3864. false);
  3865. ConvertToWindowsSlash(smallLogo);
  3866. Elem(e1, "Image").Attribute("Include", smallLogo);
  3867. this->AddedFiles.push_back(smallLogo);
  3868. std::string logo = this->DefaultArtifactDir + "/Logo.png";
  3869. cmSystemTools::CopyAFile(templateFolder + "/Logo.png", logo, false);
  3870. ConvertToWindowsSlash(logo);
  3871. Elem(e1, "Image").Attribute("Include", logo);
  3872. this->AddedFiles.push_back(logo);
  3873. std::string applicationIcon =
  3874. this->DefaultArtifactDir + "/ApplicationIcon.png";
  3875. cmSystemTools::CopyAFile(templateFolder + "/ApplicationIcon.png",
  3876. applicationIcon, false);
  3877. ConvertToWindowsSlash(applicationIcon);
  3878. Elem(e1, "Image").Attribute("Include", applicationIcon);
  3879. this->AddedFiles.push_back(applicationIcon);
  3880. }
  3881. void cmVisualStudio10TargetGenerator::WriteMissingFilesWP81(Elem& e1)
  3882. {
  3883. std::string manifestFile =
  3884. this->DefaultArtifactDir + "/package.appxManifest";
  3885. std::string artifactDir =
  3886. this->LocalGenerator->GetTargetDirectory(this->GeneratorTarget);
  3887. ConvertToWindowsSlash(artifactDir);
  3888. std::string artifactDirXML = cmVS10EscapeXML(artifactDir);
  3889. std::string targetNameXML =
  3890. cmVS10EscapeXML(this->GeneratorTarget->GetName());
  3891. cmGeneratedFileStream fout(manifestFile.c_str());
  3892. fout.SetCopyIfDifferent(true);
  3893. /* clang-format off */
  3894. fout <<
  3895. "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n"
  3896. "<Package xmlns=\"http://schemas.microsoft.com/appx/2010/manifest\""
  3897. " xmlns:m2=\"http://schemas.microsoft.com/appx/2013/manifest\""
  3898. " xmlns:mp=\"http://schemas.microsoft.com/appx/2014/phone/manifest\">\n"
  3899. "\t<Identity Name=\"" << this->GUID << "\" Publisher=\"CN=CMake\""
  3900. " Version=\"1.0.0.0\" />\n"
  3901. "\t<mp:PhoneIdentity PhoneProductId=\"" << this->GUID << "\""
  3902. " PhonePublisherId=\"00000000-0000-0000-0000-000000000000\"/>\n"
  3903. "\t<Properties>\n"
  3904. "\t\t<DisplayName>" << targetNameXML << "</DisplayName>\n"
  3905. "\t\t<PublisherDisplayName>CMake</PublisherDisplayName>\n"
  3906. "\t\t<Logo>" << artifactDirXML << "\\StoreLogo.png</Logo>\n"
  3907. "\t</Properties>\n"
  3908. "\t<Prerequisites>\n"
  3909. "\t\t<OSMinVersion>6.3.1</OSMinVersion>\n"
  3910. "\t\t<OSMaxVersionTested>6.3.1</OSMaxVersionTested>\n"
  3911. "\t</Prerequisites>\n"
  3912. "\t<Resources>\n"
  3913. "\t\t<Resource Language=\"x-generate\" />\n"
  3914. "\t</Resources>\n"
  3915. "\t<Applications>\n"
  3916. "\t\t<Application Id=\"App\""
  3917. " Executable=\"" << targetNameXML << ".exe\""
  3918. " EntryPoint=\"" << targetNameXML << ".App\">\n"
  3919. "\t\t\t<m2:VisualElements\n"
  3920. "\t\t\t\tDisplayName=\"" << targetNameXML << "\"\n"
  3921. "\t\t\t\tDescription=\"" << targetNameXML << "\"\n"
  3922. "\t\t\t\tBackgroundColor=\"#336699\"\n"
  3923. "\t\t\t\tForegroundText=\"light\"\n"
  3924. "\t\t\t\tSquare150x150Logo=\"" << artifactDirXML << "\\Logo.png\"\n"
  3925. "\t\t\t\tSquare30x30Logo=\"" << artifactDirXML << "\\SmallLogo.png\">\n"
  3926. "\t\t\t\t<m2:DefaultTile ShortName=\"" << targetNameXML << "\">\n"
  3927. "\t\t\t\t\t<m2:ShowNameOnTiles>\n"
  3928. "\t\t\t\t\t\t<m2:ShowOn Tile=\"square150x150Logo\" />\n"
  3929. "\t\t\t\t\t</m2:ShowNameOnTiles>\n"
  3930. "\t\t\t\t</m2:DefaultTile>\n"
  3931. "\t\t\t\t<m2:SplashScreen"
  3932. " Image=\"" << artifactDirXML << "\\SplashScreen.png\" />\n"
  3933. "\t\t\t</m2:VisualElements>\n"
  3934. "\t\t</Application>\n"
  3935. "\t</Applications>\n"
  3936. "</Package>\n";
  3937. /* clang-format on */
  3938. this->WriteCommonMissingFiles(e1, manifestFile);
  3939. }
  3940. void cmVisualStudio10TargetGenerator::WriteMissingFilesWS80(Elem& e1)
  3941. {
  3942. std::string manifestFile =
  3943. this->DefaultArtifactDir + "/package.appxManifest";
  3944. std::string artifactDir =
  3945. this->LocalGenerator->GetTargetDirectory(this->GeneratorTarget);
  3946. ConvertToWindowsSlash(artifactDir);
  3947. std::string artifactDirXML = cmVS10EscapeXML(artifactDir);
  3948. std::string targetNameXML =
  3949. cmVS10EscapeXML(this->GeneratorTarget->GetName());
  3950. cmGeneratedFileStream fout(manifestFile.c_str());
  3951. fout.SetCopyIfDifferent(true);
  3952. /* clang-format off */
  3953. fout <<
  3954. "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n"
  3955. "<Package xmlns=\"http://schemas.microsoft.com/appx/2010/manifest\">\n"
  3956. "\t<Identity Name=\"" << this->GUID << "\" Publisher=\"CN=CMake\""
  3957. " Version=\"1.0.0.0\" />\n"
  3958. "\t<Properties>\n"
  3959. "\t\t<DisplayName>" << targetNameXML << "</DisplayName>\n"
  3960. "\t\t<PublisherDisplayName>CMake</PublisherDisplayName>\n"
  3961. "\t\t<Logo>" << artifactDirXML << "\\StoreLogo.png</Logo>\n"
  3962. "\t</Properties>\n"
  3963. "\t<Prerequisites>\n"
  3964. "\t\t<OSMinVersion>6.2.1</OSMinVersion>\n"
  3965. "\t\t<OSMaxVersionTested>6.2.1</OSMaxVersionTested>\n"
  3966. "\t</Prerequisites>\n"
  3967. "\t<Resources>\n"
  3968. "\t\t<Resource Language=\"x-generate\" />\n"
  3969. "\t</Resources>\n"
  3970. "\t<Applications>\n"
  3971. "\t\t<Application Id=\"App\""
  3972. " Executable=\"" << targetNameXML << ".exe\""
  3973. " EntryPoint=\"" << targetNameXML << ".App\">\n"
  3974. "\t\t\t<VisualElements"
  3975. " DisplayName=\"" << targetNameXML << "\""
  3976. " Description=\"" << targetNameXML << "\""
  3977. " BackgroundColor=\"#336699\" ForegroundText=\"light\""
  3978. " Logo=\"" << artifactDirXML << "\\Logo.png\""
  3979. " SmallLogo=\"" << artifactDirXML << "\\SmallLogo.png\">\n"
  3980. "\t\t\t\t<DefaultTile ShowName=\"allLogos\""
  3981. " ShortName=\"" << targetNameXML << "\" />\n"
  3982. "\t\t\t\t<SplashScreen"
  3983. " Image=\"" << artifactDirXML << "\\SplashScreen.png\" />\n"
  3984. "\t\t\t</VisualElements>\n"
  3985. "\t\t</Application>\n"
  3986. "\t</Applications>\n"
  3987. "</Package>\n";
  3988. /* clang-format on */
  3989. this->WriteCommonMissingFiles(e1, manifestFile);
  3990. }
  3991. void cmVisualStudio10TargetGenerator::WriteMissingFilesWS81(Elem& e1)
  3992. {
  3993. std::string manifestFile =
  3994. this->DefaultArtifactDir + "/package.appxManifest";
  3995. std::string artifactDir =
  3996. this->LocalGenerator->GetTargetDirectory(this->GeneratorTarget);
  3997. ConvertToWindowsSlash(artifactDir);
  3998. std::string artifactDirXML = cmVS10EscapeXML(artifactDir);
  3999. std::string targetNameXML =
  4000. cmVS10EscapeXML(this->GeneratorTarget->GetName());
  4001. cmGeneratedFileStream fout(manifestFile.c_str());
  4002. fout.SetCopyIfDifferent(true);
  4003. /* clang-format off */
  4004. fout <<
  4005. "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n"
  4006. "<Package xmlns=\"http://schemas.microsoft.com/appx/2010/manifest\""
  4007. " xmlns:m2=\"http://schemas.microsoft.com/appx/2013/manifest\">\n"
  4008. "\t<Identity Name=\"" << this->GUID << "\" Publisher=\"CN=CMake\""
  4009. " Version=\"1.0.0.0\" />\n"
  4010. "\t<Properties>\n"
  4011. "\t\t<DisplayName>" << targetNameXML << "</DisplayName>\n"
  4012. "\t\t<PublisherDisplayName>CMake</PublisherDisplayName>\n"
  4013. "\t\t<Logo>" << artifactDirXML << "\\StoreLogo.png</Logo>\n"
  4014. "\t</Properties>\n"
  4015. "\t<Prerequisites>\n"
  4016. "\t\t<OSMinVersion>6.3</OSMinVersion>\n"
  4017. "\t\t<OSMaxVersionTested>6.3</OSMaxVersionTested>\n"
  4018. "\t</Prerequisites>\n"
  4019. "\t<Resources>\n"
  4020. "\t\t<Resource Language=\"x-generate\" />\n"
  4021. "\t</Resources>\n"
  4022. "\t<Applications>\n"
  4023. "\t\t<Application Id=\"App\""
  4024. " Executable=\"" << targetNameXML << ".exe\""
  4025. " EntryPoint=\"" << targetNameXML << ".App\">\n"
  4026. "\t\t\t<m2:VisualElements\n"
  4027. "\t\t\t\tDisplayName=\"" << targetNameXML << "\"\n"
  4028. "\t\t\t\tDescription=\"" << targetNameXML << "\"\n"
  4029. "\t\t\t\tBackgroundColor=\"#336699\"\n"
  4030. "\t\t\t\tForegroundText=\"light\"\n"
  4031. "\t\t\t\tSquare150x150Logo=\"" << artifactDirXML << "\\Logo.png\"\n"
  4032. "\t\t\t\tSquare30x30Logo=\"" << artifactDirXML << "\\SmallLogo.png\">\n"
  4033. "\t\t\t\t<m2:DefaultTile ShortName=\"" << targetNameXML << "\">\n"
  4034. "\t\t\t\t\t<m2:ShowNameOnTiles>\n"
  4035. "\t\t\t\t\t\t<m2:ShowOn Tile=\"square150x150Logo\" />\n"
  4036. "\t\t\t\t\t</m2:ShowNameOnTiles>\n"
  4037. "\t\t\t\t</m2:DefaultTile>\n"
  4038. "\t\t\t\t<m2:SplashScreen"
  4039. " Image=\"" << artifactDirXML << "\\SplashScreen.png\" />\n"
  4040. "\t\t\t</m2:VisualElements>\n"
  4041. "\t\t</Application>\n"
  4042. "\t</Applications>\n"
  4043. "</Package>\n";
  4044. /* clang-format on */
  4045. this->WriteCommonMissingFiles(e1, manifestFile);
  4046. }
  4047. void cmVisualStudio10TargetGenerator::WriteMissingFilesWS10_0(Elem& e1)
  4048. {
  4049. std::string manifestFile =
  4050. this->DefaultArtifactDir + "/package.appxManifest";
  4051. std::string artifactDir =
  4052. this->LocalGenerator->GetTargetDirectory(this->GeneratorTarget);
  4053. ConvertToWindowsSlash(artifactDir);
  4054. std::string artifactDirXML = cmVS10EscapeXML(artifactDir);
  4055. std::string targetNameXML =
  4056. cmVS10EscapeXML(this->GeneratorTarget->GetName());
  4057. cmGeneratedFileStream fout(manifestFile.c_str());
  4058. fout.SetCopyIfDifferent(true);
  4059. /* clang-format off */
  4060. fout <<
  4061. "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n"
  4062. "<Package\n\t"
  4063. "xmlns=\"http://schemas.microsoft.com/appx/manifest/foundation/windows10\""
  4064. "\txmlns:mp=\"http://schemas.microsoft.com/appx/2014/phone/manifest\"\n"
  4065. "\txmlns:uap=\"http://schemas.microsoft.com/appx/manifest/uap/windows10\""
  4066. "\n\tIgnorableNamespaces=\"uap mp\">\n\n"
  4067. "\t<Identity Name=\"" << this->GUID << "\" Publisher=\"CN=CMake\""
  4068. " Version=\"1.0.0.0\" />\n"
  4069. "\t<mp:PhoneIdentity PhoneProductId=\"" << this->GUID <<
  4070. "\" PhonePublisherId=\"00000000-0000-0000-0000-000000000000\"/>\n"
  4071. "\t<Properties>\n"
  4072. "\t\t<DisplayName>" << targetNameXML << "</DisplayName>\n"
  4073. "\t\t<PublisherDisplayName>CMake</PublisherDisplayName>\n"
  4074. "\t\t<Logo>" << artifactDirXML << "\\StoreLogo.png</Logo>\n"
  4075. "\t</Properties>\n"
  4076. "\t<Dependencies>\n"
  4077. "\t\t<TargetDeviceFamily Name=\"Windows.Universal\" "
  4078. "MinVersion=\"10.0.0.0\" MaxVersionTested=\"10.0.0.0\" />\n"
  4079. "\t</Dependencies>\n"
  4080. "\t<Resources>\n"
  4081. "\t\t<Resource Language=\"x-generate\" />\n"
  4082. "\t</Resources>\n"
  4083. "\t<Applications>\n"
  4084. "\t\t<Application Id=\"App\""
  4085. " Executable=\"" << targetNameXML << ".exe\""
  4086. " EntryPoint=\"" << targetNameXML << ".App\">\n"
  4087. "\t\t\t<uap:VisualElements\n"
  4088. "\t\t\t\tDisplayName=\"" << targetNameXML << "\"\n"
  4089. "\t\t\t\tDescription=\"" << targetNameXML << "\"\n"
  4090. "\t\t\t\tBackgroundColor=\"#336699\"\n"
  4091. "\t\t\t\tSquare150x150Logo=\"" << artifactDirXML << "\\Logo.png\"\n"
  4092. "\t\t\t\tSquare44x44Logo=\"" << artifactDirXML <<
  4093. "\\SmallLogo44x44.png\">\n"
  4094. "\t\t\t\t<uap:SplashScreen"
  4095. " Image=\"" << artifactDirXML << "\\SplashScreen.png\" />\n"
  4096. "\t\t\t</uap:VisualElements>\n"
  4097. "\t\t</Application>\n"
  4098. "\t</Applications>\n"
  4099. "</Package>\n";
  4100. /* clang-format on */
  4101. this->WriteCommonMissingFiles(e1, manifestFile);
  4102. }
  4103. void cmVisualStudio10TargetGenerator::WriteCommonMissingFiles(
  4104. Elem& e1, const std::string& manifestFile)
  4105. {
  4106. std::string templateFolder =
  4107. cmSystemTools::GetCMakeRoot() + "/Templates/Windows";
  4108. std::string sourceFile = this->ConvertPath(manifestFile, false);
  4109. ConvertToWindowsSlash(sourceFile);
  4110. {
  4111. Elem e2(e1, "AppxManifest");
  4112. e2.Attribute("Include", sourceFile);
  4113. e2.Element("SubType", "Designer");
  4114. }
  4115. this->AddedFiles.push_back(sourceFile);
  4116. std::string smallLogo = this->DefaultArtifactDir + "/SmallLogo.png";
  4117. cmSystemTools::CopyAFile(templateFolder + "/SmallLogo.png", smallLogo,
  4118. false);
  4119. ConvertToWindowsSlash(smallLogo);
  4120. Elem(e1, "Image").Attribute("Include", smallLogo);
  4121. this->AddedFiles.push_back(smallLogo);
  4122. std::string smallLogo44 = this->DefaultArtifactDir + "/SmallLogo44x44.png";
  4123. cmSystemTools::CopyAFile(templateFolder + "/SmallLogo44x44.png", smallLogo44,
  4124. false);
  4125. ConvertToWindowsSlash(smallLogo44);
  4126. Elem(e1, "Image").Attribute("Include", smallLogo44);
  4127. this->AddedFiles.push_back(smallLogo44);
  4128. std::string logo = this->DefaultArtifactDir + "/Logo.png";
  4129. cmSystemTools::CopyAFile(templateFolder + "/Logo.png", logo, false);
  4130. ConvertToWindowsSlash(logo);
  4131. Elem(e1, "Image").Attribute("Include", logo);
  4132. this->AddedFiles.push_back(logo);
  4133. std::string storeLogo = this->DefaultArtifactDir + "/StoreLogo.png";
  4134. cmSystemTools::CopyAFile(templateFolder + "/StoreLogo.png", storeLogo,
  4135. false);
  4136. ConvertToWindowsSlash(storeLogo);
  4137. Elem(e1, "Image").Attribute("Include", storeLogo);
  4138. this->AddedFiles.push_back(storeLogo);
  4139. std::string splashScreen = this->DefaultArtifactDir + "/SplashScreen.png";
  4140. cmSystemTools::CopyAFile(templateFolder + "/SplashScreen.png", splashScreen,
  4141. false);
  4142. ConvertToWindowsSlash(splashScreen);
  4143. Elem(e1, "Image").Attribute("Include", splashScreen);
  4144. this->AddedFiles.push_back(splashScreen);
  4145. if (this->AddedDefaultCertificate) {
  4146. // This file has already been added to the build so don't copy it
  4147. std::string keyFile =
  4148. this->DefaultArtifactDir + "/Windows_TemporaryKey.pfx";
  4149. ConvertToWindowsSlash(keyFile);
  4150. Elem(e1, "None").Attribute("Include", keyFile);
  4151. }
  4152. }
  4153. bool cmVisualStudio10TargetGenerator::ForceOld(const std::string& source) const
  4154. {
  4155. HANDLE h =
  4156. CreateFileW(cmSystemTools::ConvertToWindowsExtendedPath(source).c_str(),
  4157. FILE_WRITE_ATTRIBUTES, FILE_SHARE_WRITE, 0, OPEN_EXISTING,
  4158. FILE_FLAG_BACKUP_SEMANTICS, 0);
  4159. if (!h) {
  4160. return false;
  4161. }
  4162. FILETIME const ftime_20010101 = { 3365781504u, 29389701u };
  4163. if (!SetFileTime(h, &ftime_20010101, &ftime_20010101, &ftime_20010101)) {
  4164. CloseHandle(h);
  4165. return false;
  4166. }
  4167. CloseHandle(h);
  4168. return true;
  4169. }
  4170. void cmVisualStudio10TargetGenerator::GetCSharpSourceProperties(
  4171. cmSourceFile const* sf, std::map<std::string, std::string>& tags)
  4172. {
  4173. if (this->ProjectType == csproj) {
  4174. const cmPropertyMap& props = sf->GetProperties();
  4175. for (auto const& p : props) {
  4176. static const std::string propNamePrefix = "VS_CSHARP_";
  4177. if (p.first.find(propNamePrefix) == 0) {
  4178. std::string tagName = p.first.substr(propNamePrefix.length());
  4179. if (!tagName.empty()) {
  4180. const std::string val = props.GetPropertyValue(p.first);
  4181. if (!val.empty()) {
  4182. tags[tagName] = val;
  4183. } else {
  4184. tags.erase(tagName);
  4185. }
  4186. }
  4187. }
  4188. }
  4189. }
  4190. }
  4191. void cmVisualStudio10TargetGenerator::WriteCSharpSourceProperties(
  4192. Elem& e2, const std::map<std::string, std::string>& tags)
  4193. {
  4194. if (!tags.empty()) {
  4195. for (const auto& i : tags) {
  4196. e2.Element(i.first.c_str(), i.second);
  4197. }
  4198. }
  4199. }
  4200. void cmVisualStudio10TargetGenerator::GetCSharpSourceLink(
  4201. cmSourceFile const* sf, std::string& link)
  4202. {
  4203. std::string const& sourceFilePath = sf->GetFullPath();
  4204. std::string const& binaryDir = LocalGenerator->GetCurrentBinaryDirectory();
  4205. if (!cmSystemTools::IsSubDirectory(sourceFilePath, binaryDir)) {
  4206. const std::string& stripFromPath =
  4207. this->Makefile->GetCurrentSourceDirectory();
  4208. if (sourceFilePath.find(stripFromPath) == 0) {
  4209. if (const char* l = sf->GetProperty("VS_CSHARP_Link")) {
  4210. link = l;
  4211. } else {
  4212. link = sourceFilePath.substr(stripFromPath.length() + 1);
  4213. }
  4214. ConvertToWindowsSlash(link);
  4215. }
  4216. }
  4217. }
  4218. std::string cmVisualStudio10TargetGenerator::GetCMakeFilePath(
  4219. const char* relativeFilePath) const
  4220. {
  4221. // Always search in the standard modules location.
  4222. std::string path = cmSystemTools::GetCMakeRoot() + "/";
  4223. path += relativeFilePath;
  4224. ConvertToWindowsSlash(path);
  4225. return path;
  4226. }