I want to find all .c files under a directory and add them all to SRC files to compile in cmake. How can I do this in CMakeList.txt.
for regular makefiles I can create
SPECIFIED_SRC_FILE = $(foreach d,$(SPECIFIED_SRC_DIRS),$(wildcard $(addprefix $(d)/*,*.c)))
but I couldn't get how to do something like this in CMakeList.txt.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…