diff options
author | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2012-03-13 19:04:52 +0200 |
---|---|---|
committer | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2012-03-13 19:04:52 +0200 |
commit | 641e64b517d1da2cd1fde06f9010261fd3c0dca4 (patch) | |
tree | 8f51cd36c8ceb19e057d33bb88285cd0fb30f748 /src/corelib/render/software/agg-demos | |
parent | 773a4b550c1a0f23b8290ca88076ca21040fb5d6 (diff) | |
download | fpGUI-641e64b517d1da2cd1fde06f9010261fd3c0dca4.tar.xz |
agg: linux build project now uses cpu targeted file extensions for demos.
This makes it easier to distinguish between 32-bit and 64-bit demo
executables, and makes it easier to cleanup (delete) demo executables
later.
Diffstat (limited to 'src/corelib/render/software/agg-demos')
-rw-r--r-- | src/corelib/render/software/agg-demos/find_compilers_linux.dpr | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/corelib/render/software/agg-demos/find_compilers_linux.dpr b/src/corelib/render/software/agg-demos/find_compilers_linux.dpr index a1ec21cf..39a7413b 100644 --- a/src/corelib/render/software/agg-demos/find_compilers_linux.dpr +++ b/src/corelib/render/software/agg-demos/find_compilers_linux.dpr @@ -281,6 +281,12 @@ begin else WrPool(fpc_gapp + ' ' ); + // this makes it easy to find and delete the executables later + {$IFDEF CPU32} + WrPool('-o' + name + '.elf32 '); + {$ELSE} + WrPool('-o' + name + '.elf64 '); + {$ENDIF} WrPool(name + ext ,true ); |