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... :(