-
Notifications
You must be signed in to change notification settings - Fork 40
/
Directory.Build.props
34 lines (31 loc) · 1.44 KB
/
Directory.Build.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
28
29
30
31
32
33
34
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<PlatformModified>$(Platform)</PlatformModified>
<PlatformModified Condition="'$(Platform)'=='Win32'">x86</PlatformModified>
<PlatformModified Condition="'$(Platform)'=='AnyCPU'">x86</PlatformModified>
<OutDir>$(SolutionDir)Output\bin\$(PlatformModified)\$(Configuration)\</OutDir>
<OutputPath>$(OutDir)</OutputPath>
<OutDirNoSlash>$(SolutionDir)Output\bin\$(PlatformModified)\$(Configuration)</OutDirNoSlash>
<IntDir>$(SolutionDir)Output\obj\$(PlatformModified)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
<IntermediateOutputPath>$(IntDir)</IntermediateOutputPath>
</PropertyGroup>
<PropertyGroup Condition="$(Configuration.Contains('Wasm'))">
<GCCToolCompilerExe>emcc</GCCToolCompilerExe>
<GCCToolLinkerExe>emcc</GCCToolLinkerExe>
<GCCToolArchiverExe>emar</GCCToolArchiverExe>
<GCCBuild_PreRunApp></GCCBuild_PreRunApp>
</PropertyGroup>
<ItemDefinitionGroup>
<Link>
<AdditionalLibraryDirectories>$(SolutionDir)Output\bin\$(PlatformModified)\$(Configuration)</AdditionalLibraryDirectories>
<SuppressStartupBanner>false</SuppressStartupBanner>
</Link>
<ClCompile>
<SuppressStartupBanner>false</SuppressStartupBanner>
</ClCompile>
<Lib>
<SuppressStartupBanner>false</SuppressStartupBanner>
</Lib>
</ItemDefinitionGroup>
</Project>