GlyFX Actions / Latest Beta

General TRichView support forum. Please post your questions here
Post Reply
wvd_vegt
Posts: 83
Joined: Tue Aug 30, 2005 7:39 am

GlyFX Actions / Latest Beta

Post by wvd_vegt »

Hi Sergey,

Some remarks on the latest beta:

The USEGLYFX define isn't applied everywhere. For example in rvActionsReg.pas and rvActionsRunD7 it's missing, so dmAction gets used and you end up with a duplicate resources warning.

And you forgot to include RVPopup in RVPkgD7.

Perhaps an idea is to include a bpg projectgroup in the distribution like:

Code: Select all

#------------------------------------------------------------------------------
VERSION = BWS.01
#------------------------------------------------------------------------------
!ifndef ROOT
ROOT = $(MAKEDIR)\..
!endif
#------------------------------------------------------------------------------
MAKE = $(ROOT)\bin\make.exe -$(MAKEFLAGS) -f$**
DCC = $(ROOT)\bin\dcc32.exe $**
BRCC = $(ROOT)\bin\brcc32.exe $**
#------------------------------------------------------------------------------
PROJECTS = RVPkgD7.bpl rvActionsD7.bpl rvActionsRunD7.bpl RVDBPkgD7.bpl
#------------------------------------------------------------------------------
default: $(PROJECTS)
#------------------------------------------------------------------------------

RVPkgD7.bpl: RVPkgD7.dpk
  $(DCC)

rvActionsD7.bpl: rvActionsD7.dpk
  $(DCC)

rvActionsRunD7.bpl: rvActionsRunD7.dpk
  $(DCC)

RVDBPkgD7.bpl: RVDBPkgD7.dpk
  $(DCC)
Which enables easy compilation in the correct order.
Post Reply