Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

DELPHI Where can I add common library path in 10.3 Community version

I have just installed 10.3 Rio Community version and are trying to add mORMot-libraries to it.

But I can't find where I shall add it.

In my XE6-version it's in the Tools-menu but in 10.3 I can't find it.

like image 513
larand Avatar asked Feb 25 '19 09:02

larand


3 Answers

The mORMot documentation states:

Download and uncompress the framework archives, including all sub-folders, into a local directory of your computer (for instance, D:\Dev\Lib).

Then add the following paths to your Delphi IDE (in Tools/Environment/Library menu):

Library path: (...existing path...);D:\Dev\Lib;D:\Dev\Lib\SQLite3;D:\Dev\Lib\SynDBDataset

Search path: (...existing path...);D:\Dev\Lib;D:\Dev\Lib\SQLite3;D:\Dev\Lib\SynDBDataset

I have corrected the documentation to add the Tools->Options->Language->Delphi Options->Library path suggested by Dave.

like image 125
Arnaud Bouchez Avatar answered Oct 20 '22 06:10

Arnaud Bouchez


search path is in Project->Options->Delphi Compiler->Search Path

attention: this options are available only after project creation

like image 25
user12857192 Avatar answered Oct 20 '22 05:10

user12857192


versao delphi 10.3 Tools > Options > Language > Delphi Options > Library

like image 40
Nerd Laser Avatar answered Oct 20 '22 06:10

Nerd Laser