docs: update readme for build contrib on (#22299)
* 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
This commit is contained in:
parent
0b0c6038e8
commit
1594005148
|
@ -175,7 +175,7 @@ cd TDengine
|
||||||
```bash
|
```bash
|
||||||
mkdir debug
|
mkdir debug
|
||||||
cd debug
|
cd debug
|
||||||
cmake .. -DBUILD_TOOLS=true
|
cmake .. -DBUILD_TOOLS=true -DBUILD_CONTRIB=true
|
||||||
make
|
make
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -183,7 +183,7 @@ It equals to execute following commands:
|
||||||
```bash
|
```bash
|
||||||
mkdir debug
|
mkdir debug
|
||||||
cd debug
|
cd debug
|
||||||
cmake .. -DBUILD_TOOLS=true
|
cmake .. -DBUILD_TOOLS=true -DBUILD_CONTRIB=true
|
||||||
make
|
make
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
2
build.sh
2
build.sh
|
@ -4,5 +4,5 @@ if [ ! -d debug ]; then
|
||||||
mkdir debug || echo -e "failed to make directory for build"
|
mkdir debug || echo -e "failed to make directory for build"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
cd debug && cmake .. -DBUILD_TOOLS=true && make
|
cd debug && cmake .. -DBUILD_TOOLS=true -DBUILD_CONTRIB=true && make
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue