Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
31 |
Tags
- GO 언어
- window
- write
- 영화
- go
- Sync
- windows
- c++
- Golang
- range
- mutex
- C
- package
- go언어
- Close
- FOR
- install
- 책
- bitcoin
- json
- http
- 리뷰
- Python
- API
- channel
- JavaScript
- Linux
- Callback
- tcp
- File
Archives
- Today
- Total
목록yaml-cpp (1)
Code Habit
C++ 에서 YAML 다루기 : yaml-cpp 시작하기
YAML 파일은 간결하고 직관적인 데이터 구조를 표현하는 형식으로 구성 파일에 주로 사용된다. yaml-cpp는 c++언어에서 yaml파일을 다룰 수 있는 강력한 라이브러리로, 다양한 yaml 기능을 지원하며 설치가 쉽고 사용이 간편하다. 이 글에서는 yaml-cpp의 기본적인 사용법을 단계별로 알아보겠다.1. yaml-cpp 설치하기1.1 git code 다운, 빌드 & 설치git clone https://github.com/jbeder/yaml-cpp.gitcd yaml-cppmkdir buildcd buildcmake ..makesudo make install 1.2 CMakeLists.txt 파일에 yaml-cpp 라이브러리 추가find_package(yaml-cpp REQUIRED)target_..
카테고리 없음
2024. 10. 10. 23:24