Added missing files
This commit is contained in:
parent
88234ea31f
commit
901ca9ee5c
15
Make/cygwin_wrapper_def
Normal file
15
Make/cygwin_wrapper_def
Normal 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
|
||||
|
10
src/osgWrappers/osg/Vec3.cpp
Normal file
10
src/osgWrappers/osg/Vec3.cpp
Normal 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)
|
10
src/osgWrappers/osg/Vec4.cpp
Normal file
10
src/osgWrappers/osg/Vec4.cpp
Normal 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)
|
Loading…
Reference in New Issue
Block a user