vs2019 - JSONCPP 빌드하기
728x90
github.com/open-source-parsers/jsoncpp
다운로드 ZIP 버튼을 눌러서 다운을 받습니다
폴더안에 amalgamate.py 파일을 실행 해주시면 dist 파일이 생성됩니다.
그다음 CMAKE 를 이용해서
Configure -> Generate 순으로 눌러주시면됩니다. Configure를 누르시면 vs버전과 64 or 32 중에 선택해주시면됩니다.
완료되시면 OpenProject를 누르셔서
저희가 필요한 jsoncpp_lib 파일을 빌드 할건데 제가 요기서 이거때문에 4시간동안 ㅠ해맸씁니다..
다른분들은 고생하지마시길..
lib파일에 속성 코드생성에서 런타임 라이브러리를 다중스레드 디버그 로 바꿔주셔야 .dll 파일이 생성되요 !
dll 파일이없으면 나중에 에러 뜨더라구요 ㅠㅠ
빌드하시면
/bin/lib/Debug/jsoncpp.lib 파일과 /bin/bin/jsoncpp.dll 파일 그리고 github에서 다운받은 파일에서 include 파일을
실행할 폴더로 복사해주시면 됩니다.
#include "include/json/json.h"
#include <iostream>
#pragma comment(lib , "jsoncpp.lib")
/** \brief Write the Value object to a stream.
* Example Usage:
* $g++ streamWrite.cpp -ljsoncpp -std=c++11 -o streamWrite
* $./streamWrite
* {
* "Age" : 20,
* "Name" : "robin"
* }
*/
int main() {
Json::Value root;
Json::StreamWriterBuilder builder;
const std::unique_ptr<Json::StreamWriter> writer(builder.newStreamWriter());
root["Name"] = "robin";
root["Age"] = 20;
writer->write(root, &std::cout);
return EXIT_SUCCESS;
}
728x90
'C++' 카테고리의 다른 글
c++ 문자열 테두리 (0) | 2020.10.18 |
---|---|
c++ 메모하며 공부하기 - Codeup 1018 - 시간 입력받아 그대로 출력하기. (0) | 2020.10.13 |
댓글
이 글 공유하기
다른 글
-
c++ 문자열 테두리
c++ 문자열 테두리
2020.10.18 -
c++ 메모하며 공부하기 - Codeup 1018 - 시간 입력받아 그대로 출력하기.
c++ 메모하며 공부하기 - Codeup 1018 - 시간 입력받아 그대로 출력하기.
2020.10.13