We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ff116cf + a83938f commit d9bc869Copy full SHA for d9bc869
Modules/DelphiFMX/DelphiFMX.dpr
@@ -0,0 +1,25 @@
1
+library DelphiFMX;
2
+
3
+uses
4
+ SysUtils,
5
+ Classes,
6
+ uMain in 'uMain.pas';
7
8
+{$I ..\..\Source\Definition.Inc}
9
10
+exports
11
+ // This must match the pattern "PyInit_[ProjectName]"
12
+ // So if the project is named DelphiFMX then
13
+ // the export must be PyInit_DelphiFMX
14
+ PyInit_DelphiFMX;
15
+{$IFDEF MSWINDOWS}
16
+{$E pyd}
17
+{$ENDIF}
18
+{$IFDEF LINUX}
19
+{$SONAME 'DelphiFMX'}
20
21
22
23
+begin
24
+end.
25
0 commit comments