X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/155d4c559114aeeb1c8634af7608d30f71bdc29b..5872b8123254e20c08a4192091b6e1cea7eaa69c:/CMakeLists.txt?ds=sidebyside diff --git a/CMakeLists.txt b/CMakeLists.txt index facd3f30..43721cc4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -141,6 +141,16 @@ if (BUILD_API) COMMAND ln -sf ${PROJECT_SOURCE_DIR}/website/${wp} ${PROJECT_BINARY_DIR}/website/ ) endforeach() + + add_custom_target(serve + php -S 127.0.0.1:8088 + WORKING_DIRECTORY ${PROJECT_BINARY_DIR}/website + ) + + add_custom_target(serve-global + php -S 0.0.0.0:8088 + WORKING_DIRECTORY ${PROJECT_BINARY_DIR}/website + ) endif() #-----------------------------------------------------------------------------