Alan W. Irwin wrote: > Could CMAKE_MODULE_PATH be treated as a colon-separate list of paths that are > searched one after another? That would solve the common modules issue for us. It is already a list: set(CMAKE_MODULE_PATH /some/path /some/other/path) list(APPEND CMAKE_MODULE_PATH /some/third/path) -Brad