-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
28 lines (28 loc) · 1.33 KB
/
Directory.Build.props
File metadata and controls
28 lines (28 loc) · 1.33 KB
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
28
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Label="PropertySheets" />
<PropertyGroup Label="UserMacros">
<FrameworkPath>$(SolutionDir)Thunder\Source\</FrameworkPath>
<ContractsPath>$(SolutionDir)ThunderInterfaces\</ContractsPath>
<ClientsPath>$(SolutionDir)ThunderClientLibraries\Source\</ClientsPath>
<ToolPath>$(SolutionDir)ThunderTools\</ToolPath>
<WindowsPath>$(SolutionDir)include\</WindowsPath>
<WindowsLibraries>$(SolutionDir)lib\</WindowsLibraries>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<IncludePath>$(SolutionDir)include\bridge\generated</IncludePath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<IncludePath>$(SolutionDir)include\bridge\generated</IncludePath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<IncludePath>$(SolutionDir)include\bridge\generated</IncludePath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<IncludePath>$(SolutionDir)include\bridge\generated</IncludePath>
</PropertyGroup>
<ItemDefinitionGroup>
<ClCompile>
<LanguageStandard>stdcpp17</LanguageStandard>
</ClCompile>
</ItemDefinitionGroup>
</Project>