This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

include source outside the CCS project folder

Hi CCS Team,

let's say i have the following folder configurations:

The basic idea is that under the workspace_folder, there are several projects (e.g. project_a and project_b) which use the same source files and headers in common_source folder.

What would be the best way to include the source files and headers in common_source folder into the projects?

My idea is now to include the common sources with relative path to project location, so that when the project is imported to other workspace directory, the user shall only copy the common source folder under the new workspace, and that's it. However i have problem implementing this. Including the files using the linked resource with relative path to PROJECT_LOC is working, however when i try to add the "include path" with

"${project_loc:/../common_source}"

That seems not to work. 

Anything that i am doing here is not correct?