[hyena] build: Add SubmoduleWindows configuration w/ bin/bin OutputPath
- From: Gabriel Burt <gburt src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [hyena] build: Add SubmoduleWindows configuration w/ bin/bin OutputPath
- Date: Wed, 2 Feb 2011 22:58:45 +0000 (UTC)
commit 85782c2eedf25994f5923d7f68662f80a6543e7c
Author: Gabriel Burt <gabriel burt gmail com>
Date: Wed Feb 2 16:58:12 2011 -0600
build: Add SubmoduleWindows configuration w/ bin/bin OutputPath
Hyena.Data.Sqlite/Hyena.Data.Sqlite.csproj | 13 +++++++++++--
Hyena.Gui/Hyena.Gui.csproj | 19 ++++++++++++++-----
Hyena/Hyena.csproj | 17 +++++++++++++----
3 files changed, 38 insertions(+), 11 deletions(-)
---
diff --git a/Hyena.Data.Sqlite/Hyena.Data.Sqlite.csproj b/Hyena.Data.Sqlite/Hyena.Data.Sqlite.csproj
index 781feff..626f659 100644
--- a/Hyena.Data.Sqlite/Hyena.Data.Sqlite.csproj
+++ b/Hyena.Data.Sqlite/Hyena.Data.Sqlite.csproj
@@ -22,7 +22,7 @@
<ReleaseVersion>1.3</ReleaseVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <OutputPath>..\..\bin\</OutputPath>
+ <OutputPath>..\..\bin</OutputPath>
<DefineConstants>NET_2_0</DefineConstants>
<PlatformTarget>x86</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
@@ -31,7 +31,7 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Submodule|AnyCPU' ">
- <OutputPath>..\..\..\bin\</OutputPath>
+ <OutputPath>..\..\..\bin</OutputPath>
<DefineConstants>NET_2_0</DefineConstants>
<PlatformTarget>x86</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
@@ -39,6 +39,15 @@
<Optimize>true</Optimize>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'SubmoduleWindows|AnyCPU' ">
+ <OutputPath>..\..\..\bin\bin</OutputPath>
+ <DefineConstants>NET_2_0,WIN32</DefineConstants>
+ <PlatformTarget>x86</PlatformTarget>
+ <DebugSymbols>true</DebugSymbols>
+ <DebugType>full</DebugType>
+ <Optimize>true</Optimize>
+ <WarningLevel>4</WarningLevel>
+ </PropertyGroup>
<ItemGroup>
<Compile Include="Hyena.Data.Sqlite\ArrayDataReader.cs" />
<Compile Include="Hyena.Data.Sqlite\DatabaseColumn.cs" />
diff --git a/Hyena.Gui/Hyena.Gui.csproj b/Hyena.Gui/Hyena.Gui.csproj
index 3bd400d..e505058 100644
--- a/Hyena.Gui/Hyena.Gui.csproj
+++ b/Hyena.Gui/Hyena.Gui.csproj
@@ -13,7 +13,6 @@
<NoStdLib>False</NoStdLib>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<Optimize>true</Optimize>
- <OutputPath>..\..\..\bin</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<RootNamespace>Hyena.Gui</RootNamespace>
@@ -23,7 +22,7 @@
<ReleaseVersion>1.3</ReleaseVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <OutputPath>..\..\bin\</OutputPath>
+ <OutputPath>..\..\bin</OutputPath>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<DefineConstants>NET_2_0</DefineConstants>
<PlatformTarget>x86</PlatformTarget>
@@ -33,7 +32,7 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Submodule|AnyCPU' ">
- <OutputPath>..\..\..\bin\</OutputPath>
+ <OutputPath>..\..\..\bin</OutputPath>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<DefineConstants>NET_2_0</DefineConstants>
<PlatformTarget>x86</PlatformTarget>
@@ -42,12 +41,22 @@
<Optimize>true</Optimize>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'SubmoduleWindows|AnyCPU' ">
+ <DefineConstants>NET_2_0,WIN32</DefineConstants>
+ <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
+ <OutputPath>..\..\..\bin\bin</OutputPath>
+ <PlatformTarget>x86</PlatformTarget>
+ <DebugSymbols>true</DebugSymbols>
+ <DebugType>full</DebugType>
+ <Optimize>true</Optimize>
+ <WarningLevel>4</WarningLevel>
+ </PropertyGroup>
<ItemGroup>
<Reference Include="ICSharpCode.SharpZipLib">
- <HintPath>..\..\..\bin\ICSharpCode.SharpZipLib.dll</HintPath>
+ <HintPath>..\..\..\bin\bin\ICSharpCode.SharpZipLib.dll</HintPath>
</Reference>
<Reference Include="Mono.Posix">
- <HintPath>..\..\..\bin\Mono.Posix.dll</HintPath>
+ <HintPath>..\..\..\bin\bin\Mono.Posix.dll</HintPath>
<SpecificVersion>False</SpecificVersion>
</Reference>
<Reference Include="System" />
diff --git a/Hyena/Hyena.csproj b/Hyena/Hyena.csproj
index cda0546..2f5ca08 100644
--- a/Hyena/Hyena.csproj
+++ b/Hyena/Hyena.csproj
@@ -21,7 +21,7 @@
<ReleaseVersion>1.3</ReleaseVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <OutputPath>..\..\bin\</OutputPath>
+ <OutputPath>..\..\bin</OutputPath>
<DefineConstants>NET_2_0</DefineConstants>
<PlatformTarget>x86</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
@@ -31,7 +31,16 @@
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Submodule|AnyCPU' ">
<DefineConstants>NET_2_0</DefineConstants>
- <OutputPath>..\..\..\bin\</OutputPath>
+ <OutputPath>..\..\..\bin</OutputPath>
+ <PlatformTarget>x86</PlatformTarget>
+ <DebugSymbols>true</DebugSymbols>
+ <DebugType>full</DebugType>
+ <Optimize>true</Optimize>
+ <WarningLevel>4</WarningLevel>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'SubmoduleWindows|AnyCPU' ">
+ <DefineConstants>NET_2_0,WIN32</DefineConstants>
+ <OutputPath>..\..\..\bin\bin</OutputPath>
<PlatformTarget>x86</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
@@ -176,11 +185,11 @@
<Reference Include="System.Xml" />
<Reference Include="nunit.core">
<SpecificVersion>False</SpecificVersion>
- <HintPath>..\..\..\bin\nunit.core.dll</HintPath>
+ <HintPath>..\..\..\bin\bin\nunit.core.dll</HintPath>
</Reference>
<Reference Include="Mono.Posix">
<SpecificVersion>False</SpecificVersion>
- <HintPath>..\..\..\bin\Mono.Posix.dll</HintPath>
+ <HintPath>..\..\..\bin\bin\Mono.Posix.dll</HintPath>
</Reference>
<Reference Include="nunit.framework, Version=2.4.8.0, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77" />
<Reference Include="glib-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]