| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <PropertyGroup>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
- <ProjectTypeGuids>{8FFB629D-F513-41CE-95D2-7ECE97B6EEEC};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
- <ProjectGuid>{048373C2-B60A-4F61-B095-287C57437EFB}</ProjectGuid>
- <OutputType>Library</OutputType>
- <RootNamespace>Urho</RootNamespace>
- <IPhoneResourcePrefix>Resources</IPhoneResourcePrefix>
- <AssemblyName>Urho</AssemblyName>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>bin\Debug</OutputPath>
- <DefineConstants>DEBUG;__MOBILE__;__IOS__;IOS;</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <ConsolePause>false</ConsolePause>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DebugType>full</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>..\Bin\iOS\</OutputPath>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <ConsolePause>false</ConsolePause>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <DefineConstants>__MOBILE__;__IOS__;IOS;</DefineConstants>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="System" />
- <Reference Include="System.Xml" />
- <Reference Include="Xamarin.iOS" />
- <Reference Include="System.Core" />
- </ItemGroup>
- <ItemGroup>
- <ObjcBindingApiDefinition Include="iOS\ApiDefinition.cs" />
- <ObjcBindingCoreSource Include="iOS\StructsAndEnums.cs" />
- <Compile Include="iOS\IosPlatformInitializer.cs" />
- <Compile Include="iOS\UrhoSurface.cs" />
- <Compile Include="Urho.framework.linkwith.cs" />
- </ItemGroup>
- <ItemGroup>
- <ObjcBindingNativeFramework Include="..\Bin\iOS\Urho.framework" />
- </ItemGroup>
- <ItemGroup>
- <BundleResource Include="..\Urho3D\CoreData.pak">
- <Link>CoreData.pak</Link>
- <CopyToOutputDirectory>Always</CopyToOutputDirectory>
- </BundleResource>
- <None Include="..\Bin\iOS\Urho.framework.zip">
- <Link>Urho.framework.zip</Link>
- <CopyToOutputDirectory>Always</CopyToOutputDirectory>
- </None>
- </ItemGroup>
- <ItemGroup>
- <Folder Include="Properties\" />
- </ItemGroup>
- <Import Project="Urho.Shared.projitems" Label="Shared" />
- <Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.ObjCBinding.CSharp.targets" />
- </Project>
|