2ff6d3ca00
Summary: Fixed typos Reviewed By: @scannell Pulled By: @scannell Test Plan: - php -l and checkModule -
12 linhas
241 B
Bash
Arquivo Executável
12 linhas
241 B
Bash
Arquivo Executável
#!/bin/sh
|
|
|
|
if [ "$1" = '--help' ] || [ "$1" = '-h' ]; then
|
|
echo 'usage: ./configure -Dvariable=argument ...\n'
|
|
echo 'Variables: '
|
|
echo ' CMAKE_BUILD_TYPE=Debug|Release Sets build type (default Release).'
|
|
|
|
exit 2
|
|
fi
|
|
|
|
cmake "$@" .
|