pikapython/port/linux/install_dependency.sh
2022-01-05 21:22:54 +08:00

4 lines
356 B
Bash
Executable File

git clone https://github.com/google/benchmark.git google_benchmark && cd google_benchmark && cmake -E make_directory "build" && cmake -E chdir "build" cmake -DBENCHMARK_DOWNLOAD_DEPENDENCIES=on -DCMAKE_BUILD_TYPE=Release ../ && cmake --build "build" --config Release && sudo cmake --build "build" --config Release --target install
rm google_benchmark -rf