2

I have created a new Xcode Project to test the artoolkit. I have download the sdk from Git https://github.com/artoolkit/artoolkit5. I just copy the following files (See attached image)

enter image description here

from there give example project. But the its showing me the Error in ARMarker.h and ARMArkerMulti.h files when I try to build project.

enter image description here

I want to integrate ARToolkit SDK in one of my existing application but I have no idea where to start.

  • Which files/folder I used from SDK?
  • How do I create trackable?
Jonathan Leffler
  • 730,956
  • 141
  • 904
  • 1,278
Akhtar
  • 3,172
  • 5
  • 19
  • 21

2 Answers2

0

You should download the whole sdk, Unzip it and run the Xcode project from there. I tried it and it worked for me.

Manshahia
  • 33
  • 1
  • 8
0

I think this error because your new project does not contain pch file.(Latest Xcode does not include pch file)So you must add pch file from ARToolKit iOS project.Then set the file in build settings of your target like the following image:

enter image description here

Some additional Information: You can also note my answer on this link

IKKA
  • 6,297
  • 7
  • 50
  • 88