LCL: fpgui: fixed compilation

git-svn-id: trunk@48611 -
This commit is contained in:
mattias 2015-04-03 21:38:22 +00:00
parent eb89d4043b
commit d79190d24b

View File

@ -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