mirror of
https://github.com/red0124/ssp.git
synced 2025-01-23 13:05:20 +01:00
Add script to install doctest
This commit is contained in:
parent
0797a372b9
commit
65b341b612
17
script/ci_install_deps.sh
Executable file
17
script/ci_install_deps.sh
Executable file
@ -0,0 +1,17 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
JOBS=4
|
||||||
|
BUILD_TYPE=Debug
|
||||||
|
|
||||||
|
set -eux
|
||||||
|
|
||||||
|
git clone https://github.com/onqtam/doctest -b 2.4.4 --depth 1
|
||||||
|
|
||||||
|
cmake -S doctest -B doctest/build \
|
||||||
|
-D CMAKE_BUILD_TYPE=${BUILD_TYPE} \
|
||||||
|
-D DOCTEST_WITH_MAIN_IN_STATIC_LIB=NO \
|
||||||
|
-D DOCTEST_WITH_TESTS=NO
|
||||||
|
|
||||||
|
cmake --build doctest/build --config ${BUILD_TYPE} --target install -j ${JOBS}
|
||||||
|
|
||||||
|
rm -rf doctest
|
Loading…
Reference in New Issue
Block a user