Digging into CMake for the first time. Very excited about it, but had some questions about the Xcode project the example config produces.
I’m hoping to use CMake on CI and would like to use the built Xcode project locally, however it’s a bit cluttered with the default config it seems:
-
The example CMake projects in the JUCE repo don’t add headers (
PluginEditor.h
andPluginProcessor.h
) totarget_sources
— not sure if this is intentional, but without listing them there, they don’t show up in Xcode for me, so I assume it’s an omission? -
Headers and Source are output into two separated folders — is this trivial to change? I’d like to have my source organized the way Projucer had it / the way it’s in source control.
-
Is there a way to stick all the juce prefixed .mm and .h files in a subfolder to get them out of the way?
Thanks for any pointers!