Please note: We are aware of an issue affecting replies on the Arm Community forums, which may not be loading as expected.

We apologize for any inconvenience and appreciate your patience while we investigate and work to resolve the issue.

Thank you for your understanding.


This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Path define

Hello,
Does anyone know if there is a way to set project path macro?

For example when I use standard makefile I can quickly change library of all C files
in project like this:

#USED_SDK := ../SDK_1
USED_SDK := ../SDK_2

SRC_FILES  = $(USED_SDK)/file_A.c)
SRC_FILES += $(USED_SDK)/file_B.c)

But with Keil project any time I update SDK version I have to change manually path to
all files... :(