PluginCMakeWriter.h
Go to the documentation of this file.
1 /* Copyright (C) 2008 National Institute For Space Research (INPE) - Brazil.
2 
3  This file is part of the TerraLib - a Framework for building GIS enabled applications.
4 
5  TerraLib is free software: you can redistribute it and/or modify
6  it under the terms of the GNU Lesser General Public License as published by
7  the Free Software Foundation, either version 3 of the License,
8  or (at your option) any later version.
9 
10  TerraLib is distributed in the hope that it will be useful,
11  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  GNU Lesser General Public License for more details.
14 
15  You should have received a copy of the GNU Lesser General Public License
16  along with TerraLib. See COPYING. If not, write to
17  TerraLib Team at <terralib-team@terralib.org>.
18  */
19 
20 /*!
21  \file terralib/qt/widgets/plugin/builder/PluginCMakeWriter.h
22 
23  \brief This class is used to create the cmake file for the new plugin builded.
24 */
25 
26 #ifndef __TERRALIB_QT_WIDGETS_PLUGIN_BUILDER_INTERNAL_PLUGINCMAKEWRITER_H
27 #define __TERRALIB_QT_WIDGETS_PLUGIN_BUILDER_INTERNAL_PLUGINCMAKEWRITER_H
28 
29 // TerraLib
30 #include "../../Config.h"
31 #include "../../../../plugin/PluginInfo.h"
32 #include "../../../../plugin/Provider.h"
33 
34 // STL Include
35 #include <fstream>
36 #include <string>
37 #include <vector>
38 
39 namespace te
40 {
41  namespace qt
42  {
43  namespace widgets
44  {
45  /*!
46  \class PluginCMakeWriter
47 
48  \brief This class is used to create the cmake file for the new plugin builded.
49  */
50 
52  {
53  public:
54 
55  /* Default Constructor */
57 
58  /* Destructor */
60 
61  public:
62 
63  /* Build Cmake File */
64  void createCmakeFile(const std::string& buildPath, const std::string& sourcePath, const std::string& projName,
65  const std::string exportMacro, const std::string& cmakePath, const te::plugin::PluginInfo& pi);
66 
67  /* Build XML Plugin Information File */
68  void createPluginInfoFile(const std::string& buildPath, const te::plugin::PluginInfo& pi, const te::plugin::Provider& p);
69 
70  protected:
71 
72  void insertDefaultHeader(std::ofstream& stream);
73 
74  void insertDefaultXMLHeader(std::ofstream& stream);
75 
76  void findTerralib(std::ofstream& stream, const std::string& teCmakePath, const te::plugin::PluginInfo& pi);
77 
78  void findBoost(std::ofstream& stream);
79  };
80  } // end namespace widgets
81  } // end namespace qt
82 } // end namespace te
83 
84 #endif // __TERRALIB_QT_WIDGETS_PLUGIN_BUILDER_INTERNAL_PLUGINCMAKEWRITER_H
This struct can be used to describe a given plugin provider.
Definition: Provider.h:45
URI C++ Library.
#define TEQTWIDGETSEXPORT
You can use this macro in order to export/import classes and functions from this module.
Definition: Config.h:63
This class is used to create the cmake file for the new plugin builded.
The basic information about a plugin.
Definition: PluginInfo.h:61