From cc64468b52d0ad99b7583e206b53dd6d583b4961 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Sun, 11 Mar 2007 13:21:48 +0000 Subject: [PATCH] Moved introspection build into optional compile section --- src/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 609f2b965..b07e02d89 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -4,7 +4,6 @@ SUBDIRS( osgDB osgUtil osgText - osgIntrospection osgGA osgManipulator osgSim @@ -20,7 +19,8 @@ IF (BUILD_OSG_PLUGINS) ADD_SUBDIRECTORY(osgPlugins) ENDIF(BUILD_OSG_PLUGINS) -OPTION(BUILD_OSG_WRAPPERS "Enable to build OSG Wrapper" OFF) +OPTION(BUILD_OSG_WRAPPERS "Enable to build Introspection and Wrappers" OFF) IF (BUILD_OSG_WRAPPERS) + ADD_SUBDIRECTORY(osgIntrospection) ADD_SUBDIRECTORY(osgWrappers) ENDIF(BUILD_OSG_WRAPPERS)