mirror of
https://github.com/gosticks/openpose.git
synced 2026-08-12 04:10:28 +00:00
16 lines
324 B
Bash
Executable File
16 lines
324 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Configure the project
|
|
|
|
BASEDIR=$(dirname $0)
|
|
source $BASEDIR/defaults.sh
|
|
|
|
echo "WITH_CMAKE = ${WITH_CMAKE}."
|
|
if [[ $WITH_CMAKE == true ]] ; then
|
|
echo "Running CMake configuration..."
|
|
source $BASEDIR/configure_cmake.sh
|
|
else
|
|
echo "Running Makefile configuration..."
|
|
source $BASEDIR/configure_make.sh
|
|
fi
|