win10下mingw64+cmake+make

安装了mingw-w64,把bin下的mingw32-make.exe复制一份并改名为make.exe

安装cmake

编写代码

#include
using namespace std;
int main(){
  cout<

 由于下的mingw是64位的,64位下一个指针8位,所以输出8并换行

 

在同级目录下编写CMakeLists.txt

cmake_minimum_required(VERSION 3.0) 
project(test) 
set(SOURCE test.cpp) 
add_executable(${PROJECT_NAME} ${SOURCE}) 

 然后打开cmd

mkdir build
cd build
cmake -G "Unix Makefiles" ../

#执行make
make
# 执行生成的exe
test

 

 

 

你可能感兴趣的:(安装与配置)