-
-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a36f16d
commit b65a659
Showing
35 changed files
with
13,781 additions
and
200 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
package MARS.Core; | ||
|
||
{$R *.res} | ||
{$IFDEF IMPLICITBUILDING This IFDEF should not be used by users} | ||
{$ALIGN 8} | ||
{$ASSERTIONS ON} | ||
{$BOOLEVAL OFF} | ||
{$DEBUGINFO OFF} | ||
{$EXTENDEDSYNTAX ON} | ||
{$IMPORTEDDATA ON} | ||
{$IOCHECKS ON} | ||
{$LOCALSYMBOLS OFF} | ||
{$LONGSTRINGS ON} | ||
{$OPENSTRINGS ON} | ||
{$OPTIMIZATION ON} | ||
{$OVERFLOWCHECKS OFF} | ||
{$RANGECHECKS OFF} | ||
{$REFERENCEINFO OFF} | ||
{$SAFEDIVIDE OFF} | ||
{$STACKFRAMES OFF} | ||
{$TYPEDADDRESS OFF} | ||
{$VARSTRINGCHECKS ON} | ||
{$WRITEABLECONST OFF} | ||
{$MINENUMSIZE 1} | ||
{$IMAGEBASE $400000} | ||
{$DEFINE RELEASE} | ||
{$ENDIF IMPLICITBUILDING} | ||
{$DESCRIPTION 'MARS-Curiosity Core'} | ||
{$LIBSUFFIX '290'} | ||
{$RUNONLY} | ||
{$IMPLICITBUILD OFF} | ||
|
||
requires | ||
rtl, | ||
dbrtl, | ||
inet, | ||
IndySystem, | ||
IndyProtocols, | ||
IndyCore, | ||
xmlrtl, | ||
dsnap, | ||
MARS.Utils; | ||
|
||
contains | ||
MARS.Core.Application in '..\..\Source\MARS.Core.Application.pas', | ||
MARS.Core.Attributes in '..\..\Source\MARS.Core.Attributes.pas', | ||
MARS.Core.Cache in '..\..\Source\MARS.Core.Cache.pas', | ||
MARS.Core.Classes in '..\..\Source\MARS.Core.Classes.pas', | ||
MARS.Core.Engine in '..\..\Source\MARS.Core.Engine.pas', | ||
MARS.Core.MessageBodyReader in '..\..\Source\MARS.Core.MessageBodyReader.pas', | ||
MARS.Core.MessageBodyWriter in '..\..\Source\MARS.Core.MessageBodyWriter.pas', | ||
MARS.Core.Registry in '..\..\Source\MARS.Core.Registry.pas', | ||
MARS.Core.Response in '..\..\Source\MARS.Core.Response.pas', | ||
MARS.Core.Token in '..\..\Source\MARS.Core.Token.pas', | ||
MARS.http.Core in '..\..\Source\MARS.http.Core.pas', | ||
MARS.Core.Activation in '..\..\Source\MARS.Core.Activation.pas', | ||
MARS.Core.Injection.Interfaces in '..\..\Source\MARS.Core.Injection.Interfaces.pas', | ||
MARS.Core.Injection in '..\..\Source\MARS.Core.Injection.pas', | ||
MARS.Core.Injection.Types in '..\..\Source\MARS.Core.Injection.Types.pas', | ||
MARS.Core.Activation.InjectionService in '..\..\Source\MARS.Core.Activation.InjectionService.pas', | ||
MARS.Core.Activation.Interfaces in '..\..\Source\MARS.Core.Activation.Interfaces.pas', | ||
MARS.Core.Registry.Utils in '..\..\Source\MARS.Core.Registry.Utils.pas'; | ||
|
||
end. | ||
|
||
|
||
|
||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
package MARS.DCS; | ||
|
||
{$R *.res} | ||
{$IFDEF IMPLICITBUILDING This IFDEF should not be used by users} | ||
{$ALIGN 8} | ||
{$ASSERTIONS ON} | ||
{$BOOLEVAL OFF} | ||
{$DEBUGINFO OFF} | ||
{$EXTENDEDSYNTAX ON} | ||
{$IMPORTEDDATA ON} | ||
{$IOCHECKS ON} | ||
{$LOCALSYMBOLS OFF} | ||
{$LONGSTRINGS ON} | ||
{$OPENSTRINGS ON} | ||
{$OPTIMIZATION ON} | ||
{$OVERFLOWCHECKS OFF} | ||
{$RANGECHECKS OFF} | ||
{$REFERENCEINFO OFF} | ||
{$SAFEDIVIDE OFF} | ||
{$STACKFRAMES OFF} | ||
{$TYPEDADDRESS OFF} | ||
{$VARSTRINGCHECKS ON} | ||
{$WRITEABLECONST OFF} | ||
{$MINENUMSIZE 1} | ||
{$IMAGEBASE $400000} | ||
{$DEFINE RELEASE} | ||
{$ENDIF IMPLICITBUILDING} | ||
{$DESCRIPTION 'MARS-Curiosity REST Library - DelphiCrossSocket support'} | ||
{$LIBSUFFIX '290'} | ||
{$RUNONLY} | ||
{$IMPLICITBUILD OFF} | ||
|
||
requires | ||
rtl, | ||
MARS.Utils, | ||
MARS.Core; | ||
|
||
contains | ||
MARS.http.Server.DCS in '..\..\Source\MARS.http.Server.DCS.pas', | ||
Net.CrossHttpMiddleware in '..\..\ThirdParty\DCS\Net\Net.CrossHttpMiddleware.pas', | ||
Net.CrossHttpParams in '..\..\ThirdParty\DCS\Net\Net.CrossHttpParams.pas', | ||
Net.CrossHttpRouter in '..\..\ThirdParty\DCS\Net\Net.CrossHttpRouter.pas', | ||
Net.CrossHttpServer in '..\..\ThirdParty\DCS\Net\Net.CrossHttpServer.pas', | ||
Net.CrossHttpUtils in '..\..\ThirdParty\DCS\Net\Net.CrossHttpUtils.pas', | ||
Net.CrossServer in '..\..\ThirdParty\DCS\Net\Net.CrossServer.pas', | ||
Net.CrossSocket.Iocp in '..\..\ThirdParty\DCS\Net\Net.CrossSocket.Iocp.pas', | ||
Net.CrossSocket in '..\..\ThirdParty\DCS\Net\Net.CrossSocket.pas', | ||
Net.SocketAPI in '..\..\ThirdParty\DCS\Net\Net.SocketAPI.pas', | ||
Net.Winsock2 in '..\..\ThirdParty\DCS\Net\Net.Winsock2.pas', | ||
Net.Wship6 in '..\..\ThirdParty\DCS\Net\Net.Wship6.pas', | ||
Net.CrossSocket.Base in '..\..\ThirdParty\DCS\Net\Net.CrossSocket.Base.pas', | ||
Utils.DateTime in '..\..\ThirdParty\DCS\Utils\Utils.DateTime.pas', | ||
Utils.Logger in '..\..\ThirdParty\DCS\Utils\Utils.Logger.pas', | ||
Utils.RegEx in '..\..\ThirdParty\DCS\Utils\Utils.RegEx.pas', | ||
Utils.Utils in '..\..\ThirdParty\DCS\Utils\Utils.Utils.pas'; | ||
|
||
end. |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
package MARS.FireDAC; | ||
|
||
{$R *.res} | ||
{$IFDEF IMPLICITBUILDING This IFDEF should not be used by users} | ||
{$ALIGN 8} | ||
{$ASSERTIONS ON} | ||
{$BOOLEVAL OFF} | ||
{$DEBUGINFO OFF} | ||
{$EXTENDEDSYNTAX ON} | ||
{$IMPORTEDDATA ON} | ||
{$IOCHECKS ON} | ||
{$LOCALSYMBOLS OFF} | ||
{$LONGSTRINGS ON} | ||
{$OPENSTRINGS ON} | ||
{$OPTIMIZATION ON} | ||
{$OVERFLOWCHECKS OFF} | ||
{$RANGECHECKS OFF} | ||
{$REFERENCEINFO OFF} | ||
{$SAFEDIVIDE OFF} | ||
{$STACKFRAMES OFF} | ||
{$TYPEDADDRESS OFF} | ||
{$VARSTRINGCHECKS ON} | ||
{$WRITEABLECONST OFF} | ||
{$MINENUMSIZE 1} | ||
{$IMAGEBASE $400000} | ||
{$DEFINE RELEASE} | ||
{$ENDIF IMPLICITBUILDING} | ||
{$DESCRIPTION 'MARS-Curiosity REST Library'} | ||
{$LIBSUFFIX '290'} | ||
{$RUNONLY} | ||
{$IMPLICITBUILD OFF} | ||
|
||
requires | ||
rtl, | ||
dbrtl, | ||
FireDAC, | ||
FireDACCommonDriver, | ||
FireDACCommon, | ||
inet, | ||
IndySystem, | ||
IndyProtocols, | ||
IndyCore, | ||
dsnap, | ||
MARS.Core, | ||
MARS.ReadersAndWriters; | ||
|
||
contains | ||
MARS.Data.FireDAC.DataModule in '..\..\Source\MARS.Data.FireDAC.DataModule.pas' {MARSFDDataModuleResource: TDataModule}, | ||
MARS.Data.FireDAC.ReadersAndWriters in '..\..\Source\MARS.Data.FireDAC.ReadersAndWriters.pas', | ||
MARS.Data.FireDAC in '..\..\Source\MARS.Data.FireDAC.pas', | ||
MARS.Data.FireDAC.InjectionService in '..\..\Source\MARS.Data.FireDAC.InjectionService.pas', | ||
MARS.Data.FireDAC.Resources in '..\..\Source\MARS.Data.FireDAC.Resources.pas', | ||
MARS.Data.FireDAC.Utils in '..\..\Source\MARS.Data.FireDAC.Utils.pas'; | ||
|
||
end. | ||
|
||
|
||
|
||
|
Oops, something went wrong.