aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2021-09-09 12:02:08 +0200
committerStefan Boberg <[email protected]>2021-09-09 12:02:08 +0200
commitcd65bf9d83f8907a084b4903a1c4762a7e6062e1 (patch)
tree3a7d7379dbdd348c0828ba911d4276ec7becb715
parentFixed a number of unreferenced variable warnings (diff)
downloadzen-cd65bf9d83f8907a084b4903a1c4762a7e6062e1.tar.xz
zen-cd65bf9d83f8907a084b4903a1c4762a7e6062e1.zip
Eliminate compiler default library warning for msvcrt
would be good to understand why this even happens but for now this eliminates the warning
-rw-r--r--zenfs_common.props3
1 files changed, 3 insertions, 0 deletions
diff --git a/zenfs_common.props b/zenfs_common.props
index 4ab89e80f..f550ff929 100644
--- a/zenfs_common.props
+++ b/zenfs_common.props
@@ -13,6 +13,9 @@
<TreatWarningAsError>true</TreatWarningAsError>
<PreprocessorDefinitions>_UNICODE;UNICODE;_WIN32_WINNT=0x0A00 ;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
+ <Link>
+ <IgnoreSpecificDefaultLibraries>msvcrt</IgnoreSpecificDefaultLibraries>
+ </Link>
</ItemDefinitionGroup>
<ItemGroup />
</Project> \ No newline at end of file