Urho.iOS.csproj 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProjectTypeGuids>{8FFB629D-F513-41CE-95D2-7ECE97B6EEEC};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  7. <ProjectGuid>{048373C2-B60A-4F61-B095-287C57437EFB}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <RootNamespace>Urho</RootNamespace>
  10. <IPhoneResourcePrefix>Resources</IPhoneResourcePrefix>
  11. <AssemblyName>Urho</AssemblyName>
  12. </PropertyGroup>
  13. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  14. <DebugSymbols>true</DebugSymbols>
  15. <DebugType>full</DebugType>
  16. <Optimize>false</Optimize>
  17. <OutputPath>bin\Debug</OutputPath>
  18. <DefineConstants>DEBUG;__MOBILE__;__IOS__;IOS;</DefineConstants>
  19. <ErrorReport>prompt</ErrorReport>
  20. <WarningLevel>4</WarningLevel>
  21. <ConsolePause>false</ConsolePause>
  22. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  23. </PropertyGroup>
  24. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  25. <DebugType>full</DebugType>
  26. <Optimize>true</Optimize>
  27. <OutputPath>..\Bin\iOS\</OutputPath>
  28. <ErrorReport>prompt</ErrorReport>
  29. <WarningLevel>4</WarningLevel>
  30. <ConsolePause>false</ConsolePause>
  31. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  32. <DefineConstants>__MOBILE__;__IOS__;IOS;</DefineConstants>
  33. </PropertyGroup>
  34. <ItemGroup>
  35. <Reference Include="System" />
  36. <Reference Include="System.Xml" />
  37. <Reference Include="Xamarin.iOS" />
  38. </ItemGroup>
  39. <ItemGroup>
  40. <ObjcBindingApiDefinition Include="iOS\ApiDefinition.cs" />
  41. <ObjcBindingCoreSource Include="iOS\StructsAndEnums.cs" />
  42. <Compile Include="iOS\IosPlatformInitializer.cs" />
  43. <Compile Include="iOS\UrhoSurface.cs" />
  44. <Compile Include="Urho.framework.linkwith.cs" />
  45. </ItemGroup>
  46. <ItemGroup>
  47. <ObjcBindingNativeFramework Include="..\Bin\iOS\Urho.framework" />
  48. </ItemGroup>
  49. <ItemGroup>
  50. <BundleResource Include="..\Bin\CoreData.pak">
  51. <Link>CoreData.pak</Link>
  52. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  53. </BundleResource>
  54. <None Include="..\Bin\iOS\Urho.framework.zip">
  55. <Link>Urho.framework.zip</Link>
  56. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  57. </None>
  58. </ItemGroup>
  59. <ItemGroup>
  60. <Folder Include="Properties\" />
  61. </ItemGroup>
  62. <Import Project="Urho.Shared.projitems" Label="Shared" />
  63. <Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.ObjCBinding.CSharp.targets" />
  64. </Project>