Bill Hoffman wrote:
Joshua Jensen wrote:
The following patch fixes the issue.
Thanks!
$ cvs commit -m "ENH: @ must be escaped in xcode projects"
cmXCodeObject.cxx
Checking for path: /cvsroot/CMake/CMake/Source
Unrestricted user: hoffman
/cvsroot/CMake/CMake/Source/cmXCodeObject.cxx,v <-- c
Joshua Jensen wrote:
After inserting the following into my CMakeLists.txt:
SET_TARGET_PROPERTIES(MyLibrary PROPERTIES BUILD_WITH_INSTALL_RPATH 1
INSTALL_NAME_DIR @executable_path)
XCode stopped opening the .xcodeproj. This was due to an unquoted
line in project.pbxproj:
INSTALL_NAME = @ex
After inserting the following into my CMakeLists.txt:
SET_TARGET_PROPERTIES(MyLibrary PROPERTIES BUILD_WITH_INSTALL_RPATH 1
INSTALL_NAME_DIR @executable_path)
XCode stopped opening the .xcodeproj. This was due to an unquoted line
in project.pbxproj:
INSTALL_NAME = @executable_path
It shou