mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2025-10-07 09:31:35 +08:00
7 lines
88 B
Bash
Executable File
7 lines
88 B
Bash
Executable File
#!/bin/bash
|
|
make || exit -1
|
|
mkdir -p build
|
|
cd build
|
|
cmake .. || exit -1
|
|
make || exit -1
|