Last active
December 10, 2022 14:31
-
-
Save darkdukey/9402013c953ff57c73ba to your computer and use it in GitHub Desktop.
NDK build include all the files under a directory
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#traverse all the directory and subdirectory | |
define walk | |
$(wildcard $(1)) $(foreach e, $(wildcard $(1)/*), $(call walk, $(e))) | |
endef | |
#find all the file recursively under jni/ | |
ALLFILES = $(call walk, $(LOCAL_PATH)) | |
FILE_LIST := $(filter %.cpp, $(ALLFILES)) | |
LOCAL_SRC_FILES := $(FILE_LIST:$(LOCAL_PATH)/%=%) |
Awesome little piece of code... Saved me from having to concatenate 95 .cpp files!
THANKS!
you can use: folder_name/*.cpp for include all .......cpp files in folder
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Awesome little piece of code... Saved me from having to concatenate 95 .cpp files!
THANKS!