mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-15 21:39:12 +02:00
LCL: fpgui: fixed compilation
git-svn-id: trunk@48611 -
This commit is contained in:
parent
eb89d4043b
commit
d79190d24b
@ -55,14 +55,14 @@ end else if LCLWidgetType='wince' then begin
|
|||||||
end else if LCLWidgetType='fpgui' then begin
|
end else if LCLWidgetType='fpgui' then begin
|
||||||
if undefined(fpGUIPlatform) then begin
|
if undefined(fpGUIPlatform) then begin
|
||||||
if SrcOS='win32' then
|
if SrcOS='win32' then
|
||||||
fpGUIPlatform := 'gdi;'
|
fpGUIPlatform := 'gdi'
|
||||||
else
|
else
|
||||||
fpGUIPlatform := 'x11;';
|
fpGUIPlatform := 'x11';
|
||||||
end;
|
end;
|
||||||
CustomOptions := ' -dfpgui'+fpGUIPlatform;
|
CustomOptions := ' -dfpgui'+fpGUIPlatform;
|
||||||
UnitPath := base+'src/gui;'
|
UnitPath := base+'src/gui;'
|
||||||
+base+'src/corelib;'
|
+base+'src/corelib;'
|
||||||
+base+'src/corelib/'+fpGUIPlatform
|
+base+'src/corelib/'+fpGUIPlatform+';'
|
||||||
+base+'src/corelib/reportengine;';
|
+base+'src/corelib/reportengine;';
|
||||||
IncPath := UnitPath+base+'src;';
|
IncPath := UnitPath+base+'src;';
|
||||||
end else if LCLWidgetType='customdrawn' then begin
|
end else if LCLWidgetType='customdrawn' then begin
|
||||||
|
Loading…
Reference in New Issue
Block a user