Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
CMake
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
André Pedro
CMake
Commits
27be1d81
Commit
27be1d81
authored
8 years ago
by
Stephen Kelly
Browse files
Options
Downloads
Patches
Plain Diff
cmState: Move extracted declarations to a separate file
parent
34433c88
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Source/cmState.h
+1
-45
1 addition, 45 deletions
Source/cmState.h
Source/cmStateTypes.h
+55
-0
55 additions, 0 deletions
Source/cmStateTypes.h
with
56 additions
and
45 deletions
Source/cmState.h
+
1
−
45
View file @
27be1d81
...
@@ -12,6 +12,7 @@
...
@@ -12,6 +12,7 @@
#include
"cmProperty.h"
#include
"cmProperty.h"
#include
"cmPropertyDefinitionMap.h"
#include
"cmPropertyDefinitionMap.h"
#include
"cmPropertyMap.h"
#include
"cmPropertyMap.h"
#include
"cmStateTypes.h"
#include
<map>
#include
<map>
#include
<set>
#include
<set>
...
@@ -23,51 +24,6 @@ class cmCommand;
...
@@ -23,51 +24,6 @@ class cmCommand;
class
cmListFileBacktrace
;
class
cmListFileBacktrace
;
class
cmPropertyDefinition
;
class
cmPropertyDefinition
;
namespace
cmStateDetail
{
struct
BuildsystemDirectoryStateType
;
struct
SnapshotDataType
;
struct
PolicyStackEntry
;
typedef
cmLinkedTree
<
cmStateDetail
::
SnapshotDataType
>::
iterator
PositionType
;
}
namespace
cmStateEnums
{
enum
SnapshotType
{
BaseType
,
BuildsystemDirectoryType
,
FunctionCallType
,
MacroCallType
,
IncludeFileType
,
InlineListFileType
,
PolicyScopeType
,
VariableScopeType
};
enum
TargetType
{
EXECUTABLE
,
STATIC_LIBRARY
,
SHARED_LIBRARY
,
MODULE_LIBRARY
,
OBJECT_LIBRARY
,
UTILITY
,
GLOBAL_TARGET
,
INTERFACE_LIBRARY
,
UNKNOWN_LIBRARY
};
enum
CacheEntryType
{
BOOL
=
0
,
PATH
,
FILEPATH
,
STRING
,
INTERNAL
,
STATIC
,
UNINITIALIZED
};
}
class
cmStateDirectory
;
class
cmStateDirectory
;
class
cmStateSnapshot
;
class
cmStateSnapshot
;
...
...
This diff is collapsed.
Click to expand it.
Source/cmStateTypes.h
0 → 100644
+
55
−
0
View file @
27be1d81
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#ifndef cmStateTypes_h
#define cmStateTypes_h
#include
"cmLinkedTree.h"
namespace
cmStateDetail
{
struct
BuildsystemDirectoryStateType
;
struct
SnapshotDataType
;
struct
PolicyStackEntry
;
typedef
cmLinkedTree
<
cmStateDetail
::
SnapshotDataType
>::
iterator
PositionType
;
}
namespace
cmStateEnums
{
enum
SnapshotType
{
BaseType
,
BuildsystemDirectoryType
,
FunctionCallType
,
MacroCallType
,
IncludeFileType
,
InlineListFileType
,
PolicyScopeType
,
VariableScopeType
};
enum
TargetType
{
EXECUTABLE
,
STATIC_LIBRARY
,
SHARED_LIBRARY
,
MODULE_LIBRARY
,
OBJECT_LIBRARY
,
UTILITY
,
GLOBAL_TARGET
,
INTERFACE_LIBRARY
,
UNKNOWN_LIBRARY
};
enum
CacheEntryType
{
BOOL
=
0
,
PATH
,
FILEPATH
,
STRING
,
INTERNAL
,
STATIC
,
UNINITIALIZED
};
}
#endif
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment