I'm using cmake 2.8.3 to generate a C/C++ project file for xcode 3.2.5 ; the build goes generally fine, but I have to manually set the "Product Name" each time I generate the xcode project (in Project / Edit Project Settings / Packaging).

If I fail to set this product name, xcode refuses to build the project, and exits reporting the following error :

  • Build setting PRODUCT_NAME undefined

Is it possible to set this value with cmake ? or go without defining a Product Name ?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted
+50

Have do you tried something like this?

 set_target_property(your_target XCODE_ATTRIBUTE_PRODUCT_NAME "aaa")

I've replaced Mac OS X with Linux on my MacBook, so I can't check this suggestion.

link|improve this answer
Thanks for your suggestion, I had the impression that the PRODUCT_NAME was a 'projet' value for XCode, and not a 'target' property. I will give it a try. – rotoglup Nov 14 '11 at 22:33
Great ! thanks for the tip ; it seems that I cannot reproduce the problem : I've changed/completed my cmake files to build with 'make' and xcode does no more complain. But your method allows to explicitly control the product name, thanks ! – rotoglup Nov 15 '11 at 22:20
Just for the sake of completeness, the command is set_target_property(your_target PROPERTIES XCODE_ATTRIBUTE_PRODUCT_NAME "aaa") – rotoglup Nov 15 '11 at 22:21
feedback

You have to define it. You can't set the value with cmake.

link|improve this answer
You mean 'define it manually' each time I change the cmakelists file and regenerate the xcode project ? – rotoglup Nov 9 '11 at 11:58
1  
I am afraid so. A little bug with x code that apple should be able to resolve soon. – user998335 Nov 10 '11 at 5:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.