How Can I get the source code presented in Qt5Core.dll?
-
I'm trying to see what is the code that generate this .dll. I tryed to find on https://code.woboq.org/ but didn't find it
-
I'm trying to see what is the code that generate this .dll. I tryed to find on https://code.woboq.org/ but didn't find it
@leonardoMB
Qt5Core.dll
will be "large", generated from hundreds of source files/functions. You'd be better looking for a specific class/method than everything which goes intoQt5Core.dll
. The docs tell you which classes go into it. -
@leonardoMB
Qt5Core.dll
will be "large", generated from hundreds of source files/functions. You'd be better looking for a specific class/method than everything which goes intoQt5Core.dll
. The docs tell you which classes go into it.@JonB This will sound like laziness, but I really didn't find this information, could you provide me the url?
-
Official repo: https://code.qt.io/cgit/qt/qtbase.git/
Github mirror: https://github.com/qt/qtbase
If you just need to inspect the code: https://code.woboq.org/qt6/ -