I have written an OpenTools wizard for creating a skeleton for a custom project type. It does work, and the project and units are properly created. But, how do I edit the .dpk or .dpk file's requires clause?
A call to ModuleServices.CreateModule(MyIOTAProjectCreatorInterface)
gives me the .dproj file only.
In my VCL Component Installer (since XE, this is part of the Delphi IDE), I do it this way:
with the help of function
IOTAProject.AddFile(FileName, IsUnitOrForm)
. Note that I call it like this:Note that the docs say:
This means that if you add a
'bla.dcp'
it will automatically land in therequires
section, and if you add a'bla.pas'
file, it will land in thecontains
section. It took me a while to find out.