Win10下搭建vscode+mingw+cmake+python工程编译运行环境
受A国影响,公司不允许使用Visual Studio,于是摸索出一条vscode + mingw + cmake的轻量级方式,发现还挺好用,顺便还配了python环境。
一、配置mingw进行项目编译
- 准备工作
1)添加路径“xxx\mingw64\bin”至系统环境变量。
2)新建vscode工程文件夹,在文件夹下新建.vscode文件夹,并依次创建c_cpp_properties.json、tasks.json、launch.json文件。 - 编译配置
1)c_cpp_properties.json用于配置gcc路径,参考如下:
{
"configurations": [
{
"name": "Win32",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"compilerPath": "D:\\Profession\\mingw64\\bin\\gcc.exe",
"cStandard": "c11",
"cppStandard": "c++17"