2

whenever I am adding an openflow library and execute, this error occur

Undefined symbols:
  "_CATransform3DIdentity", referenced from:
      _CATransform3DIdentity$non_lazy_ptr in AFOpenFlowView.o
     (maybe you meant: _CATransform3DIdentity$non_lazy_ptr)
  "_CATransform3DRotate", referenced from:
      -[AFOpenFlowView(hidden) setUpInitialState] in AFOpenFlowView.o
      -[AFOpenFlowView(hidden) setUpInitialState] in AFOpenFlowView.o
ld: symbol(s) not found
collect2: ld returned 1 exit status

Any one have any idea about it?

DarkDust
  • 90,870
  • 19
  • 190
  • 224
Umair_uas
  • 673
  • 1
  • 9
  • 27
  • After having asked 21 questions already, please finally learn how to format on StackOverflow. Thank you. – DarkDust May 09 '11 at 14:03

2 Answers2

3

You need to add the "QuartzCore" framework to your app. The library you are using probably needs this framework, so your app needs to import this framework in order to compile.

Tejas
  • 651
  • 5
  • 10
1

Looks like you need to add the QuartzCore framework to your project. See this question for Xcode 3.2 or this question for Xcode4.

Community
  • 1
  • 1
DarkDust
  • 90,870
  • 19
  • 190
  • 224