Changeset 791

Show
Ignore:
Timestamp:
03/20/07 13:32:55
Author:
robert
Message:

Added support for OSG_INC_DIR and OSG_LIB_DIR

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • osgProducer/trunk/Make/makedefs

    r784 r791  
    111111 
    112112PLUGIN_PREFIX  = osgdb_ 
    113 WRAPPER_PREFIX  = osgwrapper_ 
     113WRAPPER_PREFIX  = makosgwrapper_ 
    114114PLUGIN_EXT     = so 
    115115MAKEDIST       = echo "   === Distribution build is not implemented yet for $(OS)"; printf "\n" 
     
    130130ifneq ("$(PRODUCER_LIB_DIR)","") 
    131131LDFLAGS += -L$(PRODUCER_LIB_DIR) 
     132endif 
     133 
     134ifneq ("$(OSG_INC_DIR)","") 
     135INC += -I$(OSG_INC_DIR) 
     136endif 
     137 
     138ifneq ("$(OSG_LIB_DIR)","") 
     139LDFLAGS += -L$(OSG_LIB_DIR) 
    132140endif 
    133141