-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
common.props
27 lines (22 loc) · 1.2 KB
/
common.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<Project>
<PropertyGroup>
<CharacterSet Condition="'$(CharacterSet)'==''">Unicode</CharacterSet>
<DefineConstants Condition="'$(CharacterSet)'=='Unicode'">$(DefineConstants);RXW_UNICODE</DefineConstants>
<PlatformArch>$(Platform)</PlatformArch>
<PlatformArch Condition="'$(PlatformArch)'=='x86'">Win32</PlatformArch> <!-- unified paths due to regXwild.vcxproj -->
<OutRawDir>bin\raw\$(Configuration)\$(PlatformArch)\$(CharacterSet)\</OutRawDir>
<IntermediateOutputPath>..\bin\obj\$(MSBuildProjectName)\$(Configuration)\$(PlatformArch)\$(CharacterSet)\</IntermediateOutputPath>
<OutputPath>..\$(OutRawDir)\</OutputPath>
<OutDir>$([MSBuild]::Escape($([System.IO.Path]::GetFullPath(`$([System.IO.Path]::Combine(`$(SolutionDir)`, `$(OutRawDir)`))`))))</OutDir>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(CharacterSet)'=='Unicode'">
<ClCompile>
<PreprocessorDefinitions>RXW_UNICODE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
</ItemDefinitionGroup>
<ItemDefinitionGroup>
<ClCompile>
<DisableSpecificWarnings>4480;4482;%(DisableSpecificWarnings)</DisableSpecificWarnings>
</ClCompile>
</ItemDefinitionGroup>
</Project>