Browse Source

Build: Add x64-only configurations to the C# project

BearishSun 6 years ago
parent
commit
90b4e61092
2 changed files with 18 additions and 1 deletions
  1. 17 0
      Source/EditorManaged/MBansheeEditor.csproj.in
  2. 1 1
      Source/bsf

+ 17 - 0
Source/EditorManaged/MBansheeEditor.csproj.in

@@ -30,6 +30,23 @@
     <ErrorReport>prompt</ErrorReport>
     <WarningLevel>4</WarningLevel>
   </PropertyGroup>
+  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
+    <DebugSymbols>true</DebugSymbols>
+    <DebugType>full</DebugType>
+    <Optimize>false</Optimize>
+    <OutputPath>${BS_SHARP_ASSEMBLY_OUTPUT}\Debug\</OutputPath>
+    <DefineConstants>${BS_SHARP_DEFINES}DEBUG;TRACE</DefineConstants>
+    <ErrorReport>prompt</ErrorReport>
+    <WarningLevel>4</WarningLevel>
+  </PropertyGroup>
+  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
+    <DebugType>pdbonly</DebugType>
+    <Optimize>true</Optimize>
+    <OutputPath>${BS_SHARP_ASSEMBLY_OUTPUT}\Release\</OutputPath>
+    <DefineConstants>${BS_SHARP_DEFINES}TRACE</DefineConstants>
+    <ErrorReport>prompt</ErrorReport>
+    <WarningLevel>4</WarningLevel>
+  </PropertyGroup>
   <ItemGroup>
     <Reference Include="System" />
     <Reference Include="System.Core" />

+ 1 - 1
Source/bsf

@@ -1 +1 @@
-Subproject commit c4042b283e325f86f01951ecfb01068e56e502f9
+Subproject commit 9bac615ef05f7adbe06918d09d5dd3ae5071ff42