Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
*.o
*.so
.cache
.deps
build
compile_commands.json
results
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,11 @@ Installation
------------

Compiling and installing the `mest` extension
```bash
make PG_CONFIG=path_to_postgresql_installation/bin/pg_config
sudo make PG_CONFIG=path_to_postgresql_installation/bin/pg_config install
```
make
sudo make install
```
You may omit the PG_CONFIG overrides if running `pg_config` in your shell locates the correct PostgreSQL installation.

Enabling the `mest` extension
```sql
Expand Down
7 changes: 4 additions & 3 deletions contrib/mobilitydb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ Installation
------------
Compiling and installing the extension
```bash
make
sudo make install
make PG_CONFIG=path_to_postgresql_installation/bin/pg_config
sudo make PG_CONFIG=path_to_postgresql_installation/bin/pg_config install
```
You may omit the PG_CONFIG overrides if running `pg_config` in your shell locates the correct PostgreSQL installation.

Enabling the `mobilitydb_mest` extension
```sql
Expand Down Expand Up @@ -55,4 +56,4 @@ CREATE INDEX tbl_tgeompoint_mquadtree_opts_idx ON tbl_tgeompoint


Contact:
Maxime Schoemans <maxime.schoemans@ulb.be>
Maxime Schoemans <maxime.schoemans@ulb.be>
7 changes: 5 additions & 2 deletions contrib/postgis/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@ shared_preload_libraries = 'postgis-3'
Installation
------------
Compiling and installing the extension
```
```bash
mkdir build
cd build
cmake ..
make
sudo make install
```
Expand All @@ -35,4 +38,4 @@ CREATE INDEX trips_mgist_trip on trips using mgist(trip);
```

Contact:
Maxime Schoemans <maxime.schoemans@ulb.be>
Maxime Schoemans <maxime.schoemans@ulb.be>