19 lines
410 B
Makefile
19 lines
410 B
Makefile
|
LOCAL_PATH := $(call my-dir)
|
||
|
|
||
|
include $(CLEAR_VARS)
|
||
|
|
||
|
LOCAL_MODULE := sfml-example
|
||
|
|
||
|
LOCAL_SRC_FILES := main.cpp
|
||
|
|
||
|
LOCAL_SHARED_LIBRARIES := sfml-system
|
||
|
LOCAL_SHARED_LIBRARIES += sfml-window
|
||
|
LOCAL_SHARED_LIBRARIES += sfml-graphics
|
||
|
LOCAL_SHARED_LIBRARIES += sfml-audio
|
||
|
LOCAL_SHARED_LIBRARIES += sfml-network
|
||
|
LOCAL_WHOLE_STATIC_LIBRARIES := sfml-main
|
||
|
|
||
|
include $(BUILD_SHARED_LIBRARY)
|
||
|
|
||
|
$(call import-module,sfml)
|