我正在使用纯粹的原生NDK开发Android应用程序项目,我必须在C ++中解析Json,所以我已经包含了Json精神。它需要包含一些boost c ++库,所以我从here下载了Boost版本1.55.0
我已将Boost文件夹添加到“包含”标签下的Project-> Properties -> C/C++ General -> Paths and Symbols
。
在我的json-parsing文件parser.h中:
#include "json_spirit_reader_template.h"
#include "json_spirit_writer_template.h"
在json_spirit_value.h中:
#include <vector>
#include <map>
#include <string>
#include <cassert>
#include <sstream>
#include <stdexcept>
#include <boost/config.hpp>
#include <boost/cstdint.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/variant.hpp>
当我尝试构建项目时,我收到此错误:
fatal error: boost/config.hpp: No such file or directory
在该行:
#include <boost/config.hpp>
但是按住Ctrl键会将我指向config.hpp文件。
我在这里缺少什么?