Fix broken scripts, add script to run and test via CMake.
This commit is contained in:
@@ -33,7 +33,7 @@ install_debianesque () {
|
||||
fi
|
||||
|
||||
echo "[+] installing tools"
|
||||
sudo $SUDO apt-get $APTARGS install git clang scdoc python3-pip
|
||||
sudo $SUDO apt-get $APTARGS install git clang scdoc python3-pip doxygen graphviz
|
||||
}
|
||||
|
||||
install_unsupported () {
|
||||
|
||||
14
scripts/setup-cmake.sh
Executable file
14
scripts/setup-cmake.sh
Executable file
@@ -0,0 +1,14 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
######################################################################
|
||||
# @author : kyle (kyleimap.cc)
|
||||
# @file : setup-cmake
|
||||
# @created : Wednesday Oct 18, 2023 04:24:21 PDT
|
||||
#
|
||||
# @description : Prepare a CMake build environment, build, and test.
|
||||
######################################################################
|
||||
|
||||
set -eux
|
||||
|
||||
mkdir -p build && cd build
|
||||
cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo .. && make all test && ctest
|
||||
Reference in New Issue
Block a user