I’ve got a Windows screensaver (Win32 x64 executable with .scr extension instead of .exe).
To distribute that, I would statically link SDL3 into that executable for a practical reason: scr go into Windows\System32 and should not have any dependencies except the WinAPI so stuff which they depend on should be baked into the scr.
Now this works wonderfully with the VC projects present in the SDL3 sources, my questions:
- can I do that legally? I’d include the rc of both parts (SDL3 and the main program) so the SDL Copyright clause will be retained in the binary;
- how would I properly attribute the intellectual property, is it sufficient to ship the usual LICENCE and README along with the scr file?