diff options
author | Tim Gallagher <tim.gallagher@gatech.edu> | 2014-11-05 18:43:06 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-11-10 15:24:53 (GMT) |
commit | b6b37e303786e48c305cb83011ce5fa6cf71e359 (patch) | |
tree | ceb9d6e82793804a1adc0f079de8317dd0f37695 /Source/cmMakefileTargetGenerator.cxx | |
parent | 0842b08463d14d6c7e27dcb4cda278805cce6e5f (diff) | |
download | CMake-b6b37e303786e48c305cb83011ce5fa6cf71e359.zip CMake-b6b37e303786e48c305cb83011ce5fa6cf71e359.tar.gz CMake-b6b37e303786e48c305cb83011ce5fa6cf71e359.tar.bz2 |
Makefile: Add assembly and preprocessed targets for Fortran
Extend the FortranOnly test to cover "make <src>.i" targets.
Diffstat (limited to 'Source/cmMakefileTargetGenerator.cxx')
-rw-r--r-- | Source/cmMakefileTargetGenerator.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmMakefileTargetGenerator.cxx b/Source/cmMakefileTargetGenerator.cxx index a1f4141..1e01f11 100644 --- a/Source/cmMakefileTargetGenerator.cxx +++ b/Source/cmMakefileTargetGenerator.cxx @@ -702,11 +702,12 @@ cmMakefileTargetGenerator vars.Defines = definesString.c_str(); - // At the moment, it is assumed that C and C++ have both + // At the moment, it is assumed that C, C++, and Fortran have both // assembly and preprocessor capabilities. The same is true for the // ability to export compile commands bool lang_has_preprocessor = ((lang == "C") || - (lang == "CXX")); + (lang == "CXX") || + (lang == "Fortran")); bool const lang_has_assembly = lang_has_preprocessor; bool const lang_can_export_cmds = lang_has_preprocessor; |