all-subdir-cpp-files

Android : 2012. 11. 20. 18:16
반응형

출처 : http://cocos2d-x.org/boards/6/topics/5321

 

 

 

define all-cpp-files-under
$(patsubst ./%,%, \
  $(shell cd $(LOCAL_PATH) ; \
          find $(1) -name "*.cpp" -and -not -name ".*") \
 )
endef

define all-subdir-cpp-files
$(call all-cpp-files-under,.)
endef

LOCAL_SRC_FILES += $(call all-subdir-cpp-files)

 

 

Android.mk에

 

include $(call all-subdir-makefiles)

LOCAL_SRC_FILES := $(call all-subdir-java-files) $(call all-subdir-html-files)

 

 

이런것들이 있는데 왜 C CPP는 없는가 찾아봤더니

 

만들어서 쓰는 방법이 있었다.

반응형

'Android' 카테고리의 다른 글

Android Codename 안드로이드 코드네임  (0) 2013.01.31
Android Render Scrip 자료  (0) 2012.11.16
Timer cancel이 제대로 안되는 모양입니다.  (0) 2012.11.14
Posted by Real_G