-
Notifications
You must be signed in to change notification settings - Fork 3
Step by Step Create Total plugin project
Swift Expat edited this page Mar 13, 2022
·
5 revisions
This is a Step by Step guide to creating a TOTAL plugin.
In Delphi, go to File --> New --> DLL
Save your project.
Add a new unit to the project and save.
Open project options and go to Delphi Compiler.
-
Change target to "All Configurations - WIN 32bit"
-
Add a conditional Define for EXPERT.
-
Add TOTAL and Kastri to Search Path.
Go to Packages, Runtime Packages.
- Change target to "All Configurations - Win 32Bit"
- Link with Runtime Packages = true
- Runtime Packages add these
designide;vclx;vcl;vclimg;rtl
.
- Change target to "All Configurations - Win 32Bit"
- Host application =
C:\Program Files (x86)\Embarcadero\Studio\22.0\bin\bds.exe
. - Parameters =
-np -r SEIEDev
.
- np disables welcome screen
- -r creates a seperate profile to debug in.
Create a subfolder in your project called Resources copy in your icon copy in Icon.rc from this project and edit with your icon name
Add Include and Resoure directives after library
{$R 'Icon.res' 'Resources\Icon.rc'} {$I DW.LibSuffixIDE.inc}
Setup is now complete, just add code to your unit file