Fix typo in fortran builder

This commit is contained in:
Ian Bell
2015-11-14 17:33:30 -07:00
parent 2ef58f331e
commit 92c2c1846d

View File

@@ -545,9 +545,9 @@ def fortranFactory(platform=1,bitness=1):
cmake_args = ["-DCOOLPROP_STATIC_LIBRARY=ON","-DCOOLPROP_EXTERNC_LIBRARY=ON", ]
if bitness == bitnessID["32bit"]:
cmake_args.append('-DFORCE_BITNESS_32')
cmake_args.append('-DFORCE_BITNESS_32=ON')
elif bitness == bitnessID["64bit"]:
cmake_args.append('-DFORCE_BITNESS_64')
cmake_args.append('-DFORCE_BITNESS_64=ON')
if platform==platformID["windows"]:
cmake_args += ["-G", "\"MinGW Makefiles\""]