First build system

First draft of a build system. This will run the hello function from our
library.
This commit is contained in:
2024-02-04 13:17:57 -05:00
parent 8d592c02c7
commit 3b48433ec9
7 changed files with 82 additions and 0 deletions

29
build-all.sh Executable file
View File

@@ -0,0 +1,29 @@
#!/bin/bash
#
# Build script to build everything
set echo on
mkdir -p bin/
echo "Building all.."
pushd quantum
source build.sh
popd
ERRORLEVEL=$?
if [ $ERRORLEVEL -ne 0 ]; then
echo "Error:"$ERRORLEVEL && exit
fi
pushd test_stuff
source build.sh
popd
ERRORLEVEL=$?
if [ $ERRORLEVEL -ne 0 ]; then
echo "Error:"$ERRORLEVEL && exit
fi
echo "All assemblies built successfully!!!!"