On Sunday, 9 August 2026 at 13:16:35 UTC, Darren Drapkin wrote:
What can I do to stop dub asserting that my programme is a libruary and compile it normally?
The easiest thing to do is to edit dub.sdl and add: ``` targetType "executable" ``` or if you use JSON, add the following to your dub.json: ```json "targetType": "executable" ```
