XCode Library search path

前端 未结 1 1758
故里飘歌
故里飘歌 2021-02-04 15:18

For my iOS project, I have a specific folder structure:

|-- root    
|     |-- src
|     |  |-- xcode                            
|     |     |-- MyProject
|             


        
1条回答
  •  悲&欢浪女
    2021-02-04 16:04

    I think it's $(SRCROOT)/../../../library (I'm not sure whether it needs trailing slash)

    $(SRCROOT)/.. points to root/src (one level up from root/src/xcode)

    $(SRCROOT)/../.. points to root(two levels up from root/src/xcode)

    $(SRCROOT)/../../../library points to library

    0 讨论(0)
提交回复
热议问题