c9d87fb7e1f31e1808d5cae8273cc85f6a2daf94
[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 class cmTarget;
16 class cmInstallTargetGenerator;
17 class cmInstallFilesGenerator;
18
19 /** \brief A member of an ExportSet
20  *
21  * This struct holds pointers to target and all relevant generators.
22  */
23 class cmTargetExport
24 {
25 public:
26   cmTarget* Target; ///< The target
27
28   ///@name Generators
29   ///@{
30   cmInstallTargetGenerator* ArchiveGenerator;
31   cmInstallTargetGenerator* RuntimeGenerator;
32   cmInstallTargetGenerator* LibraryGenerator;
33   cmInstallTargetGenerator* FrameworkGenerator;
34   cmInstallTargetGenerator* BundleGenerator;
35   cmInstallFilesGenerator* HeaderGenerator;
36   ///@}
37 };
38
39 #endif