C++ Json 库构建
C++ Json library building
我使用 https://github.com/nlohmann/json 在 C++ 中处理,我尝试构建一个简单的代码:
#include "lib/json-lib/json.hpp"
using json = nlohmann::json;
int main() {
json jsonConfiguration;
while(1){
std::cout << "Hello Wolrd!" <<std::endl;
}
return 0;
}
我从 https://github.com/nlohmann/json/tree/develop/single_include/nlohmann 中获取文件 json.hpp
我把这个保存在 lib/json-lib
下。我用 g++ main.cpp
构建我的 main.cpp,当我在构建后启动它时,我得到了这个:
我使用 MinGW 构建我的文件。
如您所见:
If you use MinGW, then copy libstdc++-6.dll and libgcc_s_dw2-1.dll
into the same folder as your executable. – salted Sep 2 '17 at 22:44
所以我做到了并且效果很好,这些文件存储在“/bin”中
我使用 https://github.com/nlohmann/json 在 C++ 中处理,我尝试构建一个简单的代码:
#include "lib/json-lib/json.hpp"
using json = nlohmann::json;
int main() {
json jsonConfiguration;
while(1){
std::cout << "Hello Wolrd!" <<std::endl;
}
return 0;
}
我从 https://github.com/nlohmann/json/tree/develop/single_include/nlohmann 中获取文件 json.hpp
我把这个保存在 lib/json-lib
下。我用 g++ main.cpp
构建我的 main.cpp,当我在构建后启动它时,我得到了这个:
我使用 MinGW 构建我的文件。
如您所见:
If you use MinGW, then copy libstdc++-6.dll and libgcc_s_dw2-1.dll into the same folder as your executable. – salted Sep 2 '17 at 22:44
所以我做到了并且效果很好,这些文件存储在“/bin”中