aboutsummaryrefslogtreecommitdiff
path: root/windows
diff options
context:
space:
mode:
authorDamien George2014-09-02 11:37:47 +0100
committerDamien George2014-09-02 11:37:47 +0100
commitbc9f34860b75ef76d5ec4a3452c63eb4210f392b (patch)
treef8089b254fe5f074cd3304080cd07129fdf1a136 /windows
parentbad2df3e95cd5719099319d71590a79bf6bc4493 (diff)
parent759138caee65a58ecf1f02ca7c57bc9ba3d3c5f5 (diff)
Merge branch 'msvc-extmod' of github.com:stinos/micropython into stinos-msvc-extmod
Diffstat (limited to 'windows')
-rw-r--r--windows/mpconfigport.h2
-rw-r--r--windows/msvc/sources.props3
2 files changed, 4 insertions, 1 deletions
diff --git a/windows/mpconfigport.h b/windows/mpconfigport.h
index c5def7592..852ca3f5f 100644
--- a/windows/mpconfigport.h
+++ b/windows/mpconfigport.h
@@ -54,6 +54,8 @@
#define MICROPY_PY_CMATH (1)
#define MICROPY_PY_IO_FILEIO (1)
#define MICROPY_PY_GC_COLLECT_RETVAL (1)
+#define MICROPY_PY_UCTYPES (1)
+#define MICROPY_PY_ZLIBD (1)
#define MICROPY_ERROR_REPORTING (MICROPY_ERROR_REPORTING_DETAILED)
#ifdef _MSC_VER
#define MICROPY_GCREGS_SETJMP (1)
diff --git a/windows/msvc/sources.props b/windows/msvc/sources.props
index 6fd3306b9..b48277ff2 100644
--- a/windows/msvc/sources.props
+++ b/windows/msvc/sources.props
@@ -5,7 +5,8 @@
</PropertyGroup>
<ItemGroup>
<ClCompile Include="$(PyBaseDir)py\*.c" />
- <ClCompile Include="$(PyBaseDir)unix\*.c" Exclude="$(PyBaseDir)unix\modffi.c;$(PyBaseDir)unix\modsocket.c;$(PyBaseDir)unix\seg_helpers.c" />
+ <ClCompile Include="$(PyBaseDir)extmod\*.c" />
+ <ClCompile Include="$(PyBaseDir)unix\*.c" Exclude="$(PyBaseDir)unix\modffi.c;$(PyBaseDir)unix\modsocket.c;$(PyBaseDir)unix\modtermios.c;$(PyBaseDir)unix\seg_helpers.c" />
<ClCompile Include="$(PyBaseDir)windows\*.c" />
<ClCompile Include="$(PyBaseDir)windows\msvc\*.c" />
</ItemGroup>