mirror of
https://github.com/avinal/Krypto.git
synced 2026-01-09 22:58:36 +05:30
15 lines
144 B
Bash
15 lines
144 B
Bash
|
|
#! /bin/sh
|
||
|
|
|
||
|
|
set -e
|
||
|
|
|
||
|
|
if [ -d "build" ]
|
||
|
|
then
|
||
|
|
cd build
|
||
|
|
else
|
||
|
|
mkdir build
|
||
|
|
cd build
|
||
|
|
fi
|
||
|
|
|
||
|
|
cmake -DCMAKE_BUILD_TYPE=Debug ..
|
||
|
|
|
||
|
|
cmake --build .
|