diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2008-04-30 17:26:04 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2008-04-30 17:26:04 (GMT) |
commit | 10c91ded4feda7eb027bc601f2047154cdcba776 (patch) | |
tree | 0e2d3cbd6ca6e0d4097e86b4dfb7ed282131f9d7 /Source/cmLocalVisualStudio7Generator.h | |
parent | e1b2fb4c753d11cba68354970f141a28ed4f414c (diff) | |
download | CMake-10c91ded4feda7eb027bc601f2047154cdcba776.zip CMake-10c91ded4feda7eb027bc601f2047154cdcba776.tar.gz CMake-10c91ded4feda7eb027bc601f2047154cdcba776.tar.bz2 |
ENH: add support for Intel Fortran Visual studio IDE
Diffstat (limited to 'Source/cmLocalVisualStudio7Generator.h')
-rw-r--r-- | Source/cmLocalVisualStudio7Generator.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.h b/Source/cmLocalVisualStudio7Generator.h index b599362..edb90aa 100644 --- a/Source/cmLocalVisualStudio7Generator.h +++ b/Source/cmLocalVisualStudio7Generator.h @@ -102,6 +102,8 @@ private: void OutputModuleDefinitionFile(std::ostream& fout, cmTarget &target); void WriteProjectStart(std::ostream& fout, const char *libName, cmTarget &tgt, std::vector<cmSourceGroup> &sgs); + void WriteProjectStartFortran(std::ostream& fout, const char *libName, + cmTarget &tgt); void WriteVCProjBeginGroup(std::ostream& fout, const char* group, const char* filter); @@ -124,6 +126,7 @@ private: cmVS7FlagTable const* ExtraFlagTable; std::string ModuleDefinitionFile; int Version; + bool FortranProject; std::string PlatformName; // Win32 or x64 cmLocalVisualStudio7GeneratorInternals* Internal; }; |