How to install mORMot?

2

The site is confusing, the documentation speaks little about the installation process. I added the libraries in the path lib and it did not work, some projects just did not compile. So I would like to know the correct way to install, with the steps?

    
asked by anonymous 20.06.2017 / 21:06

1 answer

1

Download the repository github in a directory, I will use as an example D:\mORMot ;

Go to Tools / Options then Enviroment Options / Delphi Options / Library

Add these paths to Library path and Search path . In my case it only has Library path :

D:\mORMot
D:\mORMot\SQLite3
D:\mORMot\SynDBDataset
D:\mORMot\CrossPlatform

In versions prior to Delphi 2006 you must install FastMM4 .

To test if everything is working open the project D:\mORMot\SQLite3\TestSQL3.dpr , compile and execute.

If everything is correct you will compile the projects from the D:\mORMot\SQLite3\Sample folder without any problems.

    
23.06.2017 / 14:44