mirror of
https://github.com/taosdata/TDengine
synced 2026-05-24 10:09:01 +00:00
8 lines
154 B
Bash
Executable file
8 lines
154 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ ! -d debug ]; then
|
|
mkdir debug || echo -e "failed to make directory for build"
|
|
fi
|
|
|
|
cd debug && cmake .. -DBUILD_TOOLS=true && make
|
|
|