You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
307 B
Bash
15 lines
307 B
Bash
#!/bin/bash
|
|
sudo apt-get install cmake
|
|
sudo apt-get install libmysqlclient-dev
|
|
sudo apt-get install libssl-dev
|
|
cd ..
|
|
git clone --depth=50 https://github.com/xia-chu/ZLToolKit.git
|
|
cd ZLToolKit
|
|
mkdir -p linux_build
|
|
rm -rf ./build
|
|
ln -s ./linux_build ./build
|
|
cd linux_build
|
|
cmake ..
|
|
make -j4
|
|
sudo make install
|