root/trunk/thune/configure
| Revision 479, 267 bytes (checked in by krobillard, 15 months ago) | |
|---|---|
|
|
| Line | |
|---|---|
| 1 | #!/bin/bash |
| 2 | |
| 3 | if [ -n `which cmake` ] |
| 4 | then |
| 5 | echo "Building Makefile with cmake" |
| 6 | cmake . |
| 7 | exit |
| 8 | fi |
| 9 | |
| 10 | if [ -n `which m2` ] |
| 11 | then |
| 12 | echo "Building Makefile with m2" |
| 13 | m2 |
| 14 | exit |
| 15 | fi |
| 16 | |
| 17 | echo "Could not find cmake or m2." |
| 18 | echo "You must install one of these to build." |
| 19 | exit 1 |
Note: See TracBrowser
for help on using the browser.
