diff options
Diffstat (limited to 'emulator/opengl/googletest.mk')
-rw-r--r-- | emulator/opengl/googletest.mk | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/emulator/opengl/googletest.mk b/emulator/opengl/googletest.mk index 8147874..7531394 100644 --- a/emulator/opengl/googletest.mk +++ b/emulator/opengl/googletest.mk @@ -30,14 +30,12 @@ $(call emugl-export,C_INCLUDES,$(LOCAL_PATH)/include) $(call emugl-export,LDLIBS,$(common_LDLIBS)) $(call emugl-end-module) -ifdef EMUGL_BUILD_64BITS - $(call emugl-begin-host64-static-library,lib64emugl_gtest) - LOCAL_SRC_FILES := $(common_SRC_FILES) - LOCAL_CFLAGS += $(common_CFLAGS) - LOCAL_C_INCLUDES += $(LOCAL_PATH)/include - LOCAL_CPP_EXTENSION := .cc - $(call emugl-export,C_INCLUDES,$(LOCAL_PATH)/include) - $(call emugl-export,CFLAGS,-m64) - $(call emugl-export,LDLIBS,$(common_LDLIBS) -m64) - $(call emugl-end-module) -endif # EMUGL_BUILD_64BITS +$(call emugl-begin-host64-static-library,lib64emugl_gtest) +LOCAL_SRC_FILES := $(common_SRC_FILES) +LOCAL_CFLAGS += $(common_CFLAGS) +LOCAL_C_INCLUDES += $(LOCAL_PATH)/include +LOCAL_CPP_EXTENSION := .cc +$(call emugl-export,C_INCLUDES,$(LOCAL_PATH)/include) +$(call emugl-export,LDLIBS,$(common_LDLIBS)) +$(call emugl-end-module) + |