mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-22 16:19:27 +02:00
virtualtreeview: added makefiles
git-svn-id: trunk@58115 -
This commit is contained in:
parent
3c590afa4f
commit
cd2840c6d6
3
.gitattributes
vendored
3
.gitattributes
vendored
@ -5210,6 +5210,9 @@ components/turbopower_ipro/tiphttpdataprovider_200.png -text
|
|||||||
components/turbopower_ipro/turbopoweripro.lpk svneol=native#text/pascal
|
components/turbopower_ipro/turbopoweripro.lpk svneol=native#text/pascal
|
||||||
components/turbopower_ipro/turbopoweripro.pas svneol=native#text/plain
|
components/turbopower_ipro/turbopoweripro.pas svneol=native#text/plain
|
||||||
components/virtualtreeview/CHANGES.txt svneol=native#text/plain
|
components/virtualtreeview/CHANGES.txt svneol=native#text/plain
|
||||||
|
components/virtualtreeview/Makefile svneol=native#text/plain
|
||||||
|
components/virtualtreeview/Makefile.compiled svneol=native#text/plain
|
||||||
|
components/virtualtreeview/Makefile.fpc svneol=native#text/plain
|
||||||
components/virtualtreeview/VTAccessibility.pas svneol=native#text/pascal
|
components/virtualtreeview/VTAccessibility.pas svneol=native#text/pascal
|
||||||
components/virtualtreeview/VTAccessibilityFactory.pas svneol=native#text/pascal
|
components/virtualtreeview/VTAccessibilityFactory.pas svneol=native#text/pascal
|
||||||
components/virtualtreeview/VTConfig.inc svneol=native#text/plain
|
components/virtualtreeview/VTConfig.inc svneol=native#text/plain
|
||||||
|
3469
components/virtualtreeview/Makefile
Normal file
3469
components/virtualtreeview/Makefile
Normal file
File diff suppressed because it is too large
Load Diff
5
components/virtualtreeview/Makefile.compiled
Normal file
5
components/virtualtreeview/Makefile.compiled
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<CONFIG>
|
||||||
|
<Makefile Value="2"/>
|
||||||
|
<Params Value=" -Fuunits/$(LCL_PLATFORM);../../packager/units/$(CPU_TARGET)-$(OS_TARGET);../lazutils/lib/$(CPU_TARGET)-$(OS_TARGET);../../lcl/units/$(CPU_TARGET)-$(OS_TARGET);../../lcl/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM);../lazcontrols/lib/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM);../lclextensions/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM);../ideintf/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM);. -Fiinclude/intf/$(LCL_PLATFORM);units;include/intf -MObjFPC -Scgim -O1 -g -gl -l -vewnhibq -dLCL -dLCL$(LCL_PLATFORM) virtualtreeview_package.pas"/>
|
||||||
|
</CONFIG>
|
65
components/virtualtreeview/Makefile.fpc
Normal file
65
components/virtualtreeview/Makefile.fpc
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
# File generated automatically by Lazarus Package Manager
|
||||||
|
#
|
||||||
|
# Makefile.fpc for virtualtreeview_package 5.5.3.1
|
||||||
|
#
|
||||||
|
# This file was generated on 04.06.2018
|
||||||
|
|
||||||
|
[package]
|
||||||
|
name=virtualtreeview_package
|
||||||
|
version=5.5.3.1
|
||||||
|
|
||||||
|
[compiler]
|
||||||
|
unittargetdir=lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)
|
||||||
|
unitdir=units/$(LCL_PLATFORM) ../../packager/units/$(CPU_TARGET)-$(OS_TARGET) ../lazutils/lib/$(CPU_TARGET)-$(OS_TARGET) ../../lcl/units/$(CPU_TARGET)-$(OS_TARGET) ../../lcl/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM) ../lazcontrols/lib/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM) ../lclextensions/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM) ../ideintf/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM) .
|
||||||
|
includedir=include/intf/$(LCL_PLATFORM) units include/intf
|
||||||
|
options= -MObjFPC -Scgim -O1 -g -gl -l -vewnhibq -dLCL -dLCL$(LCL_PLATFORM) $(DBG_OPTIONS)
|
||||||
|
|
||||||
|
[target]
|
||||||
|
units=virtualtreeview_package.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=carbon
|
||||||
|
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)/virtualtreeview_package$(PPUEXT)
|
||||||
|
|
||||||
|
compiled:
|
||||||
|
$(CPPROG) -f Makefile.compiled $(COMPILER_UNITTARGETDIR)/virtualtreeview_package.compiled
|
||||||
|
|
||||||
|
all: cleartarget $(COMPILER_UNITTARGETDIR) virtualtreeview_package$(PPUEXT) compiled
|
||||||
|
|
||||||
|
distclean: clean
|
||||||
|
${DELTREE} lib/*
|
Loading…
Reference in New Issue
Block a user