Tool-Clion用法

[TOC]

Clion用法

CMakeLists.txt写法

cmake扫描目录的所有cpp文件,可以在一个项目中跑所有的代码,运行所有的main函数

cmake_minimum_required(VERSION 3.15)
project(CCFCSP)

set(CMAKE_CXX_STANDARD 14)

# 遍历项目根目录下所有的 .cpp 文件
file (GLOB files *.cpp)
foreach (file ${files})
    string(REGEX REPLACE ".+/(.+)\\..*" "\\1" exe ${file})
    add_executable (${exe} ${file})
    message (\ \ \ \ --\ src/${exe}.cpp\ will\ be\ compiled\ to\ bin/${exe})
endforeach ()

注意:要保证每次新建的时候不修改CMakeLists.txt。在new cpp source file的时候,不勾选自动修改CMakeLists文件

模版代码修改

在clion的系统设置中进行修改=>找到新建c source file 的对应内容,第一行要写成#[[#include]]# <iostream>,然后后面是自动化的内容。

#[[#include]]# <iostream>

using namespace std;

int main() {

    return 0;
}
Posted on Apr 8, 2020