Is there any comparable alternative to Qt?

笑着哭i 提交于 2019-12-03 12:04:06

Why don't you wrap all the functionality you need in a separate statically compiled dll and link your program dynamically with that. You can release the source code of the statically compiled dll since it's just a wrapper. And overall you'll still comply with LGPL.

One thing I can suggest is to try UPX (or similar) packing the dynamic DLL's to get their size down, depending on how much code vs data/resources the DLL's contain you can get pretty impressive results.

http://www.fltk.org/ Have a look at that :) It's simpler, open source and might do enough for your needs.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!