Skip to content
Snippets Groups Projects

Resolve "Automatische Generierung von cmake-Files für Projekte"

1 file
+ 19
0
Compare changes
  • Side-by-side
  • Inline
scripts/build.sh 0 → 100755
+ 19
0
 
#!/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
Loading