~ubuntu-branches/ubuntu/utopic/cmake/utopic

« back to all changes in this revision

Viewing changes to Source/cmGlobalVisualStudio11Generator.h

  • Committer: Package Import Robot
  • Author(s): Harald Sitter
  • Date: 2013-10-10 12:54:39 UTC
  • mfrom: (1.14.7)
  • Revision ID: package-import@ubuntu.com-20131010125439-h0ahaj004on6oj92
Tags: 2.8.12-0ubuntu1
New upstream release LP: #1246701

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
{
22
22
public:
23
23
  cmGlobalVisualStudio11Generator(const char* name,
24
 
    const char* architectureId, const char* additionalPlatformDefinition);
 
24
    const char* platformName, const char* additionalPlatformDefinition);
25
25
  static cmGlobalGeneratorFactory* NewFactory();
26
26
 
27
27
  virtual void WriteSLNHeader(std::ostream& fout);
34
34
protected:
35
35
  virtual const char* GetIDEVersion() { return "11.0"; }
36
36
  bool UseFolderProperty();
 
37
  static std::set<std::string> GetInstalledWindowsCESDKs();
37
38
private:
38
39
  class Factory;
 
40
  friend class Factory;
39
41
};
40
42
#endif