2007-05-29 16:46:50 +00:00
|
|
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
|
|
|
|
|
|
<Import Project="$(BUILDTOOLS)\RodaxSoftware.Delphi.Targets"/>
|
|
|
|
|
<Import Project="$(MSBuildProjectDirectory)\Build.properties"/>
|
|
|
|
|
|
|
|
|
|
<!-- Environment Settings -->
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Release</Configuration>
|
|
|
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
|
|
|
<DCC_DependencyCheckOutputName>$(OutputFolder)\PluginSDK_$(DelphiVersion)D.bpl</DCC_DependencyCheckOutputName>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<!-- 3rd Party Library Settings -->
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<!-- Project Settings -->
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
|
|
|
<DCC_DebugInformation>False</DCC_DebugInformation>
|
|
|
|
|
<DCC_LocalDebugSymbols>False</DCC_LocalDebugSymbols>
|
|
|
|
|
<DCC_SymbolReferenceInfo>0</DCC_SymbolReferenceInfo>
|
|
|
|
|
<DCC_MapFile>0</DCC_MapFile>
|
|
|
|
|
<DCC_BplOutput>$(OutputFolder)</DCC_BplOutput>
|
|
|
|
|
<DCC_DcpOutput>$(OutputFolder)</DCC_DcpOutput>
|
|
|
|
|
<DCC_DcuOutput>$(OutputFolder)</DCC_DcuOutput>
|
|
|
|
|
<DCC_ObjOutput>$(OutputFolder)</DCC_ObjOutput>
|
|
|
|
|
<DCC_UnitSearchPath>$(OutputFolder);$(SourceFolder)</DCC_UnitSearchPath>
|
|
|
|
|
<DCC_ResourcePath>$(OutputFolder)</DCC_ResourcePath>
|
|
|
|
|
<DCC_ObjPath>$(OutputFolder)</DCC_ObjPath>
|
|
|
|
|
<DCC_IncludePath>$(OutputFolder)</DCC_IncludePath>
|
|
|
|
|
<DCC_BuildAllUnits>False</DCC_BuildAllUnits>
|
|
|
|
|
<DCC_Define>RELEASE</DCC_Define>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<!-- Project's Packages -->
|
|
|
|
|
<ItemGroup>
|
2007-05-29 16:56:03 +00:00
|
|
|
<Packages Include="$(PackageFolder)\PluginSDK_$(DelphiVersion)D.dpk" />
|
|
|
|
|
<DelphiCompile Include="@(Packages)"/>
|
2007-05-29 16:46:50 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|