mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2024-12-26 20:25:28 +00:00
82 lines
3.8 KiB
XML
82 lines
3.8 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
|||
|
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|||
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
|||
|
<PropertyGroup>
|
|||
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|||
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|||
|
<SchemaVersion>2.0</SchemaVersion>
|
|||
|
<ProjectGuid>6f0e55fa-a056-45ff-bb24-641457b430a8</ProjectGuid>
|
|||
|
<OutputType>Library</OutputType>
|
|||
|
<RootNamespace>UnicornSln</RootNamespace>
|
|||
|
<AssemblyName>UnicornSln</AssemblyName>
|
|||
|
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
|||
|
<TargetFSharpCoreVersion>4.3.0.0</TargetFSharpCoreVersion>
|
|||
|
<Name>Unicorn</Name>
|
|||
|
<TargetFrameworkProfile />
|
|||
|
</PropertyGroup>
|
|||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|||
|
<DebugSymbols>true</DebugSymbols>
|
|||
|
<DebugType>full</DebugType>
|
|||
|
<Optimize>false</Optimize>
|
|||
|
<Tailcalls>false</Tailcalls>
|
|||
|
<OutputPath>bin\Debug\</OutputPath>
|
|||
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|||
|
<WarningLevel>3</WarningLevel>
|
|||
|
<DocumentationFile>bin\Debug\UnicornSln.XML</DocumentationFile>
|
|||
|
<PlatformTarget>x86</PlatformTarget>
|
|||
|
</PropertyGroup>
|
|||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|||
|
<DebugType>pdbonly</DebugType>
|
|||
|
<Optimize>true</Optimize>
|
|||
|
<Tailcalls>true</Tailcalls>
|
|||
|
<OutputPath>bin\Release\</OutputPath>
|
|||
|
<DefineConstants>TRACE</DefineConstants>
|
|||
|
<WarningLevel>3</WarningLevel>
|
|||
|
<DocumentationFile>bin\Release\UnicornSln.XML</DocumentationFile>
|
|||
|
</PropertyGroup>
|
|||
|
<ItemGroup>
|
|||
|
<Reference Include="mscorlib" />
|
|||
|
<Reference Include="FSharp.Core, Version=$(TargetFSharpCoreVersion), Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
|||
|
<Private>True</Private>
|
|||
|
</Reference>
|
|||
|
<Reference Include="System" />
|
|||
|
<Reference Include="System.Core" />
|
|||
|
<Reference Include="System.Numerics" />
|
|||
|
</ItemGroup>
|
|||
|
<ItemGroup>
|
|||
|
<Compile Include="Const\Arm.fs" />
|
|||
|
<Compile Include="Const\Arm64.fs" />
|
|||
|
<Compile Include="Const\Common.fs" />
|
|||
|
<Compile Include="Const\M68k.fs" />
|
|||
|
<Compile Include="Const\Mips.fs" />
|
|||
|
<Compile Include="Const\Spark.fs" />
|
|||
|
<Compile Include="Const\X86.fs" />
|
|||
|
<Compile Include="Const\UcError.fs" />
|
|||
|
<Compile Include="Hooks.fs" />
|
|||
|
<Compile Include="NativeUnicorn.fs" />
|
|||
|
<Compile Include="Unicorn.fs" />
|
|||
|
</ItemGroup>
|
|||
|
<PropertyGroup>
|
|||
|
<MinimumVisualStudioVersion Condition="'$(MinimumVisualStudioVersion)' == ''">11</MinimumVisualStudioVersion>
|
|||
|
</PropertyGroup>
|
|||
|
<Choose>
|
|||
|
<When Condition="'$(VisualStudioVersion)' == '11.0'">
|
|||
|
<PropertyGroup Condition="Exists('$(MSBuildExtensionsPath32)\..\Microsoft SDKs\F#\3.0\Framework\v4.0\Microsoft.FSharp.Targets')">
|
|||
|
<FSharpTargetsPath>$(MSBuildExtensionsPath32)\..\Microsoft SDKs\F#\3.0\Framework\v4.0\Microsoft.FSharp.Targets</FSharpTargetsPath>
|
|||
|
</PropertyGroup>
|
|||
|
</When>
|
|||
|
<Otherwise>
|
|||
|
<PropertyGroup Condition="Exists('$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\FSharp\Microsoft.FSharp.Targets')">
|
|||
|
<FSharpTargetsPath>$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\FSharp\Microsoft.FSharp.Targets</FSharpTargetsPath>
|
|||
|
</PropertyGroup>
|
|||
|
</Otherwise>
|
|||
|
</Choose>
|
|||
|
<Import Project="$(FSharpTargetsPath)" />
|
|||
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
|||
|
Other similar extension points exist, see Microsoft.Common.targets.
|
|||
|
<Target Name="BeforeBuild">
|
|||
|
</Target>
|
|||
|
<Target Name="AfterBuild">
|
|||
|
</Target>
|
|||
|
-->
|
|||
|
</Project>
|