Include large resources using Visual Studio?
-
Keep getting msvc compiler out of heap space error, because I included a 20MB resource. Searching online, found this: https://bugreports.qt.io/browse/QTBUG-55293
What's the equivalent of CONFIg += resources_big in MS Visual Studio 2022 w/Qt VS Tools extension?
-
Use BIG_RESOURCES in your qt_add_resources call.
-
Use BIG_RESOURCES in your qt_add_resources call.
@Christian-Ehrlicher QT VS Tools is automatically including .qrc files, so I'm not using qt_add_resources. Also, I'm not using CMAKE.