summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorstijn <stijn@ignitron.net>2017-04-26 13:39:00 +0200
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2017-04-30 14:28:37 +0300
commit8d865fa7017481c3840e374d28b3a40fe0497253 (patch)
tree51b54bbf197ec57ced4b8714aac904edcdd8b1a1
parent2f0ce2a6f50ba9472ce4bd8f9fe984d830e99ade (diff)
downloadmicropython-8d865fa7017481c3840e374d28b3a40fe0497253.tar.gz
micropython-8d865fa7017481c3840e374d28b3a40fe0497253.zip
msvc: Do not define DEBUG for debug builds
It is not used anywhere and causes a warning about redefinition because it is used in modutimeq.c
-rw-r--r--windows/msvc/debug.props8
1 files changed, 2 insertions, 6 deletions
diff --git a/windows/msvc/debug.props b/windows/msvc/debug.props
index c0a22be854..fa1ca4fcbc 100644
--- a/windows/msvc/debug.props
+++ b/windows/msvc/debug.props
@@ -4,10 +4,6 @@
<PropertyGroup Label="UserMacros" />
<PropertyGroup>
</PropertyGroup>
- <ItemDefinitionGroup>
- <ClCompile>
- <PreprocessorDefinitions>DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- </ClCompile>
- </ItemDefinitionGroup>
+ <ItemDefinitionGroup />
<ItemGroup />
-</Project>
+</Project> \ No newline at end of file