[DiscordArchive] and have you included the header where you use it ?
[DiscordArchive] and have you included the header where you use it ?
Archived author: Adspartan • Posted: 2019-06-05T15:31:57.668000+00:00
Original source
yeah I got the same thing at some point, idk why (it still showed up correctly, probably a windows bug)
Archived author: Skarn • Posted: 2019-06-05T15:32:07.658000+00:00
Original source
yeah
Archived author: Adspartan • Posted: 2019-06-05T15:32:40.744000+00:00
Original source
also check the warnings when you have an issue like that, they are very useful
Archived author: Adspartan • Posted: 2019-06-05T15:46:06.121000+00:00
Original source
oh, the hastebin has finally worked... mfw that doesn't load instantly
Archived author: schlumpf • Posted: 2019-06-05T16:01:27.507000+00:00
Original source
Having explicit addition of sources to a library/module is good because you‘re aware of what you’re doing, including what actually needs to moc etc. not having a list also implies that every build invoke needs to crawl the entire Filesystem for changes rather than knowing what dependencies are, and what files to check. The fact it is done in a separate file not your IDE is because your IDE is shit and the fact there is two steps means you’re free in choice, not only of OS but also versions of compilers and the compiler itself.
Archived author: schlumpf • Posted: 2019-06-05T16:02:49.919000+00:00
Original source
gpszProgramName missing comes from Utils.cpp referencing that as extern symbol but the symbol not being defined anywhere since you removed it. Either re-add it, or remove that dependent code as well.
Archived author: Skarn • Posted: 2019-06-05T16:03:07.752000+00:00
Original source
Got rid of it
Archived author: Skarn • Posted: 2019-06-05T16:03:19.954000+00:00
Original source
It works now
Archived author: schlumpf • Posted: 2019-06-05T16:04:12.341000+00:00
Original source
If the missing symbol is a qt_metacall Style one, it is a missing moc. If it is a symbol you thought you defined yourself you either don’t compile/link that source file, or the symbol you defined is slightly different, eg missing or additional const.