From aa17d70853cbde789c80e72e9fea8be2f02c05cb Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Wed, 19 Nov 2014 17:45:45 +0000 Subject: [PATCH] Removed configure script as it's no longer required as cmake . will now default to Release git-svn-id: http://svn.openscenegraph.org/osg/OpenSceneGraph/trunk@14490 16af8721-9629-0410-8352-f15c8da7e697 --- README.txt | 4 ++-- configure | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) delete mode 100755 configure diff --git a/README.txt b/README.txt index 400be1aed..31004a625 100644 --- a/README.txt +++ b/README.txt @@ -49,7 +49,7 @@ simply runs 'cmake . -DCMAKE_BUILD_TYPE=Release' to ensure that you get the best performance from your final libraries/applications. cd OpenSceneGraph - ./configure + cmake . make sudo make install @@ -62,7 +62,7 @@ directory alongside the OpenSceneGraph use: mkdir build cd build - cmake ../OpenSceneGraph -DCMAKE_BUILD_TYPE=Release + cmake ../OpenSceneGraph make sudo make install diff --git a/configure b/configure deleted file mode 100755 index 4fc3772ef..000000000 --- a/configure +++ /dev/null @@ -1 +0,0 @@ -cmake . -DCMAKE_BUILD_TYPE=Release $@