
C++
C++相关
P0ny
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
【C++学习】3.VS Code 编译配置
launch.json { // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/...原创 2019-11-27 20:41:45 · 377 阅读 · 0 评论 -
【C++学习】1.Kdevelop环境配置
1.安装Kdevelop sudo apt-get install kdevelop 2.创建hello world项目 新建项目 点击new project 再选择standard,填入工程名hello_wolrd,选择项目地址,点击next原创 2019-09-17 22:16:10 · 379 阅读 · 0 评论 -
【C++学习】2.CMakeLists
CMakeLists.txt是cmake 根据内置的规则和语法来自动生成相关的makefile 文件进行编译,同时还支持静态库和动态库的构建. CMAKE_MINIMUM_REQUIRED(VERSION 2.8) cmake所要求的最低版本,低于此版本会终止编译 PROJECT(hello_world) 自定义一个工程名称,之后的内容都可以使用,自动引入两个变量 PROJECT_BINARY_...原创 2019-09-17 23:34:09 · 257 阅读 · 0 评论