mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 23:38:02 +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/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
|
||||
|
@ -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
|
||||
|
@ -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
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"/>
|
||||
<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"/>
|
||||
|
@ -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.
|
||||
|
@ -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
|
||||
|
@ -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)
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
|
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user