mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-28 16:24:56 +01:00
a50d66fc04
I added a property sheet (win2008plus.props), which is now inherited by the new Configurations "Win2008PlusRelease" and "Win2008PlusDebug". All it does right now is add MONGO_USE_SRW_ON_WINDOWS preprocessor variable. I added the property sheet to the "mongod" and "test" project Win2008Plus configurations only. If we add other capabilities to Win2008plus in the future, all you need to do is modify the property sheet.
12 lines
448 B
XML
12 lines
448 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<ImportGroup Label="PropertySheets" />
|
|
<PropertyGroup Label="UserMacros" />
|
|
<PropertyGroup />
|
|
<ItemDefinitionGroup>
|
|
<ClCompile>
|
|
<PreprocessorDefinitions>MONGO_USE_SRW_ON_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
</ClCompile>
|
|
</ItemDefinitionGroup>
|
|
<ItemGroup />
|
|
</Project> |