Jump to content

Unigui wizard how to compile a .dll


mhmda

Recommended Posts

But to be safe, it's required to save changes, close project, open project and then compile (previously saved source).

 

If you will compile to EXE and immediately comment the line out (for DLL), defunct DLL may arise.

 

It's strange behavior in some Delphi IDE versions.

Link to comment
Share on other sites

But to be safe, it's required to save changes, close project, open project and then compile (previously saved source).

 

If you will compile to EXE and immediately comment the line out (for DLL), defunct DLL may arise.

 

It's strange behavior in some Delphi IDE versions.

Add this lines to dpr

{$ifndef UNIGUI_VCL}

{$E dll}

{$else}

{$E exe}

{$endif}

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...