mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-17 22:59:15 +02:00
added printer4lazarus and cgilaz to bigide
git-svn-id: trunk@8413 -
This commit is contained in:
parent
17092a4e58
commit
900ebcc63d
5
.gitattributes
vendored
5
.gitattributes
vendored
@ -1,6 +1,8 @@
|
|||||||
* text=auto !eol
|
* text=auto !eol
|
||||||
/COPYING.modifiedLGPL -text svneol=unset#application/octet-stream
|
/COPYING.modifiedLGPL -text svneol=unset#application/octet-stream
|
||||||
components/README.txt svneol=native#text/plain
|
components/README.txt svneol=native#text/plain
|
||||||
|
components/cgi/Makefile svneol=native#text/plain
|
||||||
|
components/cgi/Makefile.fpc svneol=native#text/plain
|
||||||
components/cgi/cgilaz.lpk svneol=native#text/pascal
|
components/cgi/cgilaz.lpk svneol=native#text/pascal
|
||||||
components/cgi/cgimodules.pas svneol=native#text/pascal
|
components/cgi/cgimodules.pas svneol=native#text/pascal
|
||||||
components/cgi/ide/README.txt svneol=native#text/plain
|
components/cgi/ide/README.txt svneol=native#text/plain
|
||||||
@ -208,6 +210,8 @@ components/prettyformat/pfidesource.pas svneol=native#text/plain
|
|||||||
components/prettyformat/prettyformat.lpk svneol=native#text/plain
|
components/prettyformat/prettyformat.lpk svneol=native#text/plain
|
||||||
components/prettyformat/prettyformat.pas svneol=native#text/plain
|
components/prettyformat/prettyformat.pas svneol=native#text/plain
|
||||||
components/prettyformat/ptopu.pp svneol=native#text/plain
|
components/prettyformat/ptopu.pp svneol=native#text/plain
|
||||||
|
components/printers/Makefile svneol=native#text/plain
|
||||||
|
components/printers/Makefile.fpc svneol=native#text/plain
|
||||||
components/printers/linux/cupsdyn.pp svneol=native#text/pascal
|
components/printers/linux/cupsdyn.pp svneol=native#text/pascal
|
||||||
components/printers/linux/cupsprinters.inc svneol=native#text/pascal
|
components/printers/linux/cupsprinters.inc svneol=native#text/pascal
|
||||||
components/printers/linux/cupsprinters_h.inc svneol=native#text/pascal
|
components/printers/linux/cupsprinters_h.inc svneol=native#text/pascal
|
||||||
@ -557,6 +561,7 @@ doceditor/lazdeopts.pp svneol=native#text/pascal
|
|||||||
doceditor/pgeditor.pp svneol=native#text/pascal
|
doceditor/pgeditor.pp svneol=native#text/pascal
|
||||||
doceditor/pkedit.pp svneol=native#text/pascal
|
doceditor/pkedit.pp svneol=native#text/pascal
|
||||||
doceditor/pkeditor.pp svneol=native#text/pascal
|
doceditor/pkeditor.pp svneol=native#text/pascal
|
||||||
|
docs/BigIDE.txt svneol=native#text/plain
|
||||||
docs/Contributors.txt svneol=native#text/plain
|
docs/Contributors.txt svneol=native#text/plain
|
||||||
docs/CrossCompile.txt svneol=native#text/plain
|
docs/CrossCompile.txt svneol=native#text/plain
|
||||||
docs/DesignGuidelines.txt svneol=native#text/plain
|
docs/DesignGuidelines.txt svneol=native#text/plain
|
||||||
|
@ -1739,5 +1739,5 @@ include fpcmake.loc
|
|||||||
endif
|
endif
|
||||||
.phony: bigidecomponents
|
.phony: bigidecomponents
|
||||||
bigidecomponents: all
|
bigidecomponents: all
|
||||||
$(MAKE) -C rtticontrols
|
$(MAKE) -C rtticontrols printers cgi
|
||||||
cleanlaz: clean
|
cleanlaz: clean
|
||||||
|
@ -21,6 +21,6 @@ files=$(wildcard ./units/*$(OEXT)) \
|
|||||||
.phony: bigidecomponents
|
.phony: bigidecomponents
|
||||||
|
|
||||||
bigidecomponents: all
|
bigidecomponents: all
|
||||||
$(MAKE) -C rtticontrols
|
$(MAKE) -C rtticontrols printers cgi
|
||||||
|
|
||||||
cleanlaz: clean
|
cleanlaz: clean
|
||||||
|
2171
components/cgi/Makefile
Normal file
2171
components/cgi/Makefile
Normal file
File diff suppressed because it is too large
Load Diff
27
components/cgi/Makefile.fpc
Normal file
27
components/cgi/Makefile.fpc
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
# Makefile.fpc for cgiLaz 0.1.1
|
||||||
|
|
||||||
|
[package]
|
||||||
|
name=cgilaz
|
||||||
|
version=0.1.1
|
||||||
|
|
||||||
|
[compiler]
|
||||||
|
unittargetdir=lib/$(CPU_TARGET)-$(OS_TARGET)/
|
||||||
|
unitdir=../../lcl/units/$(CPU_TARGET)-$(OS_TARGET)/ ../../lcl/units/$(CPU_TARGET)-$(OS_TARGET)/gtk2/ ../../packager/units/$(CPU_TARGET)-$(OS_TARGET)/ ./
|
||||||
|
options=-gl
|
||||||
|
|
||||||
|
[target]
|
||||||
|
units=cgilaz.pas
|
||||||
|
|
||||||
|
[clean]
|
||||||
|
files=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) \
|
||||||
|
$(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) \
|
||||||
|
$(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) \
|
||||||
|
$(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
|
||||||
|
|
||||||
|
[rules]
|
||||||
|
.PHONY: cleartarget all
|
||||||
|
|
||||||
|
cleartarget:
|
||||||
|
-$(DEL) $(COMPILER_UNITTARGETDIR)/cgilaz$(PPUEXT)
|
||||||
|
|
||||||
|
all: cleartarget $(COMPILER_UNITTARGETDIR) cgilaz$(PPUEXT)
|
@ -4,11 +4,16 @@
|
|||||||
<Name Value="cgiLaz"/>
|
<Name Value="cgiLaz"/>
|
||||||
<Author Value="Mattias Gaertner"/>
|
<Author Value="Mattias Gaertner"/>
|
||||||
<CompilerOptions>
|
<CompilerOptions>
|
||||||
|
<Version Value="5"/>
|
||||||
<SearchPaths>
|
<SearchPaths>
|
||||||
<UnitOutputDirectory Value="lib/"/>
|
<UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)/"/>
|
||||||
</SearchPaths>
|
</SearchPaths>
|
||||||
|
<CodeGeneration>
|
||||||
|
<Generate Value="Faster"/>
|
||||||
|
</CodeGeneration>
|
||||||
<Other>
|
<Other>
|
||||||
<CompilerPath Value="$(CompPath)"/>
|
<CompilerPath Value="$(CompPath)"/>
|
||||||
|
<CreateMakefileOnBuild Value="True"/>
|
||||||
</Other>
|
</Other>
|
||||||
</CompilerOptions>
|
</CompilerOptions>
|
||||||
<Description Value="cgi applications with data modules"/>
|
<Description Value="cgi applications with data modules"/>
|
||||||
|
2171
components/printers/Makefile
Normal file
2171
components/printers/Makefile
Normal file
File diff suppressed because it is too large
Load Diff
27
components/printers/Makefile.fpc
Normal file
27
components/printers/Makefile.fpc
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
# Makefile.fpc for Printer4Lazarus 0.0.0.2
|
||||||
|
|
||||||
|
[package]
|
||||||
|
name=printer4lazarus
|
||||||
|
version=0.0.0.2
|
||||||
|
|
||||||
|
[compiler]
|
||||||
|
unittargetdir=lib/$(CPU_TARGET)-$(OS_TARGET)
|
||||||
|
unitdir=$(OS_TARGET)/ ../../lcl/units/$(CPU_TARGET)-$(OS_TARGET)/ ../../lcl/units/$(CPU_TARGET)-$(OS_TARGET)/gtk/ ../../packager/units/$(CPU_TARGET)-$(OS_TARGET)/ ./
|
||||||
|
options=-gl
|
||||||
|
|
||||||
|
[target]
|
||||||
|
units=printer4lazarus.pas
|
||||||
|
|
||||||
|
[clean]
|
||||||
|
files=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) \
|
||||||
|
$(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) \
|
||||||
|
$(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) \
|
||||||
|
$(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
|
||||||
|
|
||||||
|
[rules]
|
||||||
|
.PHONY: cleartarget all
|
||||||
|
|
||||||
|
cleartarget:
|
||||||
|
-$(DEL) $(COMPILER_UNITTARGETDIR)/printer4lazarus$(PPUEXT)
|
||||||
|
|
||||||
|
all: cleartarget $(COMPILER_UNITTARGETDIR) printer4lazarus$(PPUEXT)
|
@ -1,16 +1,14 @@
|
|||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<CONFIG>
|
<CONFIG>
|
||||||
<Package Version="2">
|
<Package Version="2">
|
||||||
<PathDelim Value="\"/>
|
|
||||||
<Name Value="Printer4Lazarus"/>
|
<Name Value="Printer4Lazarus"/>
|
||||||
<Author Value="Olivier Guilbaud"/>
|
<Author Value="Olivier Guilbaud"/>
|
||||||
<CompilerOptions>
|
<CompilerOptions>
|
||||||
<Version Value="5"/>
|
<Version Value="5"/>
|
||||||
<PathDelim Value="\"/>
|
|
||||||
<SearchPaths>
|
<SearchPaths>
|
||||||
<IncludeFiles Value="$(LazarusDir)\components\printers\$(TargetOS)\"/>
|
<IncludeFiles Value="$(LazarusDir)/components/printers/$(TargetOS)/"/>
|
||||||
<OtherUnitFiles Value="$(LazarusDir)\components\printers\$(TargetOS)\"/>
|
<OtherUnitFiles Value="$(LazarusDir)/components/printers/$(TargetOS)/"/>
|
||||||
<UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)"/>
|
<UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)"/>
|
||||||
</SearchPaths>
|
</SearchPaths>
|
||||||
<CodeGeneration>
|
<CodeGeneration>
|
||||||
<Generate Value="Faster"/>
|
<Generate Value="Faster"/>
|
||||||
@ -19,6 +17,7 @@
|
|||||||
<CustomOptions Value="-dUseCache
|
<CustomOptions Value="-dUseCache
|
||||||
"/>
|
"/>
|
||||||
<CompilerPath Value="$(CompPath)"/>
|
<CompilerPath Value="$(CompPath)"/>
|
||||||
|
<CreateMakefileOnBuild Value="True"/>
|
||||||
</Other>
|
</Other>
|
||||||
</CompilerOptions>
|
</CompilerOptions>
|
||||||
<Description Value="Printer implementation for Lazarus
|
<Description Value="Printer implementation for Lazarus
|
||||||
@ -45,95 +44,95 @@
|
|||||||
<Type Value="Text"/>
|
<Type Value="Text"/>
|
||||||
</Item4>
|
</Item4>
|
||||||
<Item5>
|
<Item5>
|
||||||
<Filename Value="linux\udlgselectprinter.lfm"/>
|
<Filename Value="linux/udlgselectprinter.lfm"/>
|
||||||
<Type Value="LFM"/>
|
<Type Value="LFM"/>
|
||||||
</Item5>
|
</Item5>
|
||||||
<Item6>
|
<Item6>
|
||||||
<Filename Value="linux\udlgselectprinter.lrs"/>
|
<Filename Value="linux/udlgselectprinter.lrs"/>
|
||||||
<Type Value="LRS"/>
|
<Type Value="LRS"/>
|
||||||
</Item6>
|
</Item6>
|
||||||
<Item7>
|
<Item7>
|
||||||
<Filename Value="linux\udlgselectprinter.pp"/>
|
<Filename Value="linux/udlgselectprinter.pp"/>
|
||||||
<AddToUsesPkgSection Value="False"/>
|
<AddToUsesPkgSection Value="False"/>
|
||||||
<UnitName Value="uDlgSelectPrinter"/>
|
<UnitName Value="uDlgSelectPrinter"/>
|
||||||
</Item7>
|
</Item7>
|
||||||
<Item8>
|
<Item8>
|
||||||
<Filename Value="linux\cupsdyn.pp"/>
|
<Filename Value="linux/cupsdyn.pp"/>
|
||||||
<AddToUsesPkgSection Value="False"/>
|
<AddToUsesPkgSection Value="False"/>
|
||||||
<UnitName Value="cupsdyn"/>
|
<UnitName Value="cupsdyn"/>
|
||||||
</Item8>
|
</Item8>
|
||||||
<Item9>
|
<Item9>
|
||||||
<Filename Value="linux\cupsprinters.inc"/>
|
<Filename Value="linux/cupsprinters.inc"/>
|
||||||
<Type Value="Include"/>
|
<Type Value="Include"/>
|
||||||
</Item9>
|
</Item9>
|
||||||
<Item10>
|
<Item10>
|
||||||
<Filename Value="linux\cupsprinters_h.inc"/>
|
<Filename Value="linux/cupsprinters_h.inc"/>
|
||||||
<Type Value="Include"/>
|
<Type Value="Include"/>
|
||||||
</Item10>
|
</Item10>
|
||||||
<Item11>
|
<Item11>
|
||||||
<Filename Value="linux\jobsimglist.lrs"/>
|
<Filename Value="linux/jobsimglist.lrs"/>
|
||||||
<Type Value="LRS"/>
|
<Type Value="LRS"/>
|
||||||
</Item11>
|
</Item11>
|
||||||
<Item12>
|
<Item12>
|
||||||
<Filename Value="linux\printerprop.lrs"/>
|
<Filename Value="linux/printerprop.lrs"/>
|
||||||
<Type Value="LRS"/>
|
<Type Value="LRS"/>
|
||||||
</Item12>
|
</Item12>
|
||||||
<Item13>
|
<Item13>
|
||||||
<Filename Value="linux\selectprinter.lrs"/>
|
<Filename Value="linux/selectprinter.lrs"/>
|
||||||
<Type Value="LRS"/>
|
<Type Value="LRS"/>
|
||||||
</Item13>
|
</Item13>
|
||||||
<Item14>
|
<Item14>
|
||||||
<Filename Value="linux\udlgprintersjobs.lfm"/>
|
<Filename Value="linux/udlgprintersjobs.lfm"/>
|
||||||
<Type Value="LFM"/>
|
<Type Value="LFM"/>
|
||||||
</Item14>
|
</Item14>
|
||||||
<Item15>
|
<Item15>
|
||||||
<Filename Value="linux\udlgprintersjobs.lrs"/>
|
<Filename Value="linux/udlgprintersjobs.lrs"/>
|
||||||
<Type Value="LRS"/>
|
<Type Value="LRS"/>
|
||||||
</Item15>
|
</Item15>
|
||||||
<Item16>
|
<Item16>
|
||||||
<Filename Value="linux\udlgprintersjobs.pp"/>
|
<Filename Value="linux/udlgprintersjobs.pp"/>
|
||||||
<Type Value="Text"/>
|
<Type Value="Text"/>
|
||||||
<UnitName Value="udlgPrintersJobs"/>
|
<UnitName Value="udlgPrintersJobs"/>
|
||||||
</Item16>
|
</Item16>
|
||||||
<Item17>
|
<Item17>
|
||||||
<Filename Value="linux\udlgpropertiesprinter.lfm"/>
|
<Filename Value="linux/udlgpropertiesprinter.lfm"/>
|
||||||
<Type Value="LFM"/>
|
<Type Value="LFM"/>
|
||||||
</Item17>
|
</Item17>
|
||||||
<Item18>
|
<Item18>
|
||||||
<Filename Value="linux\udlgpropertiesprinter.lrs"/>
|
<Filename Value="linux/udlgpropertiesprinter.lrs"/>
|
||||||
<Type Value="LRS"/>
|
<Type Value="LRS"/>
|
||||||
</Item18>
|
</Item18>
|
||||||
<Item19>
|
<Item19>
|
||||||
<Filename Value="linux\udlgpropertiesprinter.pp"/>
|
<Filename Value="linux/udlgpropertiesprinter.pp"/>
|
||||||
<AddToUsesPkgSection Value="False"/>
|
<AddToUsesPkgSection Value="False"/>
|
||||||
<UnitName Value="uDlgPropertiesPrinter"/>
|
<UnitName Value="uDlgPropertiesPrinter"/>
|
||||||
</Item19>
|
</Item19>
|
||||||
<Item20>
|
<Item20>
|
||||||
<Filename Value="linux\udlgselectprinter.lfm"/>
|
<Filename Value="linux/udlgselectprinter.lfm"/>
|
||||||
<Type Value="LFM"/>
|
<Type Value="LFM"/>
|
||||||
</Item20>
|
</Item20>
|
||||||
<Item21>
|
<Item21>
|
||||||
<Filename Value="linux\udlgselectprinter.lrs"/>
|
<Filename Value="linux/udlgselectprinter.lrs"/>
|
||||||
<Type Value="LRS"/>
|
<Type Value="LRS"/>
|
||||||
</Item21>
|
</Item21>
|
||||||
<Item22>
|
<Item22>
|
||||||
<Filename Value="win32\winprinters.inc"/>
|
<Filename Value="win32/winprinters.inc"/>
|
||||||
<Type Value="Include"/>
|
<Type Value="Include"/>
|
||||||
</Item22>
|
</Item22>
|
||||||
<Item23>
|
<Item23>
|
||||||
<Filename Value="win32\winutilprnconst.inc"/>
|
<Filename Value="win32/winutilprnconst.inc"/>
|
||||||
<Type Value="Include"/>
|
<Type Value="Include"/>
|
||||||
</Item23>
|
</Item23>
|
||||||
<Item24>
|
<Item24>
|
||||||
<Filename Value="win32\winprinters_h.inc"/>
|
<Filename Value="win32/winprinters_h.inc"/>
|
||||||
<Type Value="Include"/>
|
<Type Value="Include"/>
|
||||||
</Item24>
|
</Item24>
|
||||||
<Item25>
|
<Item25>
|
||||||
<Filename Value="win32\winprndialogs.inc"/>
|
<Filename Value="win32/winprndialogs.inc"/>
|
||||||
<Type Value="Include"/>
|
<Type Value="Include"/>
|
||||||
</Item25>
|
</Item25>
|
||||||
<Item26>
|
<Item26>
|
||||||
<Filename Value="linux\cupsprndialogs.inc"/>
|
<Filename Value="linux/cupsprndialogs.inc"/>
|
||||||
<Type Value="Include"/>
|
<Type Value="Include"/>
|
||||||
</Item26>
|
</Item26>
|
||||||
</Files>
|
</Files>
|
||||||
@ -148,11 +147,10 @@
|
|||||||
</Item2>
|
</Item2>
|
||||||
</RequiredPkgs>
|
</RequiredPkgs>
|
||||||
<UsageOptions>
|
<UsageOptions>
|
||||||
<UnitPath Value="$(PkgOutDir)\"/>
|
<UnitPath Value="$(PkgOutDir)/"/>
|
||||||
</UsageOptions>
|
</UsageOptions>
|
||||||
<PublishOptions>
|
<PublishOptions>
|
||||||
<Version Value="2"/>
|
<Version Value="2"/>
|
||||||
<DestinationDirectory Value="$(TestDir)\publishedpackage\"/>
|
|
||||||
<CommandAfter Value="tar czf $MakeFile($(ProjPublishDir)).tgz $(ProjPublishDir)"/>
|
<CommandAfter Value="tar czf $MakeFile($(ProjPublishDir)).tgz $(ProjPublishDir)"/>
|
||||||
</PublishOptions>
|
</PublishOptions>
|
||||||
</Package>
|
</Package>
|
||||||
|
11
docs/BigIDE.txt
Normal file
11
docs/BigIDE.txt
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
How to add a package to the big IDE:
|
||||||
|
|
||||||
|
Enable the package compiler option 'Create Makefile' and compile the package
|
||||||
|
once in the IDE to create the Makefile and Makefile.fpc.
|
||||||
|
Add them to svn.
|
||||||
|
|
||||||
|
ide/Makefile.fpc Unitpaths and flags
|
||||||
|
components/Makefile.fpc package directories
|
||||||
|
ide/lazarus.pp package names
|
||||||
|
|
||||||
|
Do not forget update the ide/Makefile and components/Makefile.
|
@ -257,7 +257,10 @@ LAZARUS_OPT=$(LAZARUS_LIBPATHS)
|
|||||||
ifeq ($(OS_TARGET),win32)
|
ifeq ($(OS_TARGET),win32)
|
||||||
LAZARUS_OPT+= -WG
|
LAZARUS_OPT+= -WG
|
||||||
endif
|
endif
|
||||||
BIG_IDE_OPTIONS=-dBigIDE -Fu../components/rtticontrols/lib/$(CPU_TARGET)-$(OS_TARGET)
|
BIG_IDE_OPTIONS=-dBigIDE \
|
||||||
|
-Fu../components/rtticontrols/lib/$(CPU_TARGET)-$(OS_TARGET) \
|
||||||
|
-Fu../components/printers/lib/$(CPU_TARGET)-$(OS_TARGET) \
|
||||||
|
-Fu../components/cgi/lib/$(CPU_TARGET)-$(OS_TARGET)
|
||||||
ifeq ($(FULL_TARGET),i386-linux)
|
ifeq ($(FULL_TARGET),i386-linux)
|
||||||
override TARGET_PROGRAMS+=lazarus startlazarus
|
override TARGET_PROGRAMS+=lazarus startlazarus
|
||||||
endif
|
endif
|
||||||
|
@ -92,8 +92,10 @@ endif
|
|||||||
|
|
||||||
#
|
#
|
||||||
# Options to compile an IDE with a lot of packages
|
# Options to compile an IDE with a lot of packages
|
||||||
BIG_IDE_OPTIONS=-dBigIDE -Fu../components/rtticontrols/lib/$(CPU_TARGET)-$(OS_TARGET)
|
BIG_IDE_OPTIONS=-dBigIDE \
|
||||||
|
-Fu../components/rtticontrols/lib/$(CPU_TARGET)-$(OS_TARGET) \
|
||||||
|
-Fu../components/printers/lib/$(CPU_TARGET)-$(OS_TARGET) \
|
||||||
|
-Fu../components/cgi/lib/$(CPU_TARGET)-$(OS_TARGET)
|
||||||
|
|
||||||
#-----------------------------------------------------------------------------
|
#-----------------------------------------------------------------------------
|
||||||
[rules]
|
[rules]
|
||||||
|
@ -57,7 +57,7 @@ uses
|
|||||||
{$I staticpackages.inc}
|
{$I staticpackages.inc}
|
||||||
{$ENDIF}
|
{$ENDIF}
|
||||||
{$IFDEF BigIDE}
|
{$IFDEF BigIDE}
|
||||||
RunTimeTypeInfoControls,
|
RunTimeTypeInfoControls, Printer4Lazarus, CGILaz,
|
||||||
{$ENDIF}
|
{$ENDIF}
|
||||||
MainBase;
|
MainBase;
|
||||||
|
|
||||||
|
@ -3790,8 +3790,8 @@ begin
|
|||||||
if CodeToolBoss.SetGlobalValue(ExternalMacroStart+'LCLWidgetType',
|
if CodeToolBoss.SetGlobalValue(ExternalMacroStart+'LCLWidgetType',
|
||||||
Owner.CompilerOptions.GetEffectiveLCLWidgetType)
|
Owner.CompilerOptions.GetEffectiveLCLWidgetType)
|
||||||
then begin
|
then begin
|
||||||
DebugLn('TProjectDefineTemplates.UpdateGlobalValues '
|
//DebugLn('TProjectDefineTemplates.UpdateGlobalValues '
|
||||||
,' LCLWidgetType="',CodeToolBoss.GlobalValues.Variables[ExternalMacroStart+'LCLWidgetType'],'" Effective="',Owner.CompilerOptions.GetEffectiveLCLWidgetType,'" Options="',Owner.CompilerOptions.LCLWidgetType,'"');
|
//,' LCLWidgetType="',CodeToolBoss.GlobalValues.Variables[ExternalMacroStart+'LCLWidgetType'],'" Effective="',Owner.CompilerOptions.GetEffectiveLCLWidgetType,'" Options="',Owner.CompilerOptions.LCLWidgetType,'"');
|
||||||
Changed:=true;
|
Changed:=true;
|
||||||
end;
|
end;
|
||||||
if Owner.IsVirtual then
|
if Owner.IsVirtual then
|
||||||
|
Loading…
Reference in New Issue
Block a user