1 Star 2 Fork 1

wenqzheng/Building-Low-Latency-Applications-with-CPP

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
no_clean_build.sh 494 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/bash
# TODO - point these to the correct binary locations on your system.
CMAKE=$(which cmake)
NINJA=$(which ninja)
mkdir -p ./cmake-build-release
$CMAKE -DCMAKE_BUILD_TYPE=Release -DCMAKE_MAKE_PROGRAM=$NINJA -G Ninja -S . -B ./cmake-build-release
$CMAKE --build ./cmake-build-release --target all -j 4
mkdir -p ./cmake-build-debug
$CMAKE -DCMAKE_BUILD_TYPE=Debug -DCMAKE_MAKE_PROGRAM=$NINJA -G Ninja -S . -B ./cmake-build-debug
$CMAKE --build ./cmake-build-debug --target all -j 4
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wenqzheng/Building-Low-Latency-Applications-with-CPP.git
git@gitee.com:wenqzheng/Building-Low-Latency-Applications-with-CPP.git
wenqzheng
Building-Low-Latency-Applications-with-CPP
Building-Low-Latency-Applications-with-CPP
main

搜索帮助