Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 0 additions & 32 deletions Modules/Delphi/Delphi.dpr

This file was deleted.

108 changes: 0 additions & 108 deletions Modules/Delphi/Delphi.dproj

This file was deleted.

25 changes: 0 additions & 25 deletions Modules/Delphi/TestApp.py

This file was deleted.

25 changes: 25 additions & 0 deletions Modules/DelphiVCL/DelphiVCL.dpr
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
library DelphiVCL;

uses
SysUtils,
Classes,
uMain in 'uMain.pas';

{$I Definition.Inc}

exports
// This must match the pattern "PyInit_[ProjectName]"
// So if the project is named DelphiVCL then
// the export must be PyInit_DelphiVCL
PyInit_DelphiVCL;
{$IFDEF MSWINDOWS}
{$E pyd}
{$ENDIF}
{$IFDEF LINUX}
{$SONAME 'DelphiVCL'}

{$ENDIF}

begin
end.

Loading