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
Post a Comment