When setting up the paths in the uV4 target setting dialog I need to find out how to set relative paths from the location of the project file. I refer to the path setups for locations of OBJ and LIST files and the output file from the link process.
Michael Karas
The best way is the double dot notation {..\} wich ponts to the previous directory(folder). If you know the depth of the project from the root (eg C:\ or D:\ or F:\ ...) then you can point to the desired subfolder using this ..\ notation
C:\Dev\project1\v1.0a\src\
eg: ..\..\..\..\ points to root of whatever drive leter you use ( \ also ) and combining with the $ keys you can build sophisticated file paths for your projects.
also the codes for relative paths are expresed here: http://www.keil.com/support/man/docs/uv4/uv4_ut_keysequence.htm http://www.keil.com/support/man/docs/uv4/uv4_cm_set.htm