diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2009-02-10 13:09:19 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2009-02-10 13:09:19 (GMT) |
commit | a3e3cb7ee0070db59974d3617211eddf9b96c36d (patch) | |
tree | 7609c1183588fa92cd8a5d900fd2330bb6a593c2 /PCbuild/sqlite3.vsprops | |
parent | 74fbf60e8c3d516fd193c40235c0a2eaaeae8918 (diff) | |
download | cpython-a3e3cb7ee0070db59974d3617211eddf9b96c36d.zip cpython-a3e3cb7ee0070db59974d3617211eddf9b96c36d.tar.gz cpython-a3e3cb7ee0070db59974d3617211eddf9b96c36d.tar.bz2 |
Issue #5134: Silence compiler warnings when compiling sqlite with VC++.
Diffstat (limited to 'PCbuild/sqlite3.vsprops')
-rw-r--r-- | PCbuild/sqlite3.vsprops | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/PCbuild/sqlite3.vsprops b/PCbuild/sqlite3.vsprops new file mode 100644 index 0000000..b502df5 --- /dev/null +++ b/PCbuild/sqlite3.vsprops @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="Windows-1252"?>
+<VisualStudioPropertySheet
+ ProjectType="Visual C++"
+ Version="8.00"
+ Name="sqlite3"
+ InheritedPropertySheets=".\pyproject.vsprops"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories="$(sqlite3Dir)"
+ PreprocessorDefinitions="SQLITE_API=__declspec(dllexport)"
+ WarningLevel="1"
+ />
+</VisualStudioPropertySheet>
|