#!/bin/bash
export LC_ALL=C

echo "This script downloads and builds source-level code dependencies, and configures the build directory with cmake."
echo "Takes one parameter : the source directory"

__DIR=`pwd`
__SRC=$1

cmake $__SRC

