forked from paolo-rossi/delphi-neon
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Neon.dpk
73 lines (68 loc) · 3.08 KB
/
Neon.dpk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{******************************************************************************}
{ }
{ Neon: Serialization Library for Delphi }
{ Copyright (c) 2018-2021 Paolo Rossi }
{ https://github.com/paolo-rossi/neon-library }
{ }
{******************************************************************************}
{ }
{ Licensed under the Apache License, Version 2.0 (the "License"); }
{ you may not use this file except in compliance with the License. }
{ You may obtain a copy of the License at }
{ }
{ http://www.apache.org/licenses/LICENSE-2.0 }
{ }
{ Unless required by applicable law or agreed to in writing, software }
{ distributed under the License is distributed on an "AS IS" BASIS, }
{ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. }
{ See the License for the specific language governing permissions and }
{ limitations under the License. }
{ }
{******************************************************************************}
package Neon;
{$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 ON}
{$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 'Neon Serialization Library'}
{$LIBSUFFIX '280'}
{$RUNONLY}
{$IMPLICITBUILD ON}
requires
rtl,
dbrtl;
contains
Neon.Core.Attributes in 'Source\Neon.Core.Attributes.pas',
Neon.Core.DynamicTypes in 'Source\Neon.Core.DynamicTypes.pas',
Neon.Core.Nullables in 'Source\Neon.Core.Nullables.pas',
Neon.Core.Persistence in 'Source\Neon.Core.Persistence.pas',
Neon.Core.Persistence.JSON in 'Source\Neon.Core.Persistence.JSON.pas',
Neon.Core.Persistence.JSON.Schema in 'Source\Neon.Core.Persistence.JSON.Schema.pas',
Neon.Core.Serializers.RTL in 'Source\Neon.Core.Serializers.RTL.pas',
Neon.Core.Serializers.DB in 'Source\Neon.Core.Serializers.DB.pas',
Neon.Core.Serializers.Nullables in 'Source\Neon.Core.Serializers.Nullables.pas',
Neon.Core.TypeInfo in 'Source\Neon.Core.TypeInfo.pas',
Neon.Core.Types in 'Source\Neon.Core.Types.pas',
Neon.Core.Utils in 'Source\Neon.Core.Utils.pas';
end.