Arquivos
hhvm/configure
T
2010-08-02 22:31:23 -07:00

12 linhas
240 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 Relase).'
exit 2
fi
cmake "$@" .