Windows 搭建ninja 编译c++的环境

2024-01-07 20:56:53

1. 系统安装python, 测试版本为(3.7.0)

2. 从官方网站获取get-pip.py

https://bootstrap.pypa.io/get-pip.py

3. 安装pip

python get-pip.py

4. 安装ninja

pip install ninja

5. 准备CMakeLists.txt

cmake_minimum_required(VERSION 3.22)
project(hello_ninja)
add_executable(${PROJECT_NAME} main.cpp)

6. 准备main.cpp

#include <iostream>
#include <conio.h>
int main(int argc, char *argv[])
{
?? ?std::cout << "hello world" << std::endl;
?? ?_getch();
?? ?return 0;
}

7. 编译, 从vs2019 Developer Command Prompt for VS 2019进入命令窗口

(与上述的main.cpp和CMakeLists.txt同级目录)

mkdir build

cd build

cmake -G Ninja ..

ninja

文章来源:https://blog.csdn.net/rjc_lihui/article/details/135387106
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。