Commit 408e9ae2 authored by Greg Ward's avatar Greg Ward

Add ".cxx" to the list of known C++ extensions.

parent 46a69b9c
...@@ -177,7 +177,7 @@ class MSVCCompiler (CCompiler) : ...@@ -177,7 +177,7 @@ class MSVCCompiler (CCompiler) :
# Private class data (need to distinguish C from C++ source for compiler) # Private class data (need to distinguish C from C++ source for compiler)
_c_extensions = ['.c'] _c_extensions = ['.c']
_cpp_extensions = ['.cc','.cpp'] _cpp_extensions = ['.cc', '.cpp', '.cxx']
# Needed for the filename generation methods provided by the # Needed for the filename generation methods provided by the
# base class, CCompiler. # base class, CCompiler.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment