mirror of
https://github.com/taosdata/TDengine
synced 2026-05-24 10:09:01 +00:00
* docs: update readme with libgflags * docs: update readme with geos * docs: remove geometry docs * docs: update readme * docs: update readme for 3.0 * docs: update readme for build contrib on
8 lines
175 B
Bash
Executable file
8 lines
175 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 -DBUILD_CONTRIB=true && make
|
|
|