file(GLOB) is discouraged in CMake as it doesn't automatically detect when new source files are added, requiring manual reconfiguration. Consider explicitly listing source files or using file(GLOB_RECURSE) with CMAKE_CONFIGURE_DEPENDS for b...
#146