GlyFX Actions / Latest Beta
Posted: Fri Oct 28, 2005 1:35 pm
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:
Which enables easy compilation in the correct order.
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)