Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ILCompiler.WebAssembly.csproj « src « ILCompiler.WebAssembly « src - github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 26e9f325303f96c2a9f20ed87ddc0ae299e59fec (plain)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="14.0">
  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" Condition="'$(IsProjectNLibrary)' != 'true'" />
  <PropertyGroup>
    <OutputType>Library</OutputType>
    <RootNamespace>ILCompiler</RootNamespace>
    <AssemblyName>ILCompiler.WebAssembly</AssemblyName>
    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
    <TargetFramework>netstandard1.3</TargetFramework>
    <NoWarn>8002</NoWarn>
    <OutputPath>$(BaseOutputPath)$(OSPlatformConfig)/tools</OutputPath>
  </PropertyGroup>
  
  <ItemGroup>
    <PackageReference Include="LLVMSharp">
      <Version>5.0.0</Version>
    </PackageReference>  
  </ItemGroup>

  <ItemGroup Condition="'$(IsProjectNLibrary)' != 'true'">
    <ProjectReference Include="..\..\ILCompiler.DependencyAnalysisFramework\src\ILCompiler.DependencyAnalysisFramework.csproj" />
    <ProjectReference Include="..\..\ILCompiler.MetadataTransform\src\ILCompiler.MetadataTransform.csproj" />
    <ProjectReference Include="..\..\ILCompiler.MetadataWriter\src\ILCompiler.MetadataWriter.csproj" />
    <ProjectReference Include="..\..\ILCompiler.TypeSystem\src\ILCompiler.TypeSystem.csproj" />
    <ProjectReference Include="..\..\ILCompiler.Compiler\src\ILCompiler.Compiler.csproj" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="..\..\Common\src\TypeSystem\IL\ILImporter.cs">
      <Link>IL\ILImporter.cs</Link>
    </Compile>
    <Compile Include="..\..\Common\src\System\Collections\Generic\ArrayBuilder.cs">
      <Link>Common\ArrayBuilder.cs</Link>
    </Compile>
    <Compile Include="..\..\Common\src\System\FormattingHelpers.cs">
      <Link>Common\FormattingHelpers.cs</Link>
    </Compile>
    <Compile Include="..\..\Common\src\TypeSystem\IL\HelperExtensions.cs">
      <Link>IL\HelperExtensions.cs</Link>
    </Compile>
    <Compile Include="CodeGen\DebugMetadata.cs" />
    <Compile Include="CodeGen\ILToWebAssemblyImporter_Statics.cs" />
    <Compile Include="CodeGen\LLVMMisc.cs" />
    <Compile Include="CodeGen\LLVMPInvokes.cs" />
    <Compile Include="CodeGen\WebAssemblyObjectWriter.cs" />
    <Compile Include="Compiler\DependencyAnalysis\RawMainMethodRootProvider.cs" />
    <Compile Include="Compiler\DependencyAnalysis\WebAssemblyCodegenNodeFactory.cs" />
    <Compile Include="Compiler\DependencyAnalysis\WebAssemblyMethodCodeNode.cs" />
    <Compile Include="Compiler\DependencyAnalysis\WebAssemblyVTableSlotNode.cs" />
    <Compile Include="Compiler\WebAssemblyNodeMangler.cs" />
    <Compile Include="Compiler\WebAssemblyCodegenCompilation.cs" />
    <Compile Include="Compiler\WebAssemblyCodegenCompilationBuilder.cs" />
    <Compile Include="CodeGen\EvaluationStack.cs" />
    <Compile Include="CodeGen\NodeDataSection.cs" />
    <Compile Include="CodeGen\ILToWebAssemblyImporter.cs" />
  </ItemGroup>

  <ItemGroup>
    <Content Include="..\..\..\packages\llvmsharp\5.0.0\lib\netstandard1.1\LLVMSharp.dll">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </Content>
    <Content Include="..\..\..\packages\libllvm\6.0.0-beta1\runtimes\osx\native\libLLVM.dylib" Condition="'$(NuPkgRid)' == 'osx-x64'">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </Content>
    <Content Include="..\..\..\packages\libllvm\6.0.0-beta1\runtimes\linux-x64\native\libLLVM.so" Condition="'$(NuPkgRid)' == 'linux-x64'">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </Content>
    <Content Include="..\..\..\packages\libllvm\6.0.0-beta1\runtimes\win-x64\native\libLLVM.dll" Condition="'$(NuPkgRid)' == 'win-x64' or '$(NuPkgRid)' == ''">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </Content>
  </ItemGroup>
  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" Condition="'$(IsProjectNLibrary)' != 'true'" />
</Project>