mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-13 16:49:07 +02:00
added SDFLaz to bigide
git-svn-id: trunk@8653 -
This commit is contained in:
parent
0ca2a57935
commit
c31573e6bc
2
.gitattributes
vendored
2
.gitattributes
vendored
@ -334,6 +334,8 @@ components/rx/strholder.lrs svneol=native#text/pascal
|
|||||||
components/rx/strholder.pp svneol=native#text/pascal
|
components/rx/strholder.pp svneol=native#text/pascal
|
||||||
components/rx/tmrumanager.xpm -text svneol=native#image/x-xpixmap
|
components/rx/tmrumanager.xpm -text svneol=native#image/x-xpixmap
|
||||||
components/rx/tstrholder.xpm -text svneol=native#image/x-xpixmap
|
components/rx/tstrholder.xpm -text svneol=native#image/x-xpixmap
|
||||||
|
components/sdf/Makefile svneol=native#text/plain
|
||||||
|
components/sdf/Makefile.fpc svneol=native#text/plain
|
||||||
components/sdf/registersdf.lrs svneol=native#text/pascal
|
components/sdf/registersdf.lrs svneol=native#text/pascal
|
||||||
components/sdf/registersdf.pas svneol=native#text/pascal
|
components/sdf/registersdf.pas svneol=native#text/pascal
|
||||||
components/sdf/sdflaz.lpk svneol=native#text/pascal
|
components/sdf/sdflaz.lpk svneol=native#text/pascal
|
||||||
|
@ -1759,6 +1759,7 @@ bigidecomponents: all
|
|||||||
$(MAKE) -C fpcunit/ide
|
$(MAKE) -C fpcunit/ide
|
||||||
$(MAKE) -C projecttemplates
|
$(MAKE) -C projecttemplates
|
||||||
$(MAKE) -C memds
|
$(MAKE) -C memds
|
||||||
|
$(MAKE) -C sdf
|
||||||
ifneq ($(OS_TARGET),darwin)
|
ifneq ($(OS_TARGET),darwin)
|
||||||
$(MAKE) -C tdbf
|
$(MAKE) -C tdbf
|
||||||
$(MAKE) -C sqldb
|
$(MAKE) -C sqldb
|
||||||
|
@ -31,6 +31,7 @@ bigidecomponents: all
|
|||||||
$(MAKE) -C fpcunit/ide
|
$(MAKE) -C fpcunit/ide
|
||||||
$(MAKE) -C projecttemplates
|
$(MAKE) -C projecttemplates
|
||||||
$(MAKE) -C memds
|
$(MAKE) -C memds
|
||||||
|
$(MAKE) -C sdf
|
||||||
ifneq ($(OS_TARGET),darwin)
|
ifneq ($(OS_TARGET),darwin)
|
||||||
$(MAKE) -C tdbf
|
$(MAKE) -C tdbf
|
||||||
$(MAKE) -C sqldb
|
$(MAKE) -C sqldb
|
||||||
|
2197
components/sdf/Makefile
Normal file
2197
components/sdf/Makefile
Normal file
File diff suppressed because it is too large
Load Diff
38
components/sdf/Makefile.fpc
Normal file
38
components/sdf/Makefile.fpc
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
# Makefile.fpc for SDFLaz 0.1.1
|
||||||
|
|
||||||
|
[package]
|
||||||
|
name=sdflaz
|
||||||
|
version=0.1.1
|
||||||
|
|
||||||
|
[compiler]
|
||||||
|
unittargetdir=lib/$(CPU_TARGET)-$(OS_TARGET)
|
||||||
|
unitdir=../../lcl/units/$(CPU_TARGET)-$(OS_TARGET)/ ../../lcl/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ ../../packager/units/$(CPU_TARGET)-$(OS_TARGET)/
|
||||||
|
options=-dLCL -dLCL$(LCL_PLATFORM) -S2 -gl
|
||||||
|
|
||||||
|
[target]
|
||||||
|
units=sdflaz.pas
|
||||||
|
|
||||||
|
[clean]
|
||||||
|
files=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) \
|
||||||
|
$(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) \
|
||||||
|
$(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) \
|
||||||
|
$(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) \
|
||||||
|
$(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
|
||||||
|
[prerules]
|
||||||
|
# LCL Platform
|
||||||
|
ifndef LCL_PLATFORM
|
||||||
|
ifeq ($(OS_TARGET),win32)
|
||||||
|
LCL_PLATFORM=win32
|
||||||
|
else
|
||||||
|
LCL_PLATFORM=gtk
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
export LCL_PLATFORM
|
||||||
|
|
||||||
|
[rules]
|
||||||
|
.PHONY: cleartarget all
|
||||||
|
|
||||||
|
cleartarget:
|
||||||
|
-$(DEL) $(COMPILER_UNITTARGETDIR)/sdflaz$(PPUEXT)
|
||||||
|
|
||||||
|
all: cleartarget $(COMPILER_UNITTARGETDIR) sdflaz$(PPUEXT)
|
@ -4,11 +4,16 @@
|
|||||||
<Name Value="SDFLaz"/>
|
<Name Value="SDFLaz"/>
|
||||||
<Author Value="Michael Van Canneyt"/>
|
<Author Value="Michael Van Canneyt"/>
|
||||||
<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="SDF (fixed/delimited file) dataset package for Lazarus"/>
|
<Description Value="SDF (fixed/delimited file) dataset package for Lazarus"/>
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
{ This file was automatically created by Lazarus. Do not edit!
|
{ This file was automatically created by Lazarus. Do not edit!
|
||||||
This source is only used to compile and install
|
This source is only used to compile and install the package.
|
||||||
the package SDFLaz 0.1.1.
|
}
|
||||||
}
|
|
||||||
|
|
||||||
unit SDFLaz;
|
unit SDFLaz;
|
||||||
|
|
||||||
@ -18,5 +17,5 @@ begin
|
|||||||
end;
|
end;
|
||||||
|
|
||||||
initialization
|
initialization
|
||||||
RegisterPackage('SDFLaz', @Register)
|
RegisterPackage('SDFLaz', @Register);
|
||||||
end.
|
end.
|
||||||
|
@ -269,6 +269,7 @@ BIG_IDE_OPTIONS=-dBigIDE $(LAZARUS_LIBPATHS) \
|
|||||||
-Fu../components/fpcunit/ide/lib/$(CPU_TARGET)-$(OS_TARGET) \
|
-Fu../components/fpcunit/ide/lib/$(CPU_TARGET)-$(OS_TARGET) \
|
||||||
-Fu../components/projecttemplates/lib/$(CPU_TARGET)-$(OS_TARGET) \
|
-Fu../components/projecttemplates/lib/$(CPU_TARGET)-$(OS_TARGET) \
|
||||||
-Fu../components/sqldb/lib/$(CPU_TARGET)-$(OS_TARGET) \
|
-Fu../components/sqldb/lib/$(CPU_TARGET)-$(OS_TARGET) \
|
||||||
|
-Fu../components/sdf/lib/$(CPU_TARGET)-$(OS_TARGET) \
|
||||||
-Fu../components/memds/lib/$(CPU_TARGET)-$(OS_TARGET)
|
-Fu../components/memds/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
|
||||||
|
@ -104,6 +104,7 @@ BIG_IDE_OPTIONS=-dBigIDE $(LAZARUS_LIBPATHS) \
|
|||||||
-Fu../components/fpcunit/ide/lib/$(CPU_TARGET)-$(OS_TARGET) \
|
-Fu../components/fpcunit/ide/lib/$(CPU_TARGET)-$(OS_TARGET) \
|
||||||
-Fu../components/projecttemplates/lib/$(CPU_TARGET)-$(OS_TARGET) \
|
-Fu../components/projecttemplates/lib/$(CPU_TARGET)-$(OS_TARGET) \
|
||||||
-Fu../components/sqldb/lib/$(CPU_TARGET)-$(OS_TARGET) \
|
-Fu../components/sqldb/lib/$(CPU_TARGET)-$(OS_TARGET) \
|
||||||
|
-Fu../components/sdf/lib/$(CPU_TARGET)-$(OS_TARGET) \
|
||||||
-Fu../components/memds/lib/$(CPU_TARGET)-$(OS_TARGET)
|
-Fu../components/memds/lib/$(CPU_TARGET)-$(OS_TARGET)
|
||||||
|
|
||||||
#-----------------------------------------------------------------------------
|
#-----------------------------------------------------------------------------
|
||||||
|
@ -57,7 +57,7 @@ uses
|
|||||||
{$I staticpackages.inc}
|
{$I staticpackages.inc}
|
||||||
{$ENDIF}
|
{$ENDIF}
|
||||||
{$IFDEF BigIDE}
|
{$IFDEF BigIDE}
|
||||||
RunTimeTypeInfoControls, Printer4Lazarus, CGILaz, CGILazIDE, MemDSLaz,
|
RunTimeTypeInfoControls, Printer4Lazarus, CGILaz, CGILazIDE, MemDSLaz, SDFLaz,
|
||||||
TurboPowerIPro, JPEGForLazarus, FPCUnitTestRunner, FPCUnitIDE, ProjTemplates,
|
TurboPowerIPro, JPEGForLazarus, FPCUnitTestRunner, FPCUnitIDE, ProjTemplates,
|
||||||
{$IFDEF Win32}
|
{$IFDEF Win32}
|
||||||
SQLDBLaz, DBFLaz,
|
SQLDBLaz, DBFLaz,
|
||||||
|
Loading…
Reference in New Issue
Block a user