lexical or preprocessor issue file not found occurs while archiving?

前端 未结 13 1255
难免孤独
难免孤独 2020-11-27 05:28

\"this

I am new to this iPhone development and i have almost completed my fi

相关标签:
13条回答
  • 2020-11-27 06:21

    I had this same issue now and found that my sub-projects 'Public Header Folder Path' was set to an incorrect path (when compared with what my main project was using as its 'Header Search Path' and 'User Header Search Path').

    e.g.

    My main project had the following:

    • Header Search Paths
      • Debug "build/Debug-iphoneos/../../Headers"
      • Release "build/Debug-iphoneos/../../Headers"

    And the same for the User Header Search Paths


    Whereas my sub-project (dependency) had the following:

    • Public Header Folder Path
      • Debug "include/BoxSDK"
      • Release "include/BoxSDK"

    Changing the 'Public Header Folder Path' to "../../Headers/BoxSDK" fixed the problem since the main project was already searching that folder ('../../Headers').

    PS: I took some good screenshots, but I am not allowed to post an answer with images until I hit reputation 10 :(

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