I have an app that is designed to run on Windows and MacOSX. I've been polishing it up and getting installers on both platforms ready but I've run into a snag and I'm not sure what the best design decision is.
The app is an executable, a couple libraries and some configuration files. Here's where it gets hairy. There are configuration files that I want to be installed in the "All User space", basically these files will be used regardless of what user on the machine is running the app.
My first thought was on Windows to put these in C:\ProgramData\[Organization]\[App]\ The first place I looked was QStandardPaths, but it turns out that none of the enums there point to this! It would seem that ProgramData is the 'logical' place to put files that should be "user agnostic" but why then does Qt have nothing built in to grab this folder? Is there a better place they should go? And also, what would the equivalent folder on the Mac-side be and how would I grab that?
Bookmarks