root/trunk/thune/configure

Revision 479, 267 bytes (checked in by krobillard, 15 months ago)

Added configure script.

  • Property svn:executable set to *
Line 
1#!/bin/bash
2
3if [ -n `which cmake` ]
4then
5  echo "Building Makefile with cmake"
6  cmake .
7  exit
8fi
9
10if [ -n `which m2` ]
11then
12  echo "Building Makefile with m2"
13  m2
14  exit
15fi
16
17echo "Could not find cmake or m2."
18echo "You must install one of these to build."
19exit 1
Note: See TracBrowser for help on using the browser.