#!/bin/bash
# remove all thing in current dir except the file named build.sh
rm -rf *[!build.sh]*
cmake ..
make VERBOSE=1
#ctest -D
build.sh
最新推荐文章于 2024-06-18 10:51:22 发布
#!/bin/bash
# remove all thing in current dir except the file named build.sh
rm -rf *[!build.sh]*
cmake ..
make VERBOSE=1
#ctest -D
1378

被折叠的 条评论
为什么被折叠?