diff options
author | Brad King <brad.king@kitware.com> | 2016-03-31 12:45:51 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2016-03-31 12:45:51 (GMT) |
commit | e0917f29a42626d9351df3de7ddabfb4acc73c78 (patch) | |
tree | d3ce89df78c1885374ea81f6c6b7aa0534bdc15b /Source | |
parent | b290ddf925aee7dca25396035b1b53223d37e9e5 (diff) | |
parent | 729f5f01b4a1798ad8e11d3dc4eae664af96bd23 (diff) | |
download | CMake-e0917f29a42626d9351df3de7ddabfb4acc73c78.zip CMake-e0917f29a42626d9351df3de7ddabfb4acc73c78.tar.gz CMake-e0917f29a42626d9351df3de7ddabfb4acc73c78.tar.bz2 |
Merge topic 'vs-fortran-MP'
729f5f01 VS: Map Intel Fortran `/MP` flag for multi-processor compilation (#15990)
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmLocalVisualStudio7Generator.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.cxx b/Source/cmLocalVisualStudio7Generator.cxx index abae564..2f66517 100644 --- a/Source/cmLocalVisualStudio7Generator.cxx +++ b/Source/cmLocalVisualStudio7Generator.cxx @@ -378,6 +378,11 @@ cmVS7FlagTable cmLocalVisualStudio7GeneratorFortranFlagTable[] = {"FloatingPointExceptionHandling", "fpe:1", "", "fpe1", 0}, {"FloatingPointExceptionHandling", "fpe:3", "", "fpe3", 0}, + {"MultiProcessorCompilation", "MP", "", "true", + cmVS7FlagTable::UserValueIgnored | cmVS7FlagTable::Continue}, + {"ProcessorNumber", "MP", "Multi-processor Compilation", "", + cmVS7FlagTable::UserValueRequired}, + {"ModulePath", "module:", "", "", cmVS7FlagTable::UserValueRequired}, {"LoopUnrolling", "Qunroll:", "", "", |