Can a project be used as is on both Linux and Windows without importing?
I notice that in .cproject, there are a few variables that have absolute paths like:
<stringMacro name="NEW_CCS_INSTALL_ROOT" type="VALUE_PATH_DIR" value="C:\TI\ccsv4"/>
, which is odd since I'm running ccs 6. The project which was created on Windows using CCS4 produces the build error on Linux:
Cannot run program "C:\TI\ccsv4/utils/gmake/gmake": Unknown reason
The "Path Variables" CCS_BASE_ROOT, CCS_INSTALL_ROOT, etc. in the project properties on Linux look correct, but something is getting mixed at build time.
Ideally the project would not have to be imported with separate project files, and I could just check out from version control and build on either platform. In the past I've had to hand edited paths and slashes which is not ideal.
Thanks.