mirror of
https://github.com/thelsing/knx.git
synced 2025-10-08 11:14:29 +02:00
12 lines
134 B
Bash
Executable File
12 lines
134 B
Bash
Executable File
#!/bin/bash
|
|
|
|
[ -d build ] || mkdir build
|
|
|
|
cd build
|
|
|
|
#create Makefile
|
|
cmake -DCMAKE_BUILD_TYPE=Debug ..
|
|
|
|
#Run make
|
|
cmake --build . -j4
|