Hi,
I am trying to build the FFMPEG plugin for Android. I downloaded FFMPEG0.8.12
(Love) and created static libs. I downloaded the OSG3.0.1 and created build
directory. When I executed the cmake command then I am getting the following
warning
CMake Warning:
Manually-specified variables were not used by the project:
Code:
FFMPEG_LIBAVCODEC_INCLUDE_DIR
FFMPEG_LIBAVCODEC_LIBRARIES
FFMPEG_LIBAVDEVICE_INCLUDE_DIRS
FFMPEG_LIBAVDEVICE_LIBRARIES
FFMPEG_LIBAVFORMAT_INCLUDE_DIRS
FFMPEG_LIBAVFORMAT_LIBRARIES
FFMPEG_LIBAVUTIL_INCLUDE_DIRS
FFMPEG_LIBAVUTIL_LIBRARIES
FFMPEG_LIBSWSCALE_INCLUDE_DIRS
FFMPEG_LIBSWSCALE_LIBRARIES
FFMPEG_ROOT
the cmake command is
Code:
cmake .. -DOSG_BUILD_PLATFORM_ANDROID=ON -DDYNAMIC_OPENTHREADS=OFF
-DDYNAMIC_OPENSCENEGRAPH=OFF -DOSG_GL_DISPLAYLISTS_AVAILABLE=OFF
-DOSG_GL_MATRICES_AVAILABLE=ON -DOSG_GL_VERTEX_FUNCS_AVAILABLE=ON
-DOSG_GL_VERTEX_ARRAY_FUNCS_AVAILABLE=ON -DOSG_GL_FIXED_FUNCTION_AVAILABLE=ON
-DOSG_CPP_EXCEPTIONS_AVAILABLE=OFF -DOSG_GL1_AVAILABLE=OFF
-DFFMPEG_LIBAVCODEC_INCLUDE_DIR=/home/ttpl/Android/OSGSupport/ffmpeg/libavcodec/include
-DFFMPEG_LIBAVCODEC_LIBRARIES=/home/ttpl/Android/OSGSupport/ffmpeg/libavcodec
-DFFMPEG_LIBAVDEVICE_INCLUDE_DIRS=/home/ttpl/Android/OSGSupport/ffmpeg/libavdevice/include
-DFFMPEG_LIBAVDEVICE_LIBRARIES=/home/ttpl/Android/OSGSupport/ffmpeg/libavdevice
-DFFMPEG_LIBAVFORMAT_INCLUDE_DIRS=/home/ttpl/Android/OSGSupport/ffmpeg/libavformat/include
-DFFMPEG_LIBAVFORMAT_LIBRARIES=/home/ttpl/Android/OSGSupport/ffmpeg/libavformat
-DFFMPEG_LIBAVUTIL_INCLUDE_DIRS=/home/ttpl/Android/OSGSupport/ffmpeg/libavutil/include
-DFFMPEG_LIBAVUTIL_LIBRARIES=/home/ttpl/Android/OSGSuppo
rt/ffmpeg/libavutil
-DFFMPEG_LIBSWSCALE_INCLUDE_DIRS=/home/ttpl/Android/OSGSupport/ffmpeg/libswscale/include
-DFFMPEG_LIBSWSCALE_LIBRARIES=/home/ttpl/Android/OSGSupport/ffmpeg/libswscale
-DFFMPEG_ROOT=/home/ttpl/Android/OSGSupport/ffmpeg -DOSG_GL2_AVAILABLE=OFF
-DOSG_GL3_AVAILABLE=OFF -DOSG_GLES1_AVAILABLE=ON -DOSG_GLES2_AVAILABLE=OFF
-DJ=4
-DCMAKE_INSTALL_PREFIX=/home/ttpl/Android/OpenSceneGraph-3.0.1_GL1/osginstall
With this warning I build (make) and did "make install" but the final install
directory doen't contain ffmpeg plugin.
If I use CMake-gui then i am getting following config errors. I selected "Unix
Makefile" as the compiler.
Code:
Could NOT find OpenGL (missing: OPENGL_gl_LIBRARY)
Could NOT find LibXml2 (missing: LIBXML2_LIBRARIES LIBXML2_INCLUDE_DIR)
Could NOT find CURL (missing: CURL_LIBRARY CURL_INCLUDE_DIR)
CMake Warning at
/home/ttpl/ProgramTools/cmake-2.8.10.2-Linux-i386/share/cmake-2.8/Modules/FindITK.cmake:48
(find_package):
Could not find a package configuration file named "ITKConfig.cmake"
provided by package "ITK".
Add the installation prefix of "ITK" to CMAKE_PREFIX_PATH or set "ITK_DIR"
to a directory containing one of the above files. If "ITK" provides a
separate development package or SDK, be sure it has been installed.
Call Stack (most recent call first):
CMakeLists.txt:465 (FIND_PACKAGE)
Could NOT find OpenAL (missing: OPENAL_LIBRARY OPENAL_INCLUDE_DIR)
Could NOT find SDL (missing: SDL_LIBRARY SDL_INCLUDE_DIR)
checking for module 'cairo'
package 'cairo' not found
checking for module 'poppler-glib'
package 'poppler-glib' not found
checking for module 'librsvg-2.0'
package 'librsvg-2.0' not found
checking for module 'cairo'
package 'cairo' not found
checking for module 'gtk+-2.0'
package 'gtk+-2.0' not found
checking for module 'gtkglext-x11-1.0'
package 'gtkglext-x11-1.0' not found
Could NOT find Qt4 (missing: QT_QMAKE_EXECUTABLE QT_MOC_EXECUTABLE
QT_RCC_EXECUTABLE QT_UIC_EXECUTABLE QT_INCLUDE_DIR QT_LIBRARY_DIR
QT_QTCORE_LIBRARY)
Could NOT find Qt3 (missing: QT_QT_LIBRARY QT_INCLUDE_DIR QT_MOC_EXECUTABLE)
Could NOT find JPEG (missing: JPEG_LIBRARY JPEG_INCLUDE_DIR)
CMake Warning (dev) at
/home/ttpl/ProgramTools/cmake-2.8.10.2-Linux-i386/share/cmake-2.8/Modules/FindPNG.cmake:34
(find_package):
File
/home/ttpl/ProgramTools/cmake-2.8.10.2-Linux-i386/share/cmake-2.8/Modules/FindPNG.cmake
includes
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/CMakeModules/FindZLIB.cmake
(found via CMAKE_MODULE_PATH) which shadows
/home/ttpl/ProgramTools/cmake-2.8.10.2-Linux-i386/share/cmake-2.8/Modules/FindZLIB.cmake.
This may cause errors later on .
Policy CMP0017 is not set: Prefer files from the CMake module directory
when including from there. Run "cmake --help-policy CMP0017" for policy
details. Use the cmake_policy command to set the policy and suppress this
warning.
Call Stack (most recent call first):
CMakeLists.txt:535 (FIND_PACKAGE)
This warning is for project developers. Use -Wno-dev to suppress it.
Could NOT find PNG (missing: PNG_LIBRARY PNG_PNG_INCLUDE_DIR)
Could NOT find TIFF (missing: TIFF_LIBRARY TIFF_INCLUDE_DIR)
checking for module 'xrandr'
package 'xrandr' not found
CMake Error: The following variables are used in this project, but they are set
to NOTFOUND.
Please set them or make sure they are set and tested correctly in the CMake
files:
OPENGL_INCLUDE_DIR (ADVANCED)
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/OpenThreads/pthreads
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osg
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgDB
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgUtil
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgGA
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgText
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgViewer
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgAnimation
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgFX
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgManipulator
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgParticle
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPresentation
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgShadow
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgSim
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgTerrain
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgWidget
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgVolume
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgWrappers/serializers/osg
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgWrappers/serializers/osgAnimation
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgWrappers/serializers/osgFX
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgWrappers/serializers/osgManipulator
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgWrappers/serializers/osgParticle
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgWrappers/serializers/osgSim
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgWrappers/serializers/osgShadow
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgWrappers/serializers/osgTerrain
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgWrappers/serializers/osgText
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgWrappers/serializers/osgVolume
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgWrappers/deprecated-dotosg/osg
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgWrappers/deprecated-dotosg/osgParticle
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgWrappers/deprecated-dotosg/osgAnimation
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgWrappers/deprecated-dotosg/osgFX
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgWrappers/deprecated-dotosg/osgSim
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgWrappers/deprecated-dotosg/osgText
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgWrappers/deprecated-dotosg/osgViewer
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgWrappers/deprecated-dotosg/osgShadow
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgWrappers/deprecated-dotosg/osgTerrain
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgWrappers/deprecated-dotosg/osgVolume
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgWrappers/deprecated-dotosg/osgWidget
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/osga
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/rot
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/scale
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/trans
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/normals
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/revisions
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/view
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/shadow
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/terrain
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/osg
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/ive
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/cfg
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/glsl
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/rgb
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/bmp
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/pnm
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/dds
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/tga
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/hdr
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/dot
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/vtf
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/3dc
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/p3d
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/lwo
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/dw
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/bvh
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/x
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/dxf
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/OpenFlight
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/geo
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/obj
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/pic
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/stl
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/3ds
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/ac
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/pov
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/logo
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/lws
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/md2
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/osgtgz
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/tgz
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/shp
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/txf
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/bsp
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/mdl
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/ply
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/txp
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPlugins/pvr
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/applications/osgviewer
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/applications/osgarchive
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/applications/osgconv
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/applications/osgfilecache
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/applications/osgversion
used as include directory in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/applications/present3D
OPENGL_gl_LIBRARY (ADVANCED)
linked by target "osg" in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osg
linked by target "osgDB" in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgDB
linked by target "osgUtil" in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgUtil
linked by target "osgGA" in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgGA
linked by target "osgText" in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgText
linked by target "osgViewer" in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgViewer
linked by target "osgAnimation" in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgAnimation
linked by target "osgFX" in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgFX
linked by target "osgManipulator" in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgManipulator
linked by target "osgParticle" in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgParticle
linked by target "osgPresentation" in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgPresentation
linked by target "osgShadow" in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgShadow
linked by target "osgSim" in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgSim
linked by target "osgTerrain" in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgTerrain
linked by target "osgWidget" in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgWidget
linked by target "osgVolume" in directory
/home/ttpl/Android/OSG/ffmpeg_Plugin/OpenSceneGraph-3.0.1_1/src/osgVolume
Configuring incomplete, errors occurred!
Can you please help me how to solve this problem.
...
Thank you!
Cheers,
Koduri
------------------
Read this topic online here:
http://forum.openscenegraph.org/viewtopic.php?p=52238#52238
_______________________________________________
osg-users mailing list
[email protected]
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org