Skip to content
Snippets Groups Projects
Verified Commit a2a9ed7a authored by Tobias Frisch's avatar Tobias Frisch
Browse files

[#107] Added basic build script

parent 74f3e2f3
No related branches found
No related tags found
1 merge request!99Resolve "Automatische Generierung von cmake-Files für Projekte"
Pipeline #27311 passed
#!/bin/sh
# Navigate to the main directory of the cloned repository
BASEDIR=$(dirname "$0")
cd $BASEDIR
cd ..
# Setup git lfs and the submodules
git lfs install
git submodule init
git submodule update
# Setup build directory
mkdir build
cd build
# Build process
cmake ..
make
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment