https://github.com/fcbyk/coke-cc
XinYi Lebo, C++ notes & code
https://github.com/fcbyk/coke-cc
Last synced: 5 months ago
JSON representation
XinYi Lebo, C++ notes & code
- Host: GitHub
- URL: https://github.com/fcbyk/coke-cc
- Owner: fcbyk
- Created: 2025-02-28T15:43:29.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2026-01-23T17:37:06.000Z (6 months ago)
- Last Synced: 2026-01-24T07:48:02.438Z (6 months ago)
- Language: C++
- Homepage:
- Size: 1.05 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## 目录结构
- 每节课写的所有代码,放在以 `第几课+日期` 命名文件夹中
```text
coke-cc/
├── docs vitepress笔记文件
├── example 示例代码(读代码)
├── first 一期课程代码
└── second 二期课程代码
├── unit36-sep/ 9月写的第36课代码文件夹
├── app361.cpp
├── ...
└── 递归实战.md 课程主题及笔记文件
├── CMakeLists.txt cmake配置文件
```
## 编译说明
- 修改 `CMakeLists.txt` 文件,然后重新加载该文件即可
- 推荐使用 CLion插件 简化操作
- 推荐只编译当天写的代码文件
```cmake
# 指定哪些源文件要编译为exe可执行程序
add_executable(app1 unit39-oct/app391.cpp)
add_executable(app2 unit39-oct/app392.cpp)
```