mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-02-14 18:37:58 +00:00
Also introduces a separate constant for the sql directory, so that it can be put separately from the rest of the data if required.
17 lines
535 B
Python
Executable File
17 lines
535 B
Python
Executable File
#!/usr/bin/env python3
|
|
import sys
|
|
import os
|
|
|
|
sys.path.insert(1, '@CMAKE_SOURCE_DIR@')
|
|
|
|
os.environ['NOMINATIM_NOMINATIM_TOOL'] = os.path.abspath(__file__)
|
|
|
|
from nominatim import cli
|
|
|
|
exit(cli.nominatim(module_dir='@CMAKE_BINARY_DIR@/module',
|
|
osm2pgsql_path='@CMAKE_BINARY_DIR@/osm2pgsql/osm2pgsql',
|
|
phplib_dir='@CMAKE_SOURCE_DIR@/lib-php',
|
|
sqllib_dir='@CMAKE_SOURCE_DIR@/lib-sql',
|
|
data_dir='@CMAKE_SOURCE_DIR@',
|
|
phpcgi_path='@PHPCGI_BIN@'))
|