TDengine/build.sh

9 lines
175 B
Bash
Raw Normal View History

2022-08-08 08:43:07 +00:00
#!/bin/bash
if [ ! -d debug ]; then
mkdir debug || echo -e "failed to make directory for build"
fi
cd debug && cmake .. -DBUILD_TOOLS=true -DBUILD_CONTRIB=true && make
2022-08-08 08:43:07 +00:00