Simple C++ project issue with XCode -


i setting c++ project in xcode , seems not recognize classes. default, there main.cpp file in source folder.

i added node.cpp , node.h file folder, , included node.h in main.cpp file. unfortunately, it's not recognizing it, says no such file or directory.

why not linking?

how did include node.h in main.cpp?

#include <node.h> 

will not work, have use

#include "node.h" 

Comments

Popular posts from this blog

ASP.NET/SQL find the element ID and update database -

jquery - appear modal windows bottom -

c++ - Compiling static TagLib 1.6.3 libraries for Windows -