19-06-2014 12:28 tarihinde, Mattias Gaertner yazdı:
Then replace each

{$IFNDEF EnableOldExtTools}Something{$ELSE}InfoBuild,{$ENDIF}

with

{$IFNDEF EnableOldExtTools}Something{$ENDIF}
{$IFDEF EnableCompInfoWnd}InfoBuild,{$ENDIF}
I did:
/opt/lazarus/ide/compiler.pp
  {$IFNDEF EnableOldExtTools}
  IDEExternToolIntf,
  {$ELSE}
  UTF8Process, OutputFilter, {InfoBuild,}
  {$ENDIF}
  {$IFDEF EnableCompInfoWnd}InfoBuild,{$ENDIF}

/opt/lazarus/ide/main.pp
  {$IFNDEF EnableOldExtTools}
  ExtTools,
  {$ELSE}
  //InfoBuild,
  {$ENDIF}
  {$IFDEF EnableCompInfoWnd}InfoBuild,{$ENDIF}

and this is my command line:
make PREFIX=/opt clean all OPT="-dUSE_QT_45 -dEnableCompInfoWnd" LCL_PLATFORM=qt bigide

infobuild form not showing on build or compile or run command
whats wrong?

--
_______________________________________________
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Reply via email to