Subject | Re: [IBO] IBO 46 in BDS 2006 CBuilder personality (BCB2006) |
---|---|
Author | Gary Benade |
Post date | 2006-03-12T08:30:28Z |
> Does anyone know if there are compiler directives that can be put in theThere was an update to that post you may have missed. Here it is again.
> sources that the compiler will respect when producing the HPP files so
> that
> these manual adjustments are not necessary? I am working on getting the
> next sub-release of IBO out and I would like to get it to work with
> CBuilder
> 2006.
>
> Jason Wharton
Leave all source code as is, and change IB_Directives.inc
{$IFDEF VER180} // Delphi v2006
{$IFNDEF BCB}
{$DEFINE IBO_VCL2006_OR_GREATER} // Delphi v2005 or greater
{$DEFINE IBO_VCL2005_OR_GREATER} // Delphi v2005 or greater
{$DEFINE IBO_DELPHI_2006}
{$DEFINE IBO_VCL2006}
{$DEFINE IBO_SUPPORTED_COMPILER}
{$DEFINE IBO_CPPB} // <<-- Add this line
{$ENDIF}
{$ENDIF}
Change to Delphi Win32 personality
Open IBO40_D2006.bdsgroup
for each and every bpl in the group, select Options->Linker->Generate all
c++Builder files
Compile all and install Design components.
Switch to CBuilder personality and components should still be installed
Finished testing in both personalities and everything is working.
Gary