# cmake-tutorial **Repository Path**: houkai2020/cmake-tutorial ## Basic Information - **Project Name**: cmake-tutorial - **Description**: cmake tutorial - **Primary Language**: C++ - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-11-16 - **Last Updated**: 2022-12-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 初始化仓库(远程存在,本地没有) ```bash # 1. 本地初始化 git init git remote add origin git@gitee.com:houkai2020/cmake-tutorial.git # 2. 添加本地的个人公钥到ssh公钥 # 3. 本地先执行 git pull # 4. 执行 git add . git commit -m "" # 5. 最后push git push origin master ``` # 版本信息 - ubuntu 18.08 - cmake >= 3.18 - gcc 7.5 - c++17 # 参考链接 https://cmake.org/cmake/help/v3.18/guide/tutorial/index.html