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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlateralusX <lateralusx.github@gmail.com>2016-04-12 15:14:29 +0300
committerlateralusX <lateralusx.github@gmail.com>2016-06-15 10:40:06 +0300
commitb1c604eee2bf5f80c14d4708424a1606894bb5b9 (patch)
tree6566ad353a0b1a4ff679b7485ee82534740d8c93 /msvc/build-package.vcxproj
parentc371f4f33c612770fc1265f5b69e35df2ba29a1f (diff)
Separate build tree and target suffix support.
* Enabled build target suffix in order to lable a build (primarly for sgen). * Enabled separate build tree. * Dropped all sgen configurations, replaced by properties and target suffix. * Fixed pdb naming of intermediate pdb files.
Diffstat (limited to 'msvc/build-package.vcxproj')
-rw-r--r--msvc/build-package.vcxproj12
1 files changed, 8 insertions, 4 deletions
diff --git a/msvc/build-package.vcxproj b/msvc/build-package.vcxproj
index 4a7f98dc478..201c46d094f 100644
--- a/msvc/build-package.vcxproj
+++ b/msvc/build-package.vcxproj
@@ -57,15 +57,19 @@
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+ <Import Project="mono.props" />
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+ <Import Project="mono.props" />
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+ <Import Project="mono.props" />
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+ <Import Project="mono.props" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
@@ -91,7 +95,7 @@
<SDLCheck>true</SDLCheck>
</ClCompile>
<PostBuildEvent>
- <Command>.\package.bat $(Platform) $(Configuration)</Command>
+ <Command>.\package.bat $(Platform) $(Configuration) $(MONO_BUILD_DIR_PREFIX)</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
@@ -101,7 +105,7 @@
<SDLCheck>true</SDLCheck>
</ClCompile>
<PostBuildEvent>
- <Command>.\package.bat $(Platform) $(Configuration)</Command>
+ <Command>.\package.bat $(Platform) $(Configuration) $(MONO_BUILD_DIR_PREFIX)</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
@@ -117,7 +121,7 @@
<OptimizeReferences>true</OptimizeReferences>
</Link>
<PostBuildEvent>
- <Command>.\package.bat $(Platform) $(Configuration)</Command>
+ <Command>.\package.bat $(Platform) $(Configuration) $(MONO_BUILD_DIR_PREFIX)</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
@@ -133,7 +137,7 @@
<OptimizeReferences>true</OptimizeReferences>
</Link>
<PostBuildEvent>
- <Command>.\package.bat $(Platform) $(Configuration)</Command>
+ <Command>.\package.bat $(Platform) $(Configuration) $(MONO_BUILD_DIR_PREFIX)</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>