+# PHP
+#-----------------------------------------------------------------------------
+
+# Setting PHP binary variable as to command line (prevailing) or auto detect
+
+if (BUILD_API OR BUILD_IMPORTER)
+ if (NOT PHP_BIN)
+ find_program (PHP_BIN php)
+ endif()
+ # sanity check if PHP binary exists
+ if (NOT EXISTS ${PHP_BIN})
+ message(FATAL_ERROR "PHP binary not found. Install php or provide location with -DPHP_BIN=/path/php ")
+ endif()
+ message (STATUS "Using PHP binary " ${PHP_BIN})
+endif()
+
+#-----------------------------------------------------------------------------
+# import scripts and utilities (importer only)
+#-----------------------------------------------------------------------------
+
+if (BUILD_IMPORTER)
+ set(CUSTOMSCRIPTS
+ utils/check_import_finished.php
+ utils/country_languages.php
+ utils/importWikipedia.php
+ utils/export.php
+ utils/query.php
+ utils/setup.php
+ utils/specialphrases.php
+ utils/update.php
+ utils/warm.php
+ )
+
+ foreach (script_source ${CUSTOMSCRIPTS})
+ configure_file(${PROJECT_SOURCE_DIR}/cmake/script.tmpl
+ ${PROJECT_BINARY_DIR}/${script_source})
+ endforeach()
+endif()
+
+#-----------------------------------------------------------------------------
+# webserver scripts (API only)