up vote 1 down vote favorite
1
share [g+] share [fb]

I have successfully compiled lua in my mac. It works. It runs. Now, I want to mix it with C++ in XCode. So I looked up in the Linked Library, the usual place to add more libraries in XCode. But of course, lua isn't there. Now, how do I tell XCode the existence of lua so that the program can include lua.h correctly?

link|improve this question

1  
If you haven't already, check out rasterbar.com/products/luabind.html - it may help you integrate your C++ and Lua code. – John Zwinck Oct 18 '09 at 23:20
feedback

1 Answer

up vote 4 down vote accepted

Up to you :

  • use the "Header Search Path" and "Library Search Paths" in the properties to add the location of Lua headers and liblua.a
  • OR just copy the Lua headers and liblua.a in your project directory, then add them to your project
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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