Imported Upstream version 2.8.12.2
[platform/upstream/cmake.git] / Source / cmTargetExport.h
1 /*============================================================================
2   CMake - Cross Platform Makefile Generator
3   Copyright 2000-2012 Kitware, Inc., Insight Software Consortium
4
5   Distributed under the OSI-approved BSD License (the "License");
6   see accompanying file Copyright.txt for details.
7
8   This software is distributed WITHOUT ANY WARRANTY; without even the
9   implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10   See the License for more information.
11 ============================================================================*/
12 #ifndef cmTargetExport_h
13 #define cmTargetExport_h
14
15 #include "cmStandardIncludes.h"
16
17 class cmTarget;
18 class cmInstallTargetGenerator;
19 class cmInstallFilesGenerator;
20
21 /** \brief A member of an ExportSet
22  *
23  * This struct holds pointers to target and all relevant generators.
24  */
25 class cmTargetExport
26 {
27 public:
28   cmTarget* Target; ///< The target
29
30   ///@name Generators
31   ///@{
32   cmInstallTargetGenerator* ArchiveGenerator;
33   cmInstallTargetGenerator* RuntimeGenerator;
34   cmInstallTargetGenerator* LibraryGenerator;
35   cmInstallTargetGenerator* FrameworkGenerator;
36   cmInstallTargetGenerator* BundleGenerator;
37   cmInstallFilesGenerator* HeaderGenerator;
38   std::string InterfaceIncludeDirectories;
39   ///@}
40 };
41
42 #endif