Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Renamed the Delphi module to DelphiVCL #203

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Oct 20, 2020
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