summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--MANIFEST.in2
-rw-r--r--setup.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
index bf312d5..4e85759 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -1,5 +1,5 @@
include setup.py
include COPYING
-recursive-include msgpack *.h *.c *.pyx
+recursive-include msgpack *.h *.c *.pyx *.cpp
recursive-include test *.py
recursive-include test3 *.py
diff --git a/setup.py b/setup.py
index 149b282..3f8f9f8 100644
--- a/setup.py
+++ b/setup.py
@@ -37,7 +37,7 @@ if have_cython:
cython_compiler.default_options)
sdist.__init__(self, *args, **kwargs)
else:
- sources = ['msgpack/_msgpack.c']
+ sources = ['msgpack/_msgpack.cpp']
for f in sources:
if not os.path.exists(f):