View Issue Details Jump to Notes ] Print ]
IDProjectCategoryView StatusDate SubmittedLast Update
0014901CMakeCMakepublic2014-04-30 16:082014-11-03 08:37
ReporterYasser Zabuair 
Assigned To 
PrioritynormalSeveritymajorReproducibilityalways
StatusclosedResolutionfixed 
PlatformApple MacOSOS XOS Version10.4.10
Product VersionCMake 2.8.12.2 
Target VersionCMake 3.0Fixed in VersionCMake 3.0 
Summary0014901: Adding an .xib to an XCode project does not work.
DescriptionWhen an .xib resource is added to the project, the Xcode generator generates the project in such a way that XCode does not treat the project as an .xib:

The project.pbxproj uses an invalid field for an xib file. When the project is generated, the following is setup for the xib:
{isa = PBXFileReference; explicitFileType = "file.xib"; fileEncoding = 4; name = "TestView.xib"; path = "mpos_apps/ktciosapp/TestView.xib"; sourceTree = SOURCE_ROOT; };

The explicitFiletype is incorrect, it should be lastKnownFileType:

{isa = PBXFileReference; lastKnownFileType = "file.xib"; fileEncoding = 4; name = "TestView.xib"; path = "mpos_apps/ktciosapp/TestView.xib"; sourceTree = SOURCE_ROOT; };

Steps To ReproduceThe following is done to add the .xib:

file(GLOB xibFiles *.xib)
.
.
source_group("Resources" FILES ${xibFiles})
.
.
add_executable (${ProgramName} MACOSX_BUNDLE ${cppFiles} ${hFiles} ${mmFiles} ${xibFiles} )

set_target_properties(${ProgramName} PROPERTIES
                                     MACOSX_BUNDLE_GUI_IDENTIFIER "ca.kili.ktciosapp"
                                     RESOURCE "${xibFiles}"
                                     XCODE_ATTRIBUTE_CODE_SIGN_IDENTITY "iPhone Developer"
                                     XCODE_ATTRIBUTE_INFOPLIST_PREPROCESS YES
)
Additional InformationThis is for CMake 2.8.12.2 and XCode Version 5.1.1 (5B1008)
TagsNo tags attached.
Attached Files

 Relationships

  Notes
(0035811)
Brad King (manager)
2014-04-30 16:23

This was fixed here:

 Xcode: Fix storyboard view
 http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=1ce02ebfd [^]

Please try a CMake 3.0 release candidate:

 http://www.cmake.org/files/v3.0/?C=M;O=D [^]
(0035812)
Yasser Zabuair (reporter)
2014-04-30 18:00

- Thanks for the quick response.
- CMake 3.0 seems to have solved the problem.
- Feel free to close this issue.
(0037127)
Robert Maynard (manager)
2014-11-03 08:37

Closing resolved issues that have not been updated in more than 4 months.

 Issue History
Date Modified Username Field Change
2014-04-30 16:08 Yasser Zabuair New Issue
2014-04-30 16:23 Brad King Note Added: 0035811
2014-04-30 18:00 Yasser Zabuair Note Added: 0035812
2014-05-01 08:35 Brad King Status new => resolved
2014-05-01 08:35 Brad King Resolution open => fixed
2014-05-01 08:35 Brad King Fixed in Version => CMake 3.0
2014-05-01 08:35 Brad King Target Version => CMake 3.0
2014-11-03 08:37 Robert Maynard Note Added: 0037127
2014-11-03 08:37 Robert Maynard Status resolved => closed


Copyright © 2000 - 2018 MantisBT Team