mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-24 14:32:29 +03:00
3cb6f3e460
So far the data directory constant has pointed to the source directory to be usable with different subdirectories. Now only the data subdirectory itself is being used with the constant, so point to the directory directly.
18 lines
601 B
Python
Executable File
18 lines
601 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@/data',
|
|
config_dir='@CMAKE_SOURCE_DIR@/settings',
|
|
phpcgi_path='@PHPCGI_BIN@'))
|