source upload
This commit is contained in:
1
contrib/mORMot/Packages/.gitignore
vendored
Normal file
1
contrib/mORMot/Packages/.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
*.pas
|
38
contrib/mORMot/Packages/README.md
Normal file
38
contrib/mORMot/Packages/README.md
Normal file
@@ -0,0 +1,38 @@
|
||||
|
||||
# Synopse mORMot Packages
|
||||
|
||||
We are providing two packages for FPC/Lazarus:
|
||||
|
||||
- `mormot_base`: Core units needed by *mORMot*
|
||||
- Implements ORM, SOA and MVC features
|
||||
- ORM via static-linked *SQLite3*
|
||||
- ORM over external SQL and *MongoDB*
|
||||
- High-level Domain-Driven-Design units
|
||||
- `mormot_cross`: Stand-alone package, client-side only, but should be running on all FPC targets
|
||||
|
||||
## Lazarus
|
||||
|
||||
Initially these Packages were designed to compile into Lazarus.
|
||||
|
||||
The `mormot_base` package has just one dependency, disabled by default, which is [ZeosLib](https://sourceforge.net/projects/zeoslib/).
|
||||
|
||||
If you want to use *ZeosLib*, you must setup the package before compile it, follwoing instructions below:
|
||||
|
||||
1. Open the Package
|
||||
2. Click on Options
|
||||
3. In "Compile Options", click on "Custom Options"
|
||||
4. Click on "Defines" and uncheck `NOSYNDBZEOS` conditional
|
||||
5. Add `zcomponent` package from *ZeosLib* into it.
|
||||
6. Save and return to Package
|
||||
7. Compile
|
||||
|
||||
If you have compiled without using this option before, follow the steps above, but using "More > Recompile Clean" option to recompile the package.
|
||||
|
||||
If `NOSYNDBZEOS` is defined, `SynDBZeos.pas` unit will be just an "empty unit".
|
||||
|
||||
|
||||
## Delphi
|
||||
|
||||
Delphi Packages are not defined since they don't make sense for *mORMot* source code, which doesn't have any visual component.
|
||||
|
||||
Just get the *mORMot* sources, then add the corresponding search path to your IDE. See [the corresponding documentation](https://synopse.info/files/html/Synopse%20mORMot%20Framework%20SAD%201.18.html#TITL_113).
|
215
contrib/mORMot/Packages/mormot_base.lpk
Normal file
215
contrib/mORMot/Packages/mormot_base.lpk
Normal file
@@ -0,0 +1,215 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<CONFIG>
|
||||
<Package Version="4">
|
||||
<PathDelim Value="\"/>
|
||||
<Name Value="mormot_base"/>
|
||||
<Type Value="RunTimeOnly"/>
|
||||
<Author Value="Arnaud Bouchez"/>
|
||||
<CompilerOptions>
|
||||
<Version Value="11"/>
|
||||
<PathDelim Value="\"/>
|
||||
<SearchPaths>
|
||||
<IncludeFiles Value="$PkgDir(zcore)\..\..\src;..;..\SQLite3"/>
|
||||
<Libraries Value="..\static\$(TargetCPU)-$(TargetOS)"/>
|
||||
<OtherUnitFiles Value="..;..\SQLite3;..\SQLite3\DDD\infra"/>
|
||||
<UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)"/>
|
||||
</SearchPaths>
|
||||
<Other>
|
||||
<CustomOptions Value="-dNOSYNDBZEOS"/>
|
||||
<OtherDefines Count="1">
|
||||
<Define0 Value="NOSYNDBZEOS"/>
|
||||
</OtherDefines>
|
||||
</Other>
|
||||
</CompilerOptions>
|
||||
<Description Value="Core units needed by mORMot
|
||||
- Implement ORM, SOA and MVC features
|
||||
- ORM via static-linked SQLite3
|
||||
- ORM over external SQL and MongoDB
|
||||
- High-level Domain-Driven-Design units"/>
|
||||
<License Value="Licensed under a disjunctive tri-license giving you the choice of one of
|
||||
the three following sets of free software/open source licensing terms:
|
||||
- Mozilla Public License, version 1.1 or later;
|
||||
- GNU General Public License, version 2.0 or later;
|
||||
- GNU Lesser General Public License, version 2.1 or later.
|
||||
This allows the use of our code in as wide a variety of software projects
|
||||
as possible, while still maintaining copy-left on code we wrote."/>
|
||||
<Version Major="1" Minor="18"/>
|
||||
<Files Count="40">
|
||||
<Item1>
|
||||
<Filename Value="..\SynCommons.pas"/>
|
||||
<UnitName Value="SynCommons"/>
|
||||
</Item1>
|
||||
<Item2>
|
||||
<Filename Value="..\SynBidirSock.pas"/>
|
||||
<UnitName Value="SynBidirSock"/>
|
||||
</Item2>
|
||||
<Item3>
|
||||
<Filename Value="..\SynTable.pas"/>
|
||||
<UnitName Value="SynTable"/>
|
||||
</Item3>
|
||||
<Item4>
|
||||
<Filename Value="..\SynCrtSock.pas"/>
|
||||
<UnitName Value="SynCrtSock"/>
|
||||
</Item4>
|
||||
<Item5>
|
||||
<Filename Value="..\SynCrypto.pas"/>
|
||||
<UnitName Value="SynCrypto"/>
|
||||
</Item5>
|
||||
<Item6>
|
||||
<Filename Value="..\SynEcc.pas"/>
|
||||
<UnitName Value="SynEcc"/>
|
||||
</Item6>
|
||||
<Item7>
|
||||
<Filename Value="..\SynFPCTypInfo.pas"/>
|
||||
<UnitName Value="SynFPCTypInfo"/>
|
||||
</Item7>
|
||||
<Item8>
|
||||
<Filename Value="..\SynLog.pas"/>
|
||||
<UnitName Value="SynLog"/>
|
||||
</Item8>
|
||||
<Item9>
|
||||
<Filename Value="..\SynLZ.pas"/>
|
||||
<UnitName Value="SynLZ"/>
|
||||
</Item9>
|
||||
<Item10>
|
||||
<Filename Value="..\SynLZO.pas"/>
|
||||
<UnitName Value="SynLZO"/>
|
||||
</Item10>
|
||||
<Item11>
|
||||
<Filename Value="..\SynLizard.pas"/>
|
||||
<UnitName Value="SynLizard"/>
|
||||
</Item11>
|
||||
<Item12>
|
||||
<Filename Value="..\SynZip.pas"/>
|
||||
<UnitName Value="SynZip"/>
|
||||
</Item12>
|
||||
<Item13>
|
||||
<Filename Value="..\SynZipFiles.pas"/>
|
||||
<UnitName Value="SynZipFiles"/>
|
||||
</Item13>
|
||||
<Item14>
|
||||
<Filename Value="..\SynMustache.pas"/>
|
||||
<UnitName Value="SynMustache"/>
|
||||
</Item14>
|
||||
<Item15>
|
||||
<Filename Value="..\SynSSPI.pas"/>
|
||||
<UnitName Value="SynSSPI"/>
|
||||
</Item15>
|
||||
<Item16>
|
||||
<Filename Value="..\SynSSPIAuth.pas"/>
|
||||
<UnitName Value="SynSSPIAuth"/>
|
||||
</Item16>
|
||||
<Item17>
|
||||
<Filename Value="..\SynGSSAPI.pas"/>
|
||||
<UnitName Value="SynGSSAPI"/>
|
||||
</Item17>
|
||||
<Item18>
|
||||
<Filename Value="..\SynGSSAPIAuth.pas"/>
|
||||
<UnitName Value="SynGSSAPIAuth"/>
|
||||
</Item18>
|
||||
<Item19>
|
||||
<Filename Value="..\SynOpenSSL.pas"/>
|
||||
<UnitName Value="SynOpenSSL"/>
|
||||
</Item19>
|
||||
<Item20>
|
||||
<Filename Value="..\SynTests.pas"/>
|
||||
<UnitName Value="SynTests"/>
|
||||
</Item20>
|
||||
<Item21>
|
||||
<Filename Value="..\SynWinSock.pas"/>
|
||||
<UnitName Value="SynWinSock"/>
|
||||
</Item21>
|
||||
<Item22>
|
||||
<Filename Value="..\SynDB.pas"/>
|
||||
<UnitName Value="SynDB"/>
|
||||
</Item22>
|
||||
<Item23>
|
||||
<Filename Value="..\SynDBDataset.pas"/>
|
||||
<UnitName Value="SynDBDataset"/>
|
||||
</Item23>
|
||||
<Item24>
|
||||
<Filename Value="..\SynDBODBC.pas"/>
|
||||
<UnitName Value="SynDBODBC"/>
|
||||
</Item24>
|
||||
<Item25>
|
||||
<Filename Value="..\SynDBOracle.pas"/>
|
||||
<UnitName Value="SynDBOracle"/>
|
||||
</Item25>
|
||||
<Item26>
|
||||
<Filename Value="..\SynDBRemote.pas"/>
|
||||
<UnitName Value="SynDBRemote"/>
|
||||
</Item26>
|
||||
<Item27>
|
||||
<Filename Value="..\SynDBSQLite3.pas"/>
|
||||
<UnitName Value="SynDBSQLite3"/>
|
||||
</Item27>
|
||||
<Item28>
|
||||
<Filename Value="..\SQLite3\mORMot.pas"/>
|
||||
<UnitName Value="mORMot"/>
|
||||
</Item28>
|
||||
<Item29>
|
||||
<Filename Value="..\SQLite3\mORMotHttpClient.pas"/>
|
||||
<UnitName Value="mORMotHttpClient"/>
|
||||
</Item29>
|
||||
<Item30>
|
||||
<Filename Value="..\SQLite3\mORMotHttpServer.pas"/>
|
||||
<UnitName Value="mORMotHttpServer"/>
|
||||
</Item30>
|
||||
<Item31>
|
||||
<Filename Value="..\SQLite3\mORMotMVC.pas"/>
|
||||
<UnitName Value="mORMotMVC"/>
|
||||
</Item31>
|
||||
<Item32>
|
||||
<Filename Value="..\SQLite3\mORMotService.pas"/>
|
||||
<UnitName Value="mORMotService"/>
|
||||
</Item32>
|
||||
<Item33>
|
||||
<Filename Value="..\SQLite3\mORMotWrappers.pas"/>
|
||||
<UnitName Value="mORMotWrappers"/>
|
||||
</Item33>
|
||||
<Item34>
|
||||
<Filename Value="..\SQLite3\mORMotDDD.pas"/>
|
||||
<UnitName Value="mORMotDDD"/>
|
||||
</Item34>
|
||||
<Item35>
|
||||
<Filename Value="..\SQLite3\DDD\infra\dddInfraApps.pas"/>
|
||||
<UnitName Value="dddInfraApps"/>
|
||||
</Item35>
|
||||
<Item36>
|
||||
<Filename Value="..\SQLite3\DDD\infra\dddInfraSettings.pas"/>
|
||||
<UnitName Value="dddInfraSettings"/>
|
||||
</Item36>
|
||||
<Item37>
|
||||
<Filename Value="..\SynSQLite3.pas"/>
|
||||
<UnitName Value="SynSQLite3"/>
|
||||
</Item37>
|
||||
<Item38>
|
||||
<Filename Value="..\SQLite3\mORMotSQLite3.pas"/>
|
||||
<UnitName Value="mORMotSQLite3"/>
|
||||
</Item38>
|
||||
<Item39>
|
||||
<Filename Value="..\SynSQLite3Static.pas"/>
|
||||
<UnitName Value="SynSQLite3Static"/>
|
||||
</Item39>
|
||||
<Item40>
|
||||
<Filename Value="..\SynDBZeos.pas"/>
|
||||
<UnitName Value="SynDBZeos"/>
|
||||
</Item40>
|
||||
</Files>
|
||||
<RequiredPkgs Count="1">
|
||||
<Item1>
|
||||
<PackageName Value="FCL"/>
|
||||
</Item1>
|
||||
</RequiredPkgs>
|
||||
<UsageOptions>
|
||||
<IncludePath Value="$(PkgIncPath)"/>
|
||||
<LibraryPath Value="$(PkgDir)\..\static\$(TargetCPU)-$(TargetOS)"/>
|
||||
<ObjectPath Value="$(PkgDir)\.."/>
|
||||
<UnitPath Value="$(PkgOutDir)"/>
|
||||
</UsageOptions>
|
||||
<PublishOptions>
|
||||
<Version Value="2"/>
|
||||
<UseFileFilters Value="True"/>
|
||||
</PublishOptions>
|
||||
</Package>
|
||||
</CONFIG>
|
62
contrib/mORMot/Packages/mormot_cross.lpk
Normal file
62
contrib/mORMot/Packages/mormot_cross.lpk
Normal file
@@ -0,0 +1,62 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<CONFIG>
|
||||
<Package Version="4">
|
||||
<PathDelim Value="\"/>
|
||||
<Name Value="mormot_cross"/>
|
||||
<Type Value="RunTimeOnly"/>
|
||||
<Author Value="Arnaud Bouchez"/>
|
||||
<CompilerOptions>
|
||||
<Version Value="11"/>
|
||||
<PathDelim Value="\"/>
|
||||
<SearchPaths>
|
||||
<IncludeFiles Value="..;..\CrossPlatform"/>
|
||||
<Libraries Value="..\static\$(TargetCPU)-$(TargetOS)"/>
|
||||
<OtherUnitFiles Value="..\CrossPlatform"/>
|
||||
<UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)"/>
|
||||
</SearchPaths>
|
||||
</CompilerOptions>
|
||||
<Description Value="Stand-alone package, client-side only, but should be running on all FPC targets"/>
|
||||
<License Value="Licensed under a disjunctive tri-license giving you the choice of one of
|
||||
the three following sets of free software/open source licensing terms:
|
||||
- Mozilla Public License, version 1.1 or later;
|
||||
- GNU General Public License, version 2.0 or later;
|
||||
- GNU Lesser General Public License, version 2.1 or later.
|
||||
This allows the use of our code in as wide a variety of software projects
|
||||
as possible, while still maintaining copy-left on code we wrote."/>
|
||||
<Version Major="1" Minor="18"/>
|
||||
<Files Count="5">
|
||||
<Item1>
|
||||
<Filename Value="..\CrossPlatform\SynCrossPlatformCrypto.pas"/>
|
||||
<UnitName Value="SynCrossPlatformCrypto"/>
|
||||
</Item1>
|
||||
<Item2>
|
||||
<Filename Value="..\CrossPlatform\SynCrossPlatformJSON.pas"/>
|
||||
<UnitName Value="SynCrossPlatformJSON"/>
|
||||
</Item2>
|
||||
<Item3>
|
||||
<Filename Value="..\CrossPlatform\SynCrossPlatformREST.pas"/>
|
||||
<UnitName Value="SynCrossPlatformREST"/>
|
||||
</Item3>
|
||||
<Item4>
|
||||
<Filename Value="..\CrossPlatform\SynCrossPlatformSpecific.pas"/>
|
||||
<UnitName Value="SynCrossPlatformSpecific"/>
|
||||
</Item4>
|
||||
<Item5>
|
||||
<Filename Value="..\CrossPlatform\SynCrossPlatformSynLZ.pas"/>
|
||||
<UnitName Value="SynCrossPlatformSynLZ"/>
|
||||
</Item5>
|
||||
</Files>
|
||||
<RequiredPkgs Count="1">
|
||||
<Item1>
|
||||
<PackageName Value="FCL"/>
|
||||
</Item1>
|
||||
</RequiredPkgs>
|
||||
<UsageOptions>
|
||||
<UnitPath Value="$(PkgOutDir)"/>
|
||||
</UsageOptions>
|
||||
<PublishOptions>
|
||||
<Version Value="2"/>
|
||||
<UseFileFilters Value="True"/>
|
||||
</PublishOptions>
|
||||
</Package>
|
||||
</CONFIG>
|
Reference in New Issue
Block a user