diff options
author | Brad King <brad.king@kitware.com> | 2006-08-08 03:25:21 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-08-08 03:25:21 (GMT) |
commit | 5cfa1b02ab48abe10f323846d9b8886946ac1954 (patch) | |
tree | 8d0e5946700af682216cbea3fb6e4538589598dc /Source/cmLocalGenerator.h | |
parent | accf93fc12071b603de40a00d059a2bbbe7f2fe2 (diff) | |
download | CMake-5cfa1b02ab48abe10f323846d9b8886946ac1954.zip CMake-5cfa1b02ab48abe10f323846d9b8886946ac1954.tar.gz CMake-5cfa1b02ab48abe10f323846d9b8886946ac1954.tar.bz2 |
ENH: Added generation of rules to manually request preprocessed or generated assembly sources.
Diffstat (limited to 'Source/cmLocalGenerator.h')
-rw-r--r-- | Source/cmLocalGenerator.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h index ec0aafa..03df6cb 100644 --- a/Source/cmLocalGenerator.h +++ b/Source/cmLocalGenerator.h @@ -186,6 +186,8 @@ public: this->Target= 0; this->LinkLibraries= 0; this->Source= 0; + this->AssemblySource = 0; + this->PreprocessedSource = 0; this->Object= 0; this->ObjectDir= 0; this->Flags= 0; @@ -200,6 +202,8 @@ public: const char* Target; const char* LinkLibraries; const char* Source; + const char* AssemblySource; + const char* PreprocessedSource; const char* Object; const char* ObjectDir; const char* Flags; |