I am using CCS v3.3 for DM642 based application. My workspace includes 4 projects.
My projects are located (for example) in C:\Path\To\MyApp folder. If I copy my projects to another location, let say, C:\New\Path\To\MyApp and try to open workspace from that location, CCS opens it OK. However when I try to rebuild my projects in new location CCS actually build projects in old location. CCS doesn't complain or display any errors, simply takes source files from old location and produce its output files in old location. Seems to me that CCS project definition file contains absolute path to project original location.
So I've opened MyApp.pjt file in notepad and I saw the following:
[Project Settings]
ProjectDir="C:\New\Path\To\MyApp\"
ProjectType=Executable
...
[Source Files]
Source="File1.c"
Source="File2.c"
...
So the pjt file contains absolute path to original project location.
My question is how can I make projects moveable from one location to another, so I can build them in any location?
How can I prevent CCS from using absolute paths?
Thanks