mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-30 23:45:28 +08:00
8 lines
105 B
Bash
Executable File
8 lines
105 B
Bash
Executable File
if [[ -d "./build" ]]
|
|
then
|
|
rm -rf build
|
|
fi
|
|
|
|
mkdir build && cd build
|
|
cmake ..
|
|
make -j8 && make install |