diff options
author | Ken Martin <ken.martin@kitware.com> | 2001-02-15 18:30:13 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2001-02-15 18:30:13 (GMT) |
commit | fce56c57c497ede3a7afcbc7965846cc8bad9db2 (patch) | |
tree | 0fb37474ade8ff1ec1ed40e30e3e02074baa5b42 /Source/cmClassFile.h | |
parent | 252b0d89572b5cadb3ba3b9f5db6dfa35f60beba (diff) | |
download | CMake-fce56c57c497ede3a7afcbc7965846cc8bad9db2.zip CMake-fce56c57c497ede3a7afcbc7965846cc8bad9db2.tar.gz CMake-fce56c57c497ede3a7afcbc7965846cc8bad9db2.tar.bz2 |
some cleanup and fixes
Diffstat (limited to 'Source/cmClassFile.h')
-rw-r--r-- | Source/cmClassFile.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/cmClassFile.h b/Source/cmClassFile.h index 4004839..8a9845e 100644 --- a/Source/cmClassFile.h +++ b/Source/cmClassFile.h @@ -35,6 +35,7 @@ public: { m_AbstractClass = false; m_HeaderFileOnly = false; + m_IsExecutable = false; } /** @@ -60,6 +61,11 @@ public: bool m_HeaderFileOnly; /** + * Indicate whether this class is an executable file + */ + bool m_IsExecutable; + + /** * The full path to the file. */ std::string m_FullPath; |