Skip to content

Commit

Permalink
Merge pull request #203 from jimmckeeth/master
Browse files Browse the repository at this point in the history
Renamed the Delphi module to DelphiVCL
  • Loading branch information
pyscripter authored Oct 20, 2020
2 parents 27e7b2e + 1436ff7 commit abddced
Show file tree
Hide file tree
Showing 9 changed files with 944 additions and 218 deletions.
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

0 comments on commit abddced

Please sign in to comment.