Hey JUCE people,
we started a desktop application with JUCE which runs good on macOS. Now we want to write unit tests, but do not know what is a good or preferred setup / structure of our project. For sure, it always depends, but maybe there is a common way how to structure a JUCE project?
I started to change the structure of our project from one JUCE projucer project to:
app => Main projucer application, includes core
core => module (or maybe static library) with the core source code
test => Test projucer application which starts the tests with the UnitTestRunner, includes core
Is a good way to go?
Side note: Later we like to run this via command line, maybe with cmake, but the test app can also be a command-line application.
Thanks
David
