Added missing files

This commit is contained in:
Robert Osfield 2004-12-15 04:49:05 +00:00
parent 88234ea31f
commit 901ca9ee5c
3 changed files with 35 additions and 0 deletions

15
Make/cygwin_wrapper_def Normal file
View File

@ -0,0 +1,15 @@
#
# blessed are those who try to make Windows behave like it should ...
#
ifeq ($(OS),CYGWIN)
TARGET_BASENAME := $(WRAPPER_PREFIX)$(TARGET_BASENAME)
WRAPPER_PREFIX := cyg
endif
ifeq ($(OS),MINGW)
TARGET_BASENAME := $(WRAPPER_PREFIX)$(TARGET_BASENAME)
WRAPPER_PREFIX := lib
endif

View File

@ -0,0 +1,10 @@
#include <osgIntrospection/ReflectionMacros>
#include <osgIntrospection/TypedMethodInfo>
#include <osgIntrospection/Attributes>
#include <osg/Vec3>
using namespace osgIntrospection;
// simple reflectors for types that are considered 'atomic'
STD_VALUE_REFLECTOR(osg::Vec3)

View File

@ -0,0 +1,10 @@
#include <osgIntrospection/ReflectionMacros>
#include <osgIntrospection/TypedMethodInfo>
#include <osgIntrospection/Attributes>
#include <osg/Vec4>
using namespace osgIntrospection;
// simple reflectors for types that are considered 'atomic'
STD_VALUE_REFLECTOR(osg::Vec4)