This commit is contained in:
Jose
2024-10-17 15:41:09 +02:00
parent 3a87eb5751
commit 6db0784f9b
54 changed files with 5856 additions and 0 deletions

View File

@ -0,0 +1,28 @@
#!/bin/sh
rm -rf tmp
mkdir tmp
cd tmp
##########################################################
## install oatpp
MODULE_NAME="oatpp"
git clone --depth=1 https://github.com/oatpp/$MODULE_NAME
cd $MODULE_NAME
mkdir build
cd build
cmake -DOATPP_BUILD_TESTS=OFF -DCMAKE_BUILD_TYPE=Release ..
make install -j 6
cd ../../
##########################################################
cd ../
rm -rf tmp