source: platform/trunk/LDPlatform.dpk

Last change on this file was 11, checked in by chronos, 10 years ago
  • Added: Some new concept forms and actions.
File size: 1.0 KB
Line 
1package LDPlatform;
2
3{$R *.res}
4{$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
5{$ALIGN 8}
6{$ASSERTIONS ON}
7{$BOOLEVAL OFF}
8{$DEBUGINFO ON}
9{$EXTENDEDSYNTAX ON}
10{$IMPORTEDDATA ON}
11{$IOCHECKS ON}
12{$LOCALSYMBOLS ON}
13{$LONGSTRINGS ON}
14{$OPENSTRINGS ON}
15{$OPTIMIZATION OFF}
16{$OVERFLOWCHECKS OFF}
17{$RANGECHECKS OFF}
18{$REFERENCEINFO ON}
19{$SAFEDIVIDE OFF}
20{$STACKFRAMES ON}
21{$TYPEDADDRESS OFF}
22{$VARSTRINGCHECKS ON}
23{$WRITEABLECONST OFF}
24{$MINENUMSIZE 1}
25{$IMAGEBASE $400000}
26{$DEFINE DEBUG}
27{$ENDIF IMPLICITBUILDING}
28{$DESIGNONLY}
29{$IMPLICITBUILD ON}
30
31requires
32 rtl,
33 vcl,
34 vclactnband,
35 xmlrtl;
36
37contains
38 LDPlatform.FormMain in 'LDPlatform.FormMain.pas' {FormMain},
39 LDPlatform.FormOptions in 'LDPlatform.FormOptions.pas' {FormOptions},
40 ULDPlatform in 'ULDPlatform.pas',
41 LDPlatform.Core in 'LDPlatform.Core.pas' {Core: TDataModule},
42 LDPlatform.FormNew in 'LDPlatform.FormNew.pas' {FormNew},
43 UProject in 'UProject.pas',
44 LDPlatform.FormSource in 'LDPlatform.FormSource.pas' {FormSource};
45
46end.
Note: See TracBrowser for help on using the repository browser.