summaryrefslogtreecommitdiffstats
path: root/Source/cmExtraQbsGenerator.h
blob: 531ccc92567c8c9dadeeb232d5292c094f29ed43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#ifndef CMEXTRAQBSGENERATOR_H
#define CMEXTRAQBSGENERATOR_H

#include "cmExternalMakefileProjectGenerator.h"

class cmGeneratorTarget;

class cmExtraQbsGenerator : public cmExternalMakefileProjectGenerator
{
public:
  cmExtraQbsGenerator();
  ~cmExtraQbsGenerator();

  virtual std::string GetName() const
  { return cmExtraQbsGenerator::GetActualName(); }
  static std::string GetActualName() { return "Qbs"; }
  static cmExternalMakefileProjectGenerator *New()
  { return new cmExtraQbsGenerator; }

  /** Get the documentation entry for this generator.  */
  virtual void GetDocumentation(cmDocumentationEntry &entry,
                                const std::string &fullName) const;

  virtual void Generate();

private:
  void CreateProjectFile(const std::string &name,
                         const std::vector<cmLocalGenerator *> &lgs);
  void CreateNewProjectFile(const std::string &projectName,
                            const std::vector<cmLocalGenerator *> &lgs,
                            const std::string &filename);
  void AppendSubProject(cmGeneratedFileStream &fout, cmLocalGenerator *lg);
  void AppendProduct(cmGeneratedFileStream &fout, cmLocalGenerator *lg);
  void AppendTarget(cmGeneratedFileStream &fout,
                    cmLocalGenerator *lg,
                    const cmTarget &t,
                    const std::string &cfg);
  void AppendSources(cmGeneratedFileStream &fout,
                     cmGeneratorTarget *gt,
                     const cmTarget &t,
                     const std::string &cfg);
  void AppendIncludePaths(cmGeneratedFileStream &fout,
                          const std::set<std::string> &paths);
  void AppendCompileDefinitions(cmGeneratedFileStream &fout,
                                const std::set<std::string> &defs);
};

#endif // CMEXTRAQBSGENERATOR_H