From b777956d2b1d2f64d19271f0deb800e6411743a1 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Sat, 26 May 2007 15:55:26 +0000 Subject: [PATCH] Added a basic configure script to allow the setting of Release build by default. --- README.txt | 2 +- configure | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100755 configure diff --git a/README.txt b/README.txt index 4a4c700b1..c81211ff2 100644 --- a/README.txt +++ b/README.txt @@ -39,7 +39,7 @@ Under unices (i.e. Linux, IRIX, Solaris, Free-BSD, HP-Ux, AIX, OSX) use the cmake or ccmake commandline utils: cd OpenSceneGraph - ccmake . + ./configure make sudo make install diff --git a/configure b/configure new file mode 100755 index 000000000..f652d4a2d --- /dev/null +++ b/configure @@ -0,0 +1 @@ +cmake . -DCMAKE_BUILD_TYPE=Release