I have the next snippet on a CMake based project
set(Headers
    ./include/MyLib/main.hpp
)
set(Sources
    src/main.cpp
)
add_library(${This} STATIC ${Headers} ${Sources})
How can I indicate to recursively include all the interface files under the:
- ./include/MyLib/{ /* File name here */ }.ixx
and all the source files under the
- src/{ /* File name here */ }.cpp
 
    