Hi
I like to have my .launch and .ccxml target configuration files in the main project directory. However, my projects don't live in fixed directories., My colleagues and I work on various versions of the code each in this own directory. What I would like to do is set up the debugging enviroment with relative paths to the target configuration and programs. So that we have a constant .launch file that correctly reference the target configuration file and program file in the same or sub-directories.
I have tried using normal relative paths "./Debug/xxx.out" and "./MyConfig.ccxml" but it complains that they don't exist.
I have tried using workspace relative name ${workspace_loc:/${ProjName}/Debug/xxx.out}
I have tried using ${PROJECT_LOC}/MyConfig.ccxml
The debugger works fine when I give it absolute path, but obivous that can be confusing when I forget to update one of the path and I find I am debugging a different version of the code that what I expected.
How can I use relative paths to set up the debugger?
Kindest regards