Home | History | Annotate | Download | only in MacCommon
      1 LOCAL_PATH := $(call my-dir)
      2 
      3 ifeq ($(HOST_OS),darwin)
      4 $(call emugl-begin-host-static-library,libMac_view)
      5 
      6 LIBMACVIEW_FRAMEWORKS := AppKit AudioToolbox AudioUnit
      7 LIBMACVIEW_PREFIX := -Wl,-framework,
      8 
      9 $(call emugl-export,LDLIBS,$(foreach _framework,$(LIBMACVIEW_FRAMEWORKS),$(LIBMACVIEW_PREFIX)$(_framework)))
     10 LOCAL_SRC_FILES := setup_gl.m
     11 LOCAL_CFLAGS += -g -O0
     12 $(call emugl-end-module)
     13 endif # HOST_OS == darwin
     14