aboutsummaryrefslogtreecommitdiff
path: root/environment.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2014-08-04 13:15:33 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2014-08-04 13:15:33 +0300
commit64b01354fb46dc8622705f07e97b5d1dc99966d9 (patch)
tree8ecd60d4b46f35b5789f3a97bc1b9219d2740ebc /environment.py
parent100c20e568e8250c7845877bf456ad54dfc137db (diff)
downloadmeson-64b01354fb46dc8622705f07e97b5d1dc99966d9.zip
meson-64b01354fb46dc8622705f07e97b5d1dc99966d9.tar.gz
meson-64b01354fb46dc8622705f07e97b5d1dc99966d9.tar.bz2
.f90 is Fortran too.
Diffstat (limited to 'environment.py')
-rw-r--r--environment.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/environment.py b/environment.py
index 1292577..640892e 100644
--- a/environment.py
+++ b/environment.py
@@ -1195,7 +1195,7 @@ end program prog
def can_compile(self, src):
suffix = os.path.splitext(src)[1].lower()
- if suffix == '.f' or suffix == '.f95':
+ if suffix == '.f' or suffix == '.f95' or suffix == '.f90':
return True
return False