mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-14 19:59:14 +02:00
bigide: added testinsight
This commit is contained in:
parent
8c9bd916a5
commit
adc6d38b6c
@ -1930,6 +1930,7 @@ bigide:
|
||||
$(MAKE) -C turbopower_ipro
|
||||
$(MAKE) -C turbopower_ipro/design
|
||||
$(MAKE) -C fpcunit
|
||||
$(MAKE) -C fpcunit/testinsight
|
||||
$(MAKE) -C fpcunit/ide
|
||||
$(MAKE) -C projecttemplates
|
||||
$(MAKE) -C leakview
|
||||
@ -1979,6 +1980,7 @@ clean:
|
||||
$(MAKE) -C turbopower_ipro clean
|
||||
$(MAKE) -C turbopower_ipro/design clean
|
||||
$(MAKE) -C fpcunit clean
|
||||
$(MAKE) -C fpcunit/testinsight clean
|
||||
$(MAKE) -C fpcunit/ide clean
|
||||
$(MAKE) -C projecttemplates clean
|
||||
$(MAKE) -C fpdebug clean
|
||||
@ -2037,6 +2039,7 @@ distclean:
|
||||
$(MAKE) -C turbopower_ipro distclean
|
||||
$(MAKE) -C turbopower_ipro/design distclean
|
||||
$(MAKE) -C fpcunit distclean
|
||||
$(MAKE) -C fpcunit/testinsight distclean
|
||||
$(MAKE) -C fpcunit/ide distclean
|
||||
$(MAKE) -C projecttemplates distclean
|
||||
$(MAKE) -C fpdebug distclean
|
||||
|
@ -78,6 +78,7 @@ bigide:
|
||||
$(MAKE) -C turbopower_ipro
|
||||
$(MAKE) -C turbopower_ipro/design
|
||||
$(MAKE) -C fpcunit
|
||||
$(MAKE) -C fpcunit/testinsight
|
||||
$(MAKE) -C fpcunit/ide
|
||||
$(MAKE) -C projecttemplates
|
||||
$(MAKE) -C leakview
|
||||
@ -129,6 +130,7 @@ clean:
|
||||
$(MAKE) -C turbopower_ipro clean
|
||||
$(MAKE) -C turbopower_ipro/design clean
|
||||
$(MAKE) -C fpcunit clean
|
||||
$(MAKE) -C fpcunit/testinsight clean
|
||||
$(MAKE) -C fpcunit/ide clean
|
||||
$(MAKE) -C projecttemplates clean
|
||||
$(MAKE) -C fpdebug clean
|
||||
@ -189,6 +191,7 @@ distclean:
|
||||
$(MAKE) -C turbopower_ipro distclean
|
||||
$(MAKE) -C turbopower_ipro/design distclean
|
||||
$(MAKE) -C fpcunit distclean
|
||||
$(MAKE) -C fpcunit/testinsight distclean
|
||||
$(MAKE) -C fpcunit/ide distclean
|
||||
$(MAKE) -C projecttemplates distclean
|
||||
$(MAKE) -C fpdebug distclean
|
||||
|
3791
components/fpcunit/testinsight/Makefile
Normal file
3791
components/fpcunit/testinsight/Makefile
Normal file
File diff suppressed because it is too large
Load Diff
5
components/fpcunit/testinsight/Makefile.compiled
Normal file
5
components/fpcunit/testinsight/Makefile.compiled
Normal file
@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<CONFIG>
|
||||
<Makefile Value="2"/>
|
||||
<Params Value="-Fu.;../../../packager/units/$(CPU_TARGET)-$(OS_TARGET) -MObjFPC -Scghi -O1 -g -gl -l -vewnhibq laztestinsight.pas"/>
|
||||
</CONFIG>
|
64
components/fpcunit/testinsight/Makefile.fpc
Normal file
64
components/fpcunit/testinsight/Makefile.fpc
Normal file
@ -0,0 +1,64 @@
|
||||
# File generated automatically by Lazarus Package Manager
|
||||
#
|
||||
# Makefile.fpc for laztestinsight 0.0
|
||||
#
|
||||
# This file was generated on 25.11.2023
|
||||
|
||||
[package]
|
||||
name=laztestinsight
|
||||
version=0.0
|
||||
|
||||
[compiler]
|
||||
unittargetdir=lib/$(CPU_TARGET)-$(OS_TARGET)
|
||||
unitdir=. ../../../packager/units/$(CPU_TARGET)-$(OS_TARGET)
|
||||
options=-MObjFPC -Scghi -O1 -g -gl -l -vewnhibq $(DBG_OPTIONS)
|
||||
|
||||
[target]
|
||||
units=laztestinsight.pas
|
||||
|
||||
[clean]
|
||||
files=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) \
|
||||
$(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) \
|
||||
$(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) \
|
||||
$(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) \
|
||||
$(wildcard $(COMPILER_UNITTARGETDIR)/*.res) \
|
||||
$(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) \
|
||||
$(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
|
||||
|
||||
[prerules]
|
||||
# LCL Platform
|
||||
ifndef LCL_PLATFORM
|
||||
ifeq ($(OS_TARGET),win32)
|
||||
LCL_PLATFORM=win32
|
||||
else
|
||||
ifeq ($(OS_TARGET),win64)
|
||||
LCL_PLATFORM=win32
|
||||
else
|
||||
ifeq ($(OS_TARGET),darwin)
|
||||
LCL_PLATFORM=cocoa
|
||||
else
|
||||
LCL_PLATFORM=gtk2
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
export LCL_PLATFORM
|
||||
|
||||
DBG_OPTIONS=
|
||||
ifeq ($(OS_TARGET),darwin)
|
||||
DBG_OPTIONS=-gw
|
||||
endif
|
||||
|
||||
[rules]
|
||||
.PHONY: cleartarget compiled all
|
||||
|
||||
cleartarget:
|
||||
-$(DEL) $(COMPILER_UNITTARGETDIR)/laztestinsight$(PPUEXT)
|
||||
|
||||
compiled:
|
||||
$(CPPROG) -f Makefile.compiled $(COMPILER_UNITTARGETDIR)/laztestinsight.compiled
|
||||
|
||||
all: cleartarget $(COMPILER_UNITTARGETDIR) laztestinsight$(PPUEXT) compiled
|
||||
|
||||
distclean: clean
|
||||
${DELTREE} lib/*
|
@ -1,14 +0,0 @@
|
||||
{$mode objfpc}
|
||||
{$h+}
|
||||
uses svrtestinsight;
|
||||
|
||||
begin
|
||||
With TTestInsightResult.Create do
|
||||
try
|
||||
TestResult:=rtPassed;
|
||||
TestName:='Suite1.Test1';
|
||||
writeln(ToJSON);
|
||||
Finally
|
||||
free;
|
||||
end;
|
||||
end.
|
@ -425,6 +425,7 @@ BIG_IDE_OPTIONS=-dBigIDE $(DEFAULT_IDE_OPTIONS) \
|
||||
-Fu../components/turbopower_ipro/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM) \
|
||||
-Fu../components/turbopower_ipro/design/lib/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM) \
|
||||
-Fu../components/fpcunit/lib/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM) \
|
||||
-Fu../components/fpcunit/testinsight/lib/$(CPU_TARGET)-$(OS_TARGET) \
|
||||
-Fu../components/fpcunit/ide/lib/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM) \
|
||||
-Fu../components/projecttemplates/lib/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM) \
|
||||
-Fu../components/sqldb/lib/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM) \
|
||||
|
@ -123,6 +123,7 @@ BIG_IDE_OPTIONS=-dBigIDE $(DEFAULT_IDE_OPTIONS) \
|
||||
-Fu../components/turbopower_ipro/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM) \
|
||||
-Fu../components/turbopower_ipro/design/lib/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM) \
|
||||
-Fu../components/fpcunit/lib/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM) \
|
||||
-Fu../components/fpcunit/testinsight/lib/$(CPU_TARGET)-$(OS_TARGET) \
|
||||
-Fu../components/fpcunit/ide/lib/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM) \
|
||||
-Fu../components/projecttemplates/lib/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM) \
|
||||
-Fu../components/sqldb/lib/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM) \
|
||||
|
Loading…
Reference in New Issue
Block a user