added SDFLaz to bigide

git-svn-id: trunk@8653 -
This commit is contained in:
mattias 2006-01-28 23:34:20 +00:00
parent 0ca2a57935
commit c31573e6bc
10 changed files with 2251 additions and 6 deletions

2
.gitattributes vendored
View File

@ -334,6 +334,8 @@ components/rx/strholder.lrs svneol=native#text/pascal
components/rx/strholder.pp svneol=native#text/pascal
components/rx/tmrumanager.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.pas svneol=native#text/pascal
components/sdf/sdflaz.lpk svneol=native#text/pascal

View File

@ -1759,6 +1759,7 @@ bigidecomponents: all
$(MAKE) -C fpcunit/ide
$(MAKE) -C projecttemplates
$(MAKE) -C memds
$(MAKE) -C sdf
ifneq ($(OS_TARGET),darwin)
$(MAKE) -C tdbf
$(MAKE) -C sqldb

View File

@ -31,6 +31,7 @@ bigidecomponents: all
$(MAKE) -C fpcunit/ide
$(MAKE) -C projecttemplates
$(MAKE) -C memds
$(MAKE) -C sdf
ifneq ($(OS_TARGET),darwin)
$(MAKE) -C tdbf
$(MAKE) -C sqldb

2197
components/sdf/Makefile Normal file

File diff suppressed because it is too large Load Diff

View 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)

View File

@ -4,11 +4,16 @@
<Name Value="SDFLaz"/>
<Author Value="Michael Van Canneyt"/>
<CompilerOptions>
<Version Value="5"/>
<SearchPaths>
<UnitOutputDirectory Value="lib/"/>
<UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)/"/>
</SearchPaths>
<CodeGeneration>
<Generate Value="Faster"/>
</CodeGeneration>
<Other>
<CompilerPath Value="$(CompPath)"/>
<CreateMakefileOnBuild Value="True"/>
</Other>
</CompilerOptions>
<Description Value="SDF (fixed/delimited file) dataset package for Lazarus"/>

View File

@ -1,7 +1,6 @@
{ This file was automatically created by Lazarus. Do not edit!
This source is only used to compile and install
the package SDFLaz 0.1.1.
}
This source is only used to compile and install the package.
}
unit SDFLaz;
@ -18,5 +17,5 @@ begin
end;
initialization
RegisterPackage('SDFLaz', @Register)
RegisterPackage('SDFLaz', @Register);
end.

View File

@ -269,6 +269,7 @@ BIG_IDE_OPTIONS=-dBigIDE $(LAZARUS_LIBPATHS) \
-Fu../components/fpcunit/ide/lib/$(CPU_TARGET)-$(OS_TARGET) \
-Fu../components/projecttemplates/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)
ifeq ($(FULL_TARGET),i386-linux)
override TARGET_PROGRAMS+=lazarus startlazarus

View File

@ -104,6 +104,7 @@ BIG_IDE_OPTIONS=-dBigIDE $(LAZARUS_LIBPATHS) \
-Fu../components/fpcunit/ide/lib/$(CPU_TARGET)-$(OS_TARGET) \
-Fu../components/projecttemplates/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)
#-----------------------------------------------------------------------------

View File

@ -57,7 +57,7 @@ uses
{$I staticpackages.inc}
{$ENDIF}
{$IFDEF BigIDE}
RunTimeTypeInfoControls, Printer4Lazarus, CGILaz, CGILazIDE, MemDSLaz,
RunTimeTypeInfoControls, Printer4Lazarus, CGILaz, CGILazIDE, MemDSLaz, SDFLaz,
TurboPowerIPro, JPEGForLazarus, FPCUnitTestRunner, FPCUnitIDE, ProjTemplates,
{$IFDEF Win32}
SQLDBLaz, DBFLaz,