当前位置:网站首页>CPP (2) creating CPP project
CPP (2) creating CPP project
2020-11-07 20:58:00 【Coxhuang】
List of articles
- first Cpp Example
- #1 Environmental Science
- #2 summary
- #3 Start
- #3.1 Method 1 :Clion
- #3.2 Method 2 : Manually create
first Cpp Example
#1 Environmental Science
macOS 10.15.5
#2 summary
This article creates a simple Cpp engineering , Compare the similarities and differences between the two methods , The purpose of each document is not explained here , Just two kinds of creation Cpp The method of Engineering
#3 Start
GitHub Example :https://github.com/Coxhuang/FKCpp/tree/master/1.first_demo
#3.1 Method 1 :Clion
- New project
- function main.cpp
#3.2 Method 2 : Manually create
- Create the following file :
build CMakeLists.txt main.cpp
among :
- build: Empty folder
- CMakeLists.txt The contents are as follows :
cmake_minimum_required(VERSION 3.16) project(demo) set(CMAKE_CXX_STANDARD 11) add_executable(demo_exe main.cpp)
- main.cpp The contents are as follows :
//
// Created by Cox on 2020/8/30.
//
#include <iostream>
int main() {
std::cout << "Hello, World!" << std::endl;
return 0;
}
2. cmake
- Use terminal Get into built Under the table of contents
cmake ..
3. make compile
- stay built Under the table of contents
make
4. function
- stay built Under the table of contents , Run the executable
./demo_exe
Participation of this paper Tencent cloud media sharing plan , You are welcome to join us , share .
版权声明
本文为[Coxhuang]所创,转载请带上原文链接,感谢
边栏推荐
猜你喜欢
随机推荐
Web安全(三)---CSRF攻击
Deep into web workers (1)
Writing method of field and field comparison condition in where condition in thinkphpp6
laravel8更新之维护模式改进
Web安全(二)---跨域资源共享
是时候结束 BERTology了
14000 word distributed transaction principle analysis, master all of them, are you afraid of being asked in the interview?
洞察——风格注意力网络(SANet)在任意风格迁移中的应用
Got timeout reading communication packets解决方法
分享几个我日常使用的VS Code插件
Web Security (3) -- CSRF attack
Let's talk about the locks in the database
graph generation model
What do you think of the most controversial programming ideas?
Awk implements SQL like join operation
栈-括号的匹配
Adobe Lightroom / LR 2021 software installation package (with installation tutorial)
The emergence and significance of micro service
面部识别:攻击类型和反欺骗技术
使用 Xunit.DependencyInjection 改造测试项目







