I have two questions relative to CMake
Assume that we have a variable ${MY_CURRENT_DIR}
that contains the path of a directory that contains several subdirectories : mydir1, mydir2 and mydir3. I want to detect these subdirectories and put their names into ${SUBDIRS}
(not the complete path of these directories, only their name). How to do that automatically ?
Assume that ${SUBDIRS}
contains "mydir1 mydir2 mydir3". How to replace
ADD_SUBDIRECTORY(mydir1)
ADD_SUBDIRECTORY(mydir2)
ADD_SUBDIRECTORY(mydir3)
by a loop over ${SUBDIRS}
?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…