You've already forked lazarus-ccr
Example compilation fix
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2160 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -64,6 +64,10 @@
|
|||||||
<TargetOS Value="linux"/>
|
<TargetOS Value="linux"/>
|
||||||
</CodeGeneration>
|
</CodeGeneration>
|
||||||
<Linking>
|
<Linking>
|
||||||
|
<Debugging>
|
||||||
|
<GenerateDebugInfo Value="False"/>
|
||||||
|
<UseLineInfoUnit Value="False"/>
|
||||||
|
</Debugging>
|
||||||
<Options>
|
<Options>
|
||||||
<ExecutableType Value="Library"/>
|
<ExecutableType Value="Library"/>
|
||||||
</Options>
|
</Options>
|
||||||
|
@ -1,13 +1,18 @@
|
|||||||
library androidlcltest;
|
library androidlcltest;
|
||||||
|
|
||||||
{$mode objfpc}{$H+}
|
{$mode objfpc}{$H+}
|
||||||
|
{$define Android}
|
||||||
|
|
||||||
uses
|
uses
|
||||||
|
{$ifdef Android}
|
||||||
cmem,
|
cmem,
|
||||||
Interfaces;
|
android_native_app_glue,
|
||||||
|
{$endif}
|
||||||
|
Interfaces,
|
||||||
|
mainform;
|
||||||
|
|
||||||
exports //android_main name 'android_main',
|
exports //android_main name 'android_main',
|
||||||
ANativeActivity_onCreate name 'ANativeActivity_onCreate';
|
ANativeActivity_onCreate name 'ANativeActivity_onCreate';
|
||||||
|
|
||||||
begin
|
begin
|
||||||
end.
|
end.
|
||||||
|
Reference in New Issue
Block a user