diff options
author | stijn <stijn@ignitron.net> | 2015-09-21 10:12:46 +0200 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-09-22 11:07:03 +0100 |
commit | dcbe936c50ad7050efde8acc94d891dae1909148 (patch) | |
tree | 1f442b6b800f7e9f95671918e4f10ff75f3f310f | |
parent | dffa9f6da65cd03e834b2ed3914f40428f72e49f (diff) | |
download | micropython-dcbe936c50ad7050efde8acc94d891dae1909148.tar.gz micropython-dcbe936c50ad7050efde8acc94d891dae1909148.zip |
windows/msvc: Exclude modjni from build.
-rw-r--r-- | windows/msvc/sources.props | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/windows/msvc/sources.props b/windows/msvc/sources.props index f70becc78a..cfd98b3707 100644 --- a/windows/msvc/sources.props +++ b/windows/msvc/sources.props @@ -4,7 +4,7 @@ <ItemGroup> <ClCompile Include="$(PyBaseDir)py\*.c" /> <ClCompile Include="$(PyBaseDir)extmod\*.c" /> - <ClCompile Include="$(PyBaseDir)unix\*.c" Exclude="$(PyBaseDir)unix\alloc.c;$(PyBaseDir)unix\modffi.c;$(PyBaseDir)unix\modsocket.c;$(PyBaseDir)unix\modtermios.c;$(PyBaseDir)unix\seg_helpers.c;$(PyBaseDir)unix\unix_mphal.c" /> + <ClCompile Include="$(PyBaseDir)unix\*.c" Exclude="$(PyBaseDir)unix\alloc.c;$(PyBaseDir)unix\modffi.c;$(PyBaseDir)unix\modjni.c;$(PyBaseDir)unix\modsocket.c;$(PyBaseDir)unix\modtermios.c;$(PyBaseDir)unix\seg_helpers.c;$(PyBaseDir)unix\unix_mphal.c" /> <ClCompile Include="$(PyBaseDir)windows\*.c" /> <ClCompile Include="$(PyBaseDir)windows\msvc\*.c" /> <ClCompile Include="$(PyBaseDir)lib\mp-readline\*.c" /> |