Commented out the experimental V8 and Python plugins as these plugins only existed as a proof of concept test linkage with these dependenices, and have no functionality beyond this.

git-svn-id: http://svn.openscenegraph.org/osg/OpenSceneGraph/trunk@14678 16af8721-9629-0410-8352-f15c8da7e697
This commit is contained in:
Robert Osfield
2015-02-02 09:53:55 +00:00
parent a9804d7e19
commit bbb54cedc7
2 changed files with 11 additions and 8 deletions

View File

@@ -659,8 +659,9 @@ ELSE()
ENDIF()
ENDIF()
FIND_PACKAGE(V8)
FIND_PACKAGE(PythonLibs)
# V8 and Python plugins are tests for linking against these libraries but aren't functionality beyond this.
# FIND_PACKAGE(V8)
# FIND_PACKAGE(PythonLibs)
ENDIF()
IF(CMAKE_MAJOR_VERSION EQUAL 2 AND CMAKE_MINOR_VERSION LESS 8)

View File

@@ -276,13 +276,15 @@ IF ((LUA_LIBRARIES AND LUA_INCLUDE_DIR) OR (LUA_SOURCE_DIR AND LUA_INCLUDE_DIR)
ADD_SUBDIRECTORY(lua)
ENDIF()
IF (V8_FOUND)
ADD_SUBDIRECTORY(V8)
ENDIF()
IF (PYTHONLIBS_FOUND)
ADD_SUBDIRECTORY(python)
ENDIF()
# V8 and Python plugins are tests for linking against these libraries but aren't functionality beyond this.
# IF (V8_FOUND)
# ADD_SUBDIRECTORY(V8)
# ENDIF()
#
# IF (PYTHONLIBS_FOUND)
# ADD_SUBDIRECTORY(python)
# ENDIF()
####################################################
#