1 Star 0 Fork 14

道貌岸然的模样/libtin

forked from yizhangss/libtin 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
config.sh 575 Bytes
一键复制 编辑 原始数据 按行查看 历史
yizhangss 提交于 2021-10-15 23:09 . tmp update
#!/bin/bash
cmd=${1}
package=libtin
stow_dir=/opt/stow
target_dir=/usr/local
if [[ ${cmd} == "configure" && ! -d "build/" ]]; then
mkdir build && cd build && cmake .. -DCMAKE_INSTALL_PREFIX=${stow_dir}/${package} -DCMAKE_BUILD_TYPE=Release
elif [[ ${cmd} == "configure" ]]; then
cd build && rm -rf * && cmake .. -DCMAKE_INSTALL_PREFIX=${stow_dir}/${package} -DCMAKE_BUILD_TYPE=Release
elif [[ ${cmd} == "build" ]]; then
cd build && make
elif [[ ${cmd} == "install" ]]; then
cd build && sudo make install
sudo stow --dir=${stow_dir} --target=${target_dir} ${package}
fi
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/a-dignified-appearance/libtin.git
git@gitee.com:a-dignified-appearance/libtin.git
a-dignified-appearance
libtin
libtin
master

搜索帮助