cmMakefile.h 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748
  1. /*=========================================================================
  2. Program: CMake - Cross-Platform Makefile Generator
  3. Module: $RCSfile$
  4. Language: C++
  5. Date: $Date$
  6. Version: $Revision$
  7. Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
  8. See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
  9. This software is distributed WITHOUT ANY WARRANTY; without even
  10. the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  11. PURPOSE. See the above copyright notices for more information.
  12. =========================================================================*/
  13. #ifndef cmMakefile_h
  14. #define cmMakefile_h
  15. #include "cmData.h"
  16. #include "cmSystemTools.h"
  17. #include "cmSourceGroup.h"
  18. #include "cmTarget.h"
  19. #include "cmListFileCache.h"
  20. #include "cmCacheManager.h"
  21. #include <cmsys/RegularExpression.hxx>
  22. class cmFunctionBlocker;
  23. class cmCommand;
  24. class cmLocalGenerator;
  25. class cmMakeDepend;
  26. class cmSourceFile;
  27. class cmVariableWatch;
  28. class cmake;
  29. /** \class cmMakefile
  30. * \brief Process the input CMakeLists.txt file.
  31. *
  32. * Process and store into memory the input CMakeLists.txt file.
  33. * Each CMakeLists.txt file is parsed and the commands found there
  34. * are added into the build process.
  35. */
  36. class cmMakefile
  37. {
  38. public:
  39. /**
  40. * Return major and minor version numbers for cmake.
  41. */
  42. static unsigned int GetMajorVersion() { return CMake_VERSION_MAJOR; }
  43. static unsigned int GetMinorVersion() { return CMake_VERSION_MINOR; }
  44. static const char* GetReleaseVersion();
  45. /**
  46. * Return the major and minor version of the cmake that
  47. * was used to write the currently loaded cache, note
  48. * this method will not work before the cache is loaded.
  49. */
  50. unsigned int GetCacheMajorVersion();
  51. unsigned int GetCacheMinorVersion();
  52. /**
  53. * Construct an empty makefile.
  54. */
  55. cmMakefile();
  56. /**
  57. * Destructor.
  58. */
  59. ~cmMakefile();
  60. /**
  61. * Read and parse a CMakeLists.txt file.
  62. */
  63. bool ReadListFile(const char* listfile, const char* external= 0);
  64. /**
  65. * Add a function blocker to this makefile
  66. */
  67. void AddFunctionBlocker(cmFunctionBlocker *fb)
  68. { m_FunctionBlockers.push_back(fb);}
  69. void RemoveFunctionBlocker(cmFunctionBlocker *fb)
  70. { m_FunctionBlockers.remove(fb);}
  71. void RemoveFunctionBlocker(const cmListFileFunction& lff);
  72. /**
  73. * Add file to the written file list. These file should not be in the list
  74. * of dependencies because they cause infinite loops.
  75. */
  76. void AddWrittenFile(const char* file);
  77. bool HasWrittenFile(const char* file);
  78. /**
  79. * Check if there are any infinite loops
  80. */
  81. bool CheckInfiniteLoops();
  82. /**
  83. * Try running cmake and building a file. This is used for dynalically
  84. * loaded commands, not as part of the usual build process.
  85. */
  86. int TryCompile(const char *srcdir, const char *bindir,
  87. const char *projectName, const char *targetName,
  88. const std::vector<std::string> *cmakeArgs,
  89. std::string *output);
  90. /**
  91. * Specify the makefile generator. This is platform/compiler
  92. * dependent, although the interface is through a generic
  93. * superclass.
  94. */
  95. void SetLocalGenerator(cmLocalGenerator*);
  96. ///! Get the current makefile generator.
  97. cmLocalGenerator* GetLocalGenerator()
  98. { return m_LocalGenerator;}
  99. /**
  100. * Perform FinalPass, Library dependency analysis etc before output of the
  101. * makefile.
  102. */
  103. void ConfigureFinalPass();
  104. /**
  105. * run the final pass on all commands.
  106. */
  107. void FinalPass();
  108. /**
  109. * Print the object state to std::cout.
  110. */
  111. void Print() const;
  112. /** Add a custom command to the build. */
  113. void AddCustomCommandToTarget(const char* target,
  114. const std::vector<std::string>& depends,
  115. const cmCustomCommandLines& commandLines,
  116. cmTarget::CustomCommandType type,
  117. const char* comment);
  118. void AddCustomCommandToOutput(const char* output,
  119. const std::vector<std::string>& depends,
  120. const char* main_dependency,
  121. const cmCustomCommandLines& commandLines,
  122. const char* comment,
  123. bool replace = false);
  124. void AddCustomCommandOldStyle(const char* target,
  125. const std::vector<std::string>& outputs,
  126. const std::vector<std::string>& depends,
  127. const char* source,
  128. const cmCustomCommandLines& commandLines,
  129. const char* comment);
  130. /**
  131. * Add a define flag to the build.
  132. */
  133. void AddDefineFlag(const char* definition);
  134. void RemoveDefineFlag(const char* definition);
  135. /**
  136. * Add an executable to the build.
  137. */
  138. cmTarget* AddExecutable(const char *exename,
  139. const std::vector<std::string> &srcs);
  140. /**
  141. * Add a utility to the build. A utiltity target is a command that
  142. * is run every time the target is built.
  143. */
  144. void AddUtilityCommand(const char* utilityName, bool all,
  145. const char* output,
  146. const std::vector<std::string>& depends,
  147. const char* command,
  148. const char* arg1=0,
  149. const char* arg2=0,
  150. const char* arg3=0);
  151. void AddUtilityCommand(const char* utilityName, bool all,
  152. const char* output,
  153. const std::vector<std::string>& depends,
  154. const cmCustomCommandLines& commandLines);
  155. /**
  156. * Add a link library to the build.
  157. */
  158. void AddLinkLibrary(const char*);
  159. void AddLinkLibrary(const char*, cmTarget::LinkLibraryType type);
  160. void AddLinkLibraryForTarget(const char *tgt, const char*,
  161. cmTarget::LinkLibraryType type);
  162. void AddLinkDirectoryForTarget(const char *tgt, const char* d);
  163. /**
  164. * Add a link directory to the build.
  165. */
  166. void AddLinkDirectory(const char*);
  167. /**
  168. * Get the list of link directories
  169. */
  170. std::vector<std::string>& GetLinkDirectories()
  171. {
  172. return m_LinkDirectories;
  173. }
  174. const std::vector<std::string>& GetLinkDirectories() const
  175. {
  176. return m_LinkDirectories;
  177. }
  178. void SetLinkDirectories(const std::vector<std::string>& vec)
  179. {
  180. m_LinkDirectories = vec;
  181. }
  182. /**
  183. * Add a subdirectory to the build.
  184. */
  185. void AddSubDirectory(const char*, bool includeTopLevel=true, bool preorder = false);
  186. /**
  187. * Add an include directory to the build.
  188. */
  189. void AddIncludeDirectory(const char*, bool before = false);
  190. /**
  191. * Find a library (as in cmSystemTools) but add in compiler specific paths
  192. */
  193. std::string FindLibrary(const char* name,
  194. const std::vector<std::string>& path);
  195. /**
  196. * Add a variable definition to the build. This variable
  197. * can be used in CMake to refer to lists, directories, etc.
  198. */
  199. void AddDefinition(const char* name, const char* value);
  200. ///! Add a definition to this makefile and the global cmake cache.
  201. void AddCacheDefinition(const char* name, const char* value,
  202. const char* doc,
  203. cmCacheManager::CacheEntryType type);
  204. /**
  205. * Add bool variable definition to the build.
  206. */
  207. void AddDefinition(const char* name, bool);
  208. ///! Add a definition to this makefile and the global cmake cache.
  209. void AddCacheDefinition(const char* name, bool, const char* doc);
  210. /**
  211. * Remove a variable definition from the build. This is not valid
  212. * for cache entries, and will only affect the current makefile.
  213. */
  214. void RemoveDefinition(const char* name);
  215. /**
  216. * Specify the name of the project for this build.
  217. */
  218. void SetProjectName(const char*);
  219. /**
  220. * Get the name of the project for this build.
  221. */
  222. const char* GetProjectName()
  223. {
  224. return m_ProjectName.c_str();
  225. }
  226. std::vector<std::string> const& GetParentProjects()
  227. {
  228. return m_ParentProjects;
  229. }
  230. /**
  231. * Set the name of the library.
  232. */
  233. void AddLibrary(const char *libname, int shared,
  234. const std::vector<std::string> &srcs);
  235. /**
  236. * Add a source group for consideration when adding a new source.
  237. */
  238. void AddSourceGroup(const char* name, const char* regex=0);
  239. /**
  240. * Add an auxiliary directory to the build.
  241. */
  242. void AddExtraDirectory(const char* dir);
  243. /**
  244. * Add an auxiliary directory to the build.
  245. */
  246. void MakeStartDirectoriesCurrent()
  247. {
  248. m_cmCurrentDirectory = m_cmStartDirectory;
  249. m_CurrentOutputDirectory = m_StartOutputDirectory;
  250. this->AddDefinition("CMAKE_CURRENT_SOURCE_DIR", m_cmCurrentDirectory.c_str());
  251. this->AddDefinition("CMAKE_CURRENT_BINARY_DIR", m_CurrentOutputDirectory.c_str());
  252. }
  253. //@{
  254. /**
  255. * Set/Get the home directory (or output directory) in the project. The
  256. * home directory is the top directory of the project. It is where
  257. * CMakeSetup or configure was run. Remember that CMake processes
  258. * CMakeLists files by recursing up the tree starting at the StartDirectory
  259. * and going up until it reaches the HomeDirectory.
  260. */
  261. void SetHomeDirectory(const char* dir);
  262. const char* GetHomeDirectory() const
  263. {
  264. return m_cmHomeDirectory.c_str();
  265. }
  266. void SetHomeOutputDirectory(const char* lib);
  267. const char* GetHomeOutputDirectory() const
  268. {
  269. return m_HomeOutputDirectory.c_str();
  270. }
  271. //@}
  272. //@{
  273. /**
  274. * Set/Get the start directory (or output directory). The start directory
  275. * is the directory of the CMakeLists.txt file that started the current
  276. * round of processing. Remember that CMake processes CMakeLists files by
  277. * recursing up the tree starting at the StartDirectory and going up until
  278. * it reaches the HomeDirectory.
  279. */
  280. void SetStartDirectory(const char* dir)
  281. {
  282. m_cmStartDirectory = dir;
  283. cmSystemTools::ConvertToUnixSlashes(m_cmStartDirectory);
  284. }
  285. const char* GetStartDirectory() const
  286. {
  287. return m_cmStartDirectory.c_str();
  288. }
  289. void SetStartOutputDirectory(const char* lib)
  290. {
  291. m_StartOutputDirectory = lib;
  292. cmSystemTools::ConvertToUnixSlashes(m_StartOutputDirectory);
  293. cmSystemTools::MakeDirectory(m_StartOutputDirectory.c_str());
  294. }
  295. const char* GetStartOutputDirectory() const
  296. {
  297. return m_StartOutputDirectory.c_str();
  298. }
  299. //@}
  300. //@{
  301. /**
  302. * Set/Get the current directory (or output directory) in the project. The
  303. * current directory is the directory of the CMakeLists.txt file that is
  304. * currently being processed. Remember that CMake processes CMakeLists
  305. * files by recursing up the tree starting at the StartDirectory and going
  306. * up until it reaches the HomeDirectory.
  307. */
  308. void SetCurrentDirectory(const char* dir)
  309. {
  310. m_cmCurrentDirectory = dir;
  311. cmSystemTools::ConvertToUnixSlashes(m_cmCurrentDirectory);
  312. this->AddDefinition("CMAKE_CURRENT_SOURCE_DIR", m_cmCurrentDirectory.c_str());
  313. }
  314. const char* GetCurrentDirectory() const
  315. {
  316. return m_cmCurrentDirectory.c_str();
  317. }
  318. void SetCurrentOutputDirectory(const char* lib)
  319. {
  320. m_CurrentOutputDirectory = lib;
  321. cmSystemTools::ConvertToUnixSlashes(m_CurrentOutputDirectory);
  322. this->AddDefinition("CMAKE_CURRENT_BINARY_DIR", m_CurrentOutputDirectory.c_str());
  323. }
  324. const char* GetCurrentOutputDirectory() const
  325. {
  326. return m_CurrentOutputDirectory.c_str();
  327. }
  328. /* Get the current CMakeLists.txt file that is being processed. This
  329. * is just used in order to be able to 'branch' from one file to a second
  330. * transparently */
  331. const char* GetCurrentListFile() const
  332. {
  333. return m_cmCurrentListFile.c_str();
  334. }
  335. //@}
  336. /**
  337. * Set a regular expression that include files must match
  338. * in order to be considered as part of the depend information.
  339. */
  340. void SetIncludeRegularExpression(const char* regex)
  341. {
  342. m_IncludeFileRegularExpression = regex;
  343. }
  344. const char* GetIncludeRegularExpression()
  345. {
  346. return m_IncludeFileRegularExpression.c_str();
  347. }
  348. /**
  349. * Set a regular expression that include files that are not found
  350. * must match in order to be considered a problem.
  351. */
  352. void SetComplainRegularExpression(const char* regex)
  353. {
  354. m_ComplainFileRegularExpression = regex;
  355. }
  356. const char* GetComplainRegularExpression()
  357. {
  358. return m_ComplainFileRegularExpression.c_str();
  359. }
  360. /**
  361. * Get the list of targets
  362. */
  363. cmTargets &GetTargets() { return m_Targets; }
  364. const cmTargets &GetTargets() const { return m_Targets; }
  365. cmTarget* FindTarget(const char* name);
  366. /**
  367. * Get a list of the build subdirectories.
  368. */
  369. const std::vector<std::pair<cmStdString, bool> >& GetSubDirectories()
  370. {
  371. return m_SubDirectories;
  372. }
  373. /**
  374. * Get a list of include directories in the build.
  375. */
  376. std::vector<std::string>& GetIncludeDirectories()
  377. {
  378. return m_IncludeDirectories;
  379. }
  380. const std::vector<std::string>& GetIncludeDirectories() const
  381. {
  382. return m_IncludeDirectories;
  383. }
  384. void SetIncludeDirectories(const std::vector<std::string>& vec)
  385. {
  386. m_IncludeDirectories = vec;
  387. }
  388. /** Expand out any arguements in the vector that have ; separated
  389. * strings into multiple arguements. A new vector is created
  390. * containing the expanded versions of all arguments in argsIn.
  391. * This method differes from the one in cmSystemTools in that if
  392. * the CmakeLists file is version 1.2 or earlier it will check for
  393. * source lists being used without ${} around them
  394. */
  395. void ExpandSourceListArguments(std::vector<std::string> const& argsIn,
  396. std::vector<std::string>& argsOut,
  397. unsigned int startArgumentIndex);
  398. /** Get a cmSourceFile pointer for a given source name, if the name is
  399. * not found, then a null pointer is returned.
  400. */
  401. cmSourceFile* GetSource(const char* sourceName) const;
  402. ///! Add a new cmSourceFile to the list of sources for this makefile.
  403. cmSourceFile* AddSource(cmSourceFile const&);
  404. /** Get a cmSourceFile pointer for a given source name, if the name is
  405. * not found, then create the source file and return it. generated
  406. * indicates if it is a generated file, this is used in determining
  407. * how to create the source file instance e.g. name
  408. */
  409. cmSourceFile* GetOrCreateSource(const char* sourceName,
  410. bool generated = false);
  411. /**
  412. * Obtain a list of auxiliary source directories.
  413. */
  414. std::vector<std::string>& GetAuxSourceDirectories()
  415. {return m_AuxSourceDirectories;}
  416. //@{
  417. /**
  418. * Return a list of extensions associated with source and header
  419. * files
  420. */
  421. const std::vector<std::string>& GetSourceExtensions() const
  422. {return m_SourceFileExtensions;}
  423. const std::vector<std::string>& GetHeaderExtensions() const
  424. {return m_HeaderFileExtensions;}
  425. //@}
  426. /**
  427. * Given a variable name, return its value (as a string).
  428. * If the variable is not found in this makefile instance, the
  429. * cache is then queried.
  430. */
  431. const char* GetDefinition(const char*) const;
  432. const char* GetSafeDefinition(const char*) const;
  433. const char* GetRequiredDefinition(const char* name) const;
  434. /**
  435. * Get the list of all variables in the current space. If argument
  436. * cacheonly is specified and is greater than 0, then only cache
  437. * variables will be listed.
  438. */
  439. std::vector<std::string> GetDefinitions(int cacheonly=0) const;
  440. /** Test a boolean cache entry to see if it is true or false,
  441. * returns false if no entry defined.
  442. */
  443. bool IsOn(const char* name) const;
  444. /**
  445. * Get a list of preprocessor define flags.
  446. */
  447. const char* GetDefineFlags()
  448. {return m_DefineFlags.c_str();}
  449. /**
  450. * Get the vector of used command instances.
  451. */
  452. const std::vector<cmCommand*>& GetUsedCommands() const
  453. {return m_UsedCommands;}
  454. /**
  455. * Get the vector source groups.
  456. */
  457. const std::vector<cmSourceGroup>& GetSourceGroups() const
  458. { return m_SourceGroups; }
  459. /**
  460. * Get the source group
  461. */
  462. cmSourceGroup* GetSourceGroup(const char* name);
  463. /**
  464. * Get the vector of list files on which this makefile depends
  465. */
  466. const std::vector<std::string>& GetListFiles() const
  467. { return m_ListFiles; }
  468. ///! When the file changes cmake will be re-run from the build system.
  469. void AddCMakeDependFile(const char* file)
  470. { m_ListFiles.push_back(file);}
  471. /**
  472. * Expand all defined variables in the string.
  473. * Defined variables come from the m_Definitions map.
  474. * They are expanded with ${var} where var is the
  475. * entry in the m_Definitions map. Also @var@ is
  476. * expanded to match autoconf style expansions.
  477. */
  478. const char *ExpandVariablesInString(std::string& source) const;
  479. const char *ExpandVariablesInString(std::string& source, bool escapeQuotes,
  480. bool atOnly = false,
  481. const char* filename = 0,
  482. long line = -1) const;
  483. /**
  484. * Remove any remaining variables in the string. Anything with ${var} or
  485. * @var@ will be removed.
  486. */
  487. void RemoveVariablesInString(std::string& source, bool atOnly = false) const;
  488. /**
  489. * Expand variables in the makefiles ivars such as link directories etc
  490. */
  491. void ExpandVariables();
  492. /**
  493. * Replace variables and #cmakedefine lines in the given string.
  494. * See cmConfigureFileCommand for details.
  495. */
  496. void ConfigureString(const std::string& input, std::string& output,
  497. bool atOnly, bool escapeQuotes);
  498. /**
  499. * Copy file but change lines acording to ConfigureString
  500. */
  501. int ConfigureFile(const char* infile, const char* outfile,
  502. bool copyonly, bool atOnly, bool escapeQuotes);
  503. /**
  504. * find what source group this source is in
  505. */
  506. cmSourceGroup& FindSourceGroup(const char* source,
  507. std::vector<cmSourceGroup> &groups);
  508. void RegisterData(cmData*);
  509. void RegisterData(const char*, cmData*);
  510. cmData* LookupData(const char*) const;
  511. /**
  512. * Execute a single CMake command. Returns true if the command
  513. * succeeded or false if it failed.
  514. */
  515. bool ExecuteCommand(const cmListFileFunction& lff);
  516. /** Check if a command exists. */
  517. bool CommandExists(const char* name) const;
  518. /**
  519. * Add a command to this cmake instance
  520. */
  521. void AddCommand(cmCommand* );
  522. ///! Enable support for the named language, if null then all languages are enabled.
  523. void EnableLanguage(std::vector<std::string>const& languages);
  524. /**
  525. * Set/Get the name of the parent directories CMakeLists file
  526. * given a current CMakeLists file name
  527. */
  528. cmCacheManager *GetCacheManager() const;
  529. /**
  530. * Get the variable watch. This is used to determine when certain variables
  531. * are accessed.
  532. */
  533. #ifdef CMAKE_BUILD_WITH_CMAKE
  534. cmVariableWatch* GetVariableWatch() const;
  535. #endif
  536. //! Determine wether this is a local or global build.
  537. bool GetLocal() const;
  538. ///! Display progress or status message.
  539. void DisplayStatus(const char*, float);
  540. /**
  541. * Expand the given list file arguments into the full set after
  542. * variable replacement and list expansion.
  543. */
  544. void ExpandArguments(std::vector<cmListFileArgument> const& inArgs,
  545. std::vector<std::string>& outArgs);
  546. /**
  547. * Get the instance
  548. */
  549. cmake *GetCMakeInstance() const;
  550. /**
  551. * Get all the source files this makefile knows about
  552. */
  553. const std::vector<cmSourceFile*> &GetSourceFiles() const
  554. {return m_SourceFiles;}
  555. std::vector<cmSourceFile*> &GetSourceFiles() {return m_SourceFiles;}
  556. /**
  557. * Is there a source file that has the provided source file as an output?
  558. * if so then return it
  559. */
  560. cmSourceFile *GetSourceFileWithOutput(const char *outName);
  561. /**
  562. * Add a macro to the list of macros. The arguments should be name of the
  563. * macro and a documentation signature of it
  564. */
  565. void AddMacro(const char* name, const char* signature);
  566. /**
  567. * Get a list of macros as a ; separated string
  568. */
  569. void GetListOfMacros(std::string& macros);
  570. /**
  571. * Return a location of a file in cmake or custom modules directory
  572. */
  573. std::string GetModulesFile(const char* name);
  574. ///! Return true if the directory is preorder.
  575. bool IsDirectoryPreOrder(const char* dir);
  576. ///! Set/Get a property of this directory
  577. void SetProperty(const char *prop, const char *value);
  578. const char *GetProperty(const char *prop) const;
  579. bool GetPropertyAsBool(const char *prop) const;
  580. protected:
  581. // add link libraries and directories to the target
  582. void AddGlobalLinkInformation(const char* name, cmTarget& target);
  583. std::string m_Prefix;
  584. std::vector<std::string> m_AuxSourceDirectories; //
  585. std::string m_cmCurrentDirectory;
  586. std::string m_CurrentOutputDirectory;
  587. std::string m_cmStartDirectory;
  588. std::string m_StartOutputDirectory;
  589. std::string m_cmHomeDirectory;
  590. std::string m_HomeOutputDirectory;
  591. std::string m_cmCurrentListFile;
  592. std::string m_ProjectName; // project name
  593. std::vector<std::string> m_ParentProjects;
  594. // libraries, classes, and executables
  595. cmTargets m_Targets;
  596. std::vector<cmSourceFile*> m_SourceFiles;
  597. std::vector<std::pair<cmStdString, bool> > m_SubDirectories; // list of sub directories
  598. struct StringSet : public std::set<cmStdString>
  599. {
  600. };
  601. // The include and link-library paths. These may have order
  602. // dependency, so they must be vectors (not set).
  603. std::vector<std::string> m_IncludeDirectories;
  604. std::vector<std::string> m_LinkDirectories;
  605. std::vector<std::string> m_ListFiles; // list of command files loaded
  606. cmTarget::LinkLibraries m_LinkLibraries;
  607. std::string m_IncludeFileRegularExpression;
  608. std::string m_ComplainFileRegularExpression;
  609. std::vector<std::string> m_SourceFileExtensions;
  610. std::vector<std::string> m_HeaderFileExtensions;
  611. std::string m_DefineFlags;
  612. std::vector<cmSourceGroup> m_SourceGroups;
  613. typedef std::map<cmStdString, cmStdString> DefinitionMap;
  614. DefinitionMap m_Definitions;
  615. std::vector<cmCommand*> m_UsedCommands;
  616. cmLocalGenerator* m_LocalGenerator;
  617. bool IsFunctionBlocked(const cmListFileFunction& lff);
  618. private:
  619. /**
  620. * Get the name of the parent directories CMakeLists file
  621. * given a current CMakeLists file name
  622. */
  623. std::string GetParentListFileName(const char *listFileName);
  624. void ReadSources(std::ifstream& fin, bool t);
  625. friend class cmMakeDepend; // make depend needs direct access
  626. // to the m_Sources array
  627. void PrintStringVector(const char* s, const std::vector<std::pair<cmStdString, bool> >& v) const;
  628. void PrintStringVector(const char* s, const std::vector<std::string>& v) const;
  629. void AddDefaultDefinitions();
  630. std::list<cmFunctionBlocker *> m_FunctionBlockers;
  631. typedef std::map<cmStdString, cmData*> DataMap;
  632. DataMap m_DataMap;
  633. bool m_Inheriting;
  634. typedef std::map<cmStdString, cmStdString> StringStringMap;
  635. StringStringMap m_MacrosMap;
  636. std::map<cmStdString, bool> m_SubDirectoryOrder;
  637. // used in AddDefinition for performance improvement
  638. DefinitionMap::key_type m_TemporaryDefinitionKey;
  639. cmsys::RegularExpression m_cmDefineRegex;
  640. std::map<cmStdString,cmStdString> m_Properties;
  641. };
  642. #endif