首先安装 CMake Tools 插件
其次, 准备 C/C++ 代码和 CMakeLists.txt。我的是:
cmake_minimum_required(VERSION 3.5)
project(hello)
set(CMAKE_CXX_STANDARD 17)
add_executable(hello hello.cpp)
C++ 代码也很简单: hello.cpp 内容
#include <stdio.h>
int main()
{
printf("hello world!");
return 0;
}