mirror of
https://github.com/thelsing/knx.git
synced 2024-12-18 19:08:18 +01:00
12 lines
134 B
Bash
12 lines
134 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
[ -d build ] || mkdir build
|
||
|
|
||
|
cd build
|
||
|
|
||
|
#create Makefile
|
||
|
cmake -DCMAKE_BUILD_TYPE=Debug ..
|
||
|
|
||
|
#Run make
|
||
|
cmake --build . -j4
|