XCode problem with relative paths

Hi. I have the following structure:

  • Classes
    AppDelegate
    – common
    Test.h
    – scene
    HelloWorld.h

in HelloWorld.h I wrote #include “common/Test.h” and it works on android and windows, but not in Xcode
I got common/Test.h file not find. If I write “…/Classes/common/Test.h” it works, but when I try to add to user header search paths $(SRCROOT)/…/Classes it doesn’t work.

How can I resolve the issue, any suggestions?
Thx

drag and drop the file in xcode project-> classes folder

thx for answer, but it doesnt work. I tried to do it via folders references and folder groups

By project settings you can set the path of headers, libraries, etc.

when you drag and drop you have to set the option create groups.

you will get a yellow folder instead of blue and everything will work fine

thank you. it works