diff options
author | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2012-02-27 22:41:34 +0200 |
---|---|---|
committer | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2012-03-07 22:44:09 +0200 |
commit | e419abe0ff14749b63e7079ed4fde4408bc8292a (patch) | |
tree | 4a3a18ec7d688cbc300847e5cd7bf5661494dd1e /src/corelib/render | |
parent | af12f432588be4e231c53cd2902b639bebbc80bd (diff) | |
download | fpGUI-e419abe0ff14749b63e7079ed4fde4408bc8292a.tar.xz |
agg: fix find_compiler_xxx projects to use corrected path and compiler settings.
This was needed due to my different directory layout compared to standard AggPas.
Diffstat (limited to 'src/corelib/render')
3 files changed, 13 insertions, 13 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 5411146b..167ec0a5 100644 --- a/src/corelib/render/software/agg-demos/find_compilers_linux.dpr +++ b/src/corelib/render/software/agg-demos/find_compilers_linux.dpr @@ -28,12 +28,12 @@ const make_max = 99;
fpc_comp = 'ppc386';
- fpc_libs = '-Fu"src;src/ctrl;src/platform/linux;src/util;src/svg;expat-wrap"';
- fpc_incl = '-Fisrc';
+ fpc_libs = '-Fu"../;../ctrl;../platform/linux;../util;../svg;expat-wrap"';
+ fpc_incl = '-Fi../';
fpc_outd = '-FU_debug';
fpc_conf = '-Mdelphi -Tlinux -Sg -Se3 -XX -Xs -B -v0i';
- fpc_gapp = '-WG';
- fpc_capp = '-WC';
+ fpc_gapp = '';
+ fpc_capp = '';
var
key_array : array[0..key_max - 1 ] of src_key;
@@ -486,4 +486,4 @@ BEGIN else
writeln('ERROR: Not enough memory for the pool buffer !' );
-END.
\ No newline at end of file +END.
\ No newline at end of file diff --git a/src/corelib/render/software/agg-demos/find_compilers_mac.dpr b/src/corelib/render/software/agg-demos/find_compilers_mac.dpr index 706af2f7..e8fe87ec 100644 --- a/src/corelib/render/software/agg-demos/find_compilers_mac.dpr +++ b/src/corelib/render/software/agg-demos/find_compilers_mac.dpr @@ -13,7 +13,7 @@ uses file_utils_ ,
Carbon ;
-{$I agg_mode.inc }
+{$I ../agg_mode.inc }
type
src_key = record
@@ -28,8 +28,8 @@ const make_max = 99;
fpc_comp = '/usr/local/bin/ppcppc';
- fpc_libs = '-Fu"src;src/ctrl;src/platform/mac;src/util;src/svg;upi;expat-wrap"';
- fpc_incl = '-Fisrc';
+ fpc_libs = '-Fu"../;../ctrl;../platform/mac;../util;../svg;upi;expat-wrap"';
+ fpc_incl = '-Fi../';
fpc_outd = '-FU_debug';
fpc_frmw = '-k"-framework Carbon -framework QuickTime"';
fpc_conf = '-Mdelphi -Tdarwin -Sg -Se3 -XX -Xs -B -v0i';
@@ -659,4 +659,4 @@ BEGIN else
writeln('ERROR: Not enough memory for the pool buffer !' );
-END.
\ No newline at end of file +END.
\ No newline at end of file diff --git a/src/corelib/render/software/agg-demos/find_compilers_win.dpr b/src/corelib/render/software/agg-demos/find_compilers_win.dpr index 6f4fec54..7b38c769 100644 --- a/src/corelib/render/software/agg-demos/find_compilers_win.dpr +++ b/src/corelib/render/software/agg-demos/find_compilers_win.dpr @@ -33,7 +33,7 @@ uses agg_conv_stroke ,
file_utils_ ;
-{$I agg_mode.inc }
+{$I ..\agg_mode.inc }
{$I- }
type
src_key = record
@@ -48,8 +48,8 @@ const g_appl = 'AggPas';
g_full = 'AggPas 2.4 RM3 vector graphics library';
- g_agg_paths = 'src;src\ctrl;src\platform\win;src\util;src\svg;gpc;expat-wrap';
- g_inc_paths = 'src';
+ g_agg_paths = '..\;..\ctrl;..\platform\win;..\util;..\svg;gpc;expat-wrap';
+ g_inc_paths = '..\';
g_out_paths = '_debug';
g_delphi_config = '-CG -B -H- -W-';
@@ -1493,4 +1493,4 @@ BEGIN app.Destruct;
-END.
\ No newline at end of file +END.
\ No newline at end of file |