mirror of
https://github.com/php/php-src.git
synced 2026-03-27 01:32:22 +01:00
10 lines
159 B
JavaScript
10 lines
159 B
JavaScript
// vim:ft=javascript
|
|
// $Id$
|
|
|
|
ARG_ENABLE('cli', 'Build CLI version of PHP', 'yes');
|
|
|
|
if (PHP_CLI == "yes") {
|
|
SAPI('cli', 'getopt.c php_cli.c', 'php.exe');
|
|
}
|
|
|