From 20e6ec7b23b587082508738035dc83e48bb6e478 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Fri, 6 Jun 2008 16:45:07 +0000 Subject: [PATCH] From Jean-Sebastien Guay, "The new osgscreencapture example was being installed to bin instead of to share/OpenSceneGraph/bin, this is because the CMakeLists.txt used SETUP_APPLICATION instead of SETUP_EXAMPLE. Corrected CMakeLists.txt attached. " --- examples/osgscreencapture/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/osgscreencapture/CMakeLists.txt b/examples/osgscreencapture/CMakeLists.txt index 4109ff3c7..cea15ba1f 100644 --- a/examples/osgscreencapture/CMakeLists.txt +++ b/examples/osgscreencapture/CMakeLists.txt @@ -1,4 +1,4 @@ SET(TARGET_SRC osgscreencapture.cpp ) #### end var setup ### -SETUP_APPLICATION(osgscreencapture) +SETUP_EXAMPLE(osgscreencapture)