Created
January 4, 2026 22:55
-
-
Save anytizer/f23fca9df5a0c24c20da813ef2e04471 to your computer and use it in GitHub Desktop.
List of resources embedded in a Qt application
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // List of resources embedded in a Qt application | |
| QDirIterator it(":", QDirIterator::Subdirectories); | |
| while (it.hasNext()) | |
| { | |
| QString dir = it.next(); | |
| qDebug() << dir; | |
| // /icons/. | |
| // /icons/logo.svg | |
| // ... | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment