Android.mk 527 B

1234567891011121314151617181920
  1. # Copyright (c) Facebook, Inc. and its affiliates.
  2. #
  3. # This source code is licensed under the MIT license found in the
  4. # LICENSE file in the root directory of this source tree.
  5. LOCAL_PATH := $(call my-dir)
  6. include $(CLEAR_VARS)
  7. LOCAL_MODULE := yogacore
  8. LOCAL_SRC_FILES := $(wildcard $(LOCAL_PATH)/yoga/*.cpp)
  9. LOCAL_SRC_FILES += $(wildcard $(LOCAL_PATH)/yoga/*/*.cpp)
  10. LOCAL_C_INCLUDES := $(LOCAL_PATH)
  11. LOCAL_EXPORT_C_INCLUDES := $(LOCAL_C_INCLUDES)
  12. LOCAL_CFLAGS := -fexceptions -frtti -O3
  13. include $(BUILD_STATIC_LIBRARY)