mouseandkeyinput: added makefiles

git-svn-id: trunk@64566 -
This commit is contained in:
mattias 2021-02-13 13:00:58 +00:00
parent 7282d3c425
commit 2cf64fa695
5 changed files with 3756 additions and 12 deletions

3
.gitattributes vendored
View File

@ -3655,6 +3655,9 @@ components/messagecomposer/messagecomposer.lfm svneol=native#text/plain
components/messagecomposer/messagecomposer.pas svneol=native#text/plain
components/messagecomposer/messagecomposerpkg.lpk svneol=native#text/plain
components/messagecomposer/messagecomposerpkg.pas svneol=native#text/plain
components/mouseandkeyinput/Makefile svneol=native#text/plain
components/mouseandkeyinput/Makefile.compiled svneol=native#text/plain
components/mouseandkeyinput/Makefile.fpc svneol=native#text/plain
components/mouseandkeyinput/carbonkeyinput.pas svneol=native#text/pascal
components/mouseandkeyinput/carbonmouseinput.pas svneol=native#text/pascal
components/mouseandkeyinput/example/project1.lpi svneol=native#text/xml

File diff suppressed because it is too large Load Diff

View 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);../lazutils/lib/$(CPU_TARGET)-$(OS_TARGET);../freetype/lib/$(CPU_TARGET)-$(OS_TARGET);../../lcl/units/$(CPU_TARGET)-$(OS_TARGET);../../lcl/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM);. -MObjFPC -Sci -O1 -g -gl -l -vewnhibq -dLCL -dLCL$(LCL_PLATFORM) lazmouseandkeyinput.pas"/>
</CONFIG>

View File

@ -0,0 +1,64 @@
# File generated automatically by Lazarus Package Manager
#
# Makefile.fpc for LazMouseAndKeyInput 0.1
#
# This file was generated on 13.02.2021
[package]
name=lazmouseandkeyinput
version=0.1
[compiler]
unittargetdir=lib/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)
unitdir=../../packager/units/$(CPU_TARGET)-$(OS_TARGET) ../lazutils/lib/$(CPU_TARGET)-$(OS_TARGET) ../freetype/lib/$(CPU_TARGET)-$(OS_TARGET) ../../lcl/units/$(CPU_TARGET)-$(OS_TARGET) ../../lcl/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM) .
options= -MObjFPC -Sci -O1 -g -gl -l -vewnhibq -dLCL -dLCL$(LCL_PLATFORM) $(DBG_OPTIONS)
[target]
units=lazmouseandkeyinput.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)/lazmouseandkeyinput$(PPUEXT)
compiled:
$(CPPROG) -f Makefile.compiled $(COMPILER_UNITTARGETDIR)/LazMouseAndKeyInput.compiled
all: cleartarget $(COMPILER_UNITTARGETDIR) lazmouseandkeyinput$(PPUEXT) compiled
distclean: clean
${DELTREE} lib/*

View File

@ -1,21 +1,22 @@
<?xml version="1.0"?>
<?xml version="1.0" encoding="UTF-8"?>
<CONFIG>
<Package Version="3">
<Package Version="5">
<PathDelim Value="\"/>
<Name Value="LazMouseAndKeyInput"/>
<AddToProjectUsesSection Value="True"/>
<Author Value="Tom Gregorovic"/>
<CompilerOptions>
<Version Value="5"/>
<Version Value="11"/>
<PathDelim Value="\"/>
<SearchPaths>
<UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)"/>
<UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)\$(LCLWidgetType)"/>
</SearchPaths>
<CodeGeneration>
<Generate Value="Faster"/>
</CodeGeneration>
<Other>
<CompilerPath Value="$(CompPath)"/>
</Other>
<Parsing>
<SyntaxOptions>
<AllowLabel Value="False"/>
<UseAnsiStrings Value="False"/>
</SyntaxOptions>
</Parsing>
</CompilerOptions>
<Description Value="Tool for cross-platform manipulation with mouse and key input.
"/>
@ -68,6 +69,7 @@
<UnitName Value="XMouseInput"/>
</Item9>
</Files>
<CompatibilityMode Value="True"/>
<RequiredPkgs Count="2">
<Item1>
<PackageName Value="LCL"/>
@ -78,11 +80,10 @@
</Item2>
</RequiredPkgs>
<UsageOptions>
<UnitPath Value="$(PkgOutDir)\"/>
<UnitPath Value="$(PkgOutDir)"/>
</UsageOptions>
<PublishOptions>
<Version Value="2"/>
<IgnoreBinaries Value="False"/>
</PublishOptions>
</Package>
</CONFIG>