Ignore:
Timestamp:
05/14/09 12:04:26 (4 years ago)
Author:
sam
Message:

Fixed libcaca and the Visual Studio solution so that it works
on Win64, including the .NET projects.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcaca/trunk/caca-sharp/caca-sharp.csproj

    r3428 r3452  
    3535    <DebugType>full</DebugType> 
    3636    <Optimize>false</Optimize> 
    37     <OutputPath>%24%28SolutionDir%29%24%28ConfigurationName%29\</OutputPath> 
     37    <OutputPath>..\Debug\</OutputPath> 
    3838    <DefineConstants>DEBUG;TRACE</DefineConstants> 
    3939    <ErrorReport>prompt</ErrorReport> 
    4040    <WarningLevel>4</WarningLevel> 
     41    <PlatformTarget>x86</PlatformTarget> 
    4142  </PropertyGroup> 
    4243  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> 
    4344    <DebugType>pdbonly</DebugType> 
    4445    <Optimize>true</Optimize> 
    45     <OutputPath>%24%28SolutionDir%29%24%28ConfigurationName%29\</OutputPath> 
     46    <OutputPath>..\Release\</OutputPath> 
    4647    <DefineConstants>TRACE</DefineConstants> 
    4748    <ErrorReport>prompt</ErrorReport> 
    4849    <WarningLevel>4</WarningLevel> 
     50    <PlatformTarget>x86</PlatformTarget> 
     51  </PropertyGroup> 
     52  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' "> 
     53    <DebugSymbols>true</DebugSymbols> 
     54    <OutputPath>..\Debug\</OutputPath> 
     55    <DefineConstants>DEBUG;TRACE</DefineConstants> 
     56    <DebugType>full</DebugType> 
     57    <PlatformTarget>x64</PlatformTarget> 
     58    <ErrorReport>prompt</ErrorReport> 
     59  </PropertyGroup> 
     60  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' "> 
     61    <OutputPath>..\Release\</OutputPath> 
     62    <DefineConstants>TRACE</DefineConstants> 
     63    <Optimize>true</Optimize> 
     64    <DebugType>pdbonly</DebugType> 
     65    <PlatformTarget>x64</PlatformTarget> 
     66    <ErrorReport>prompt</ErrorReport> 
     67  </PropertyGroup> 
     68  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> 
     69    <DebugSymbols>true</DebugSymbols> 
     70    <OutputPath>bin\x86\Debug\</OutputPath> 
     71    <DefineConstants>DEBUG;TRACE</DefineConstants> 
     72    <DebugType>full</DebugType> 
     73    <PlatformTarget>x86</PlatformTarget> 
     74    <ErrorReport>prompt</ErrorReport> 
     75  </PropertyGroup> 
     76  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> 
     77    <OutputPath>bin\x86\Release\</OutputPath> 
     78    <DefineConstants>TRACE</DefineConstants> 
     79    <Optimize>true</Optimize> 
     80    <DebugType>pdbonly</DebugType> 
     81    <PlatformTarget>x86</PlatformTarget> 
     82    <ErrorReport>prompt</ErrorReport> 
    4983  </PropertyGroup> 
    5084  <ItemGroup> 
Note: See TracChangeset for help on using the changeset viewer.