bdd04bef60
osgarchive osgconv osgdem osgversion osgviewer into applications directory. Leaving them in the examples directory as well, for now. Made examples optional via the make COMPILE_EXAMPLES=yes option Added static lib and static plugin build support.
10 lines
125 B
C++
10 lines
125 B
C++
#include <stdio.h>
|
|
#include <osg/Version>
|
|
|
|
|
|
int main( int, char **)
|
|
{
|
|
printf( "%s\n", osgGetVersion() );
|
|
return 0;
|
|
}
|