# Search for all source files in the current directory
# and save the names to the variable DIR_Config_SRCS
aux_source_directory(. DIR_Config_SRCS)

# Generate Link Library
add_library(Config ${DIR_Config_SRCS})
target_link_libraries(Config PUBLIC pico_stdlib)