Advertisement
Guest User

Android Make

a guest
Oct 8th, 2018
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 0.66 KB | None | 0 0
  1. LOCAL_PATH := $(call my-dir)
  2.  
  3. include $(CLEAR_VARS)
  4.  
  5. LOCAL_MODULE    := ObEnginePlayerPrebuilt
  6. LOCAL_SRC_FILES  := libObEnginePlayer.a
  7.  
  8. include $(PREBUILT_STATIC_LIBRARY)
  9.  
  10. include $(CLEAR_VARS)
  11.  
  12. LOCAL_MODULE    := ObEngineAndroid
  13. LOCAL_SHARED_LIBRARIES += sfml-system-d
  14. LOCAL_SHARED_LIBRARIES += sfml-window-d
  15. LOCAL_SHARED_LIBRARIES += sfml-graphics-d
  16. LOCAL_SHARED_LIBRARIES += sfml-audio-d
  17. LOCAL_SHARED_LIBRARIES += sfml-network-d
  18. LOCAL_SHARED_LIBRARIES += sfml-activity-d
  19. LOCAL_SHARED_LIBRARIES += openal
  20. LOCAL_WHOLE_STATIC_LIBRARIES := sfml-main-d ObEnginePlayerPrebuilt
  21.  
  22. include $(BUILD_SHARED_LIBRARY)
  23.  
  24. $(call import-module,third_party/sfml)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement