Tool/software: Code Composer Studio
I'm hoping you can point me to a good resource for setting up CCS for multiple developers on multiple OSes. We are trying to transition from me building code on my workstation, to a real infrastructure. We are using a git repository as the common codebase that information either gets checked into (if it's needed on all workstations) or ignored (if it is specific to a particular workstation).
Current situation: I build code on my workstation, and I push and pull changes to github. If I have a problem with my build settings (such as having to add an include directory which is a subdirectory of my project root), I do it, and it gets saved to the .cproject file.
Where we want to go: Me and another developer working on Windows, able to create and compile code for testing. Release builds and SQA being built on a Jenkins/linux server with automated tasks. Where I run into trouble is that parts of the .cproject file need to be very different on Linux. I can add the include directories to .cproject through CCS, but then I also pull in lots of other things that linux doesn't have, and it gets upset at those things.
Thanks in advance,
Paul