我正在查看一个使用了一些库的Xcode项目。该项目是在另一台计算机上创建的,因此我需要更新一些路径。库搜索路径都以$(SRCROOT)开头。这是什么意思?
$(SRCROOT)
x9ybnkn61#
它是包含Xcode项目的目录的路径。
ars1skjm2#
这基本上是Xcode定义的项目根目录。http://developer.apple.com/library/mac/#documentation/DeveloperTools/Reference/XcodeBuildSettingRef/1-Build_Setting_Reference/build_setting_ref.html#//apple_ref/doc/uid/TP40003931-CH3-SW38
ipakzgxi3#
** xcode SRCROOT**
$(SRCROOT)(又名$(SOURCE_ROOT))是指向.xcodeproj所在位置的路径。检查起来很简单,只要把它放在一个字段中,Xcode就会给你一个提示
$(SOURCE_ROOT)
.xcodeproj
3条答案
按热度按时间x9ybnkn61#
它是包含Xcode项目的目录的路径。
ars1skjm2#
这基本上是Xcode定义的项目根目录。
http://developer.apple.com/library/mac/#documentation/DeveloperTools/Reference/XcodeBuildSettingRef/1-Build_Setting_Reference/build_setting_ref.html#//apple_ref/doc/uid/TP40003931-CH3-SW38
ipakzgxi3#
** xcode SRCROOT**
$(SRCROOT)
(又名$(SOURCE_ROOT)
)是指向.xcodeproj
所在位置的路径。检查起来很简单,只要把它放在一个字段中,Xcode就会给你一个提示