Add ".cxx" to the list of known C++ extensions.
diff --git a/Lib/distutils/msvccompiler.py b/Lib/distutils/msvccompiler.py
index eecbb62..6c3f8da 100644
--- a/Lib/distutils/msvccompiler.py
+++ b/Lib/distutils/msvccompiler.py
@@ -177,7 +177,7 @@
 
     # Private class data (need to distinguish C from C++ source for compiler)
     _c_extensions = ['.c']
-    _cpp_extensions = ['.cc','.cpp']
+    _cpp_extensions = ['.cc', '.cpp', '.cxx']
 
     # Needed for the filename generation methods provided by the
     # base class, CCompiler.