There is a case-sensitive typo in the attachments/template/CMakeLists.txt file where list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/../cmake") should be list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/../CMake") (notice the "CMake" instead of "cmake" at the end of the path). This causes the build to fail on operating systems where the file paths are case-sensitive which is the case on, for example, Ubuntu, but not on Windows.
To that end the following PR has been opened.
There is a case-sensitive typo in the
attachments/template/CMakeLists.txtfile wherelist(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/../cmake")should belist(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/../CMake")(notice the "CMake" instead of "cmake" at the end of the path). This causes the build to fail on operating systems where the file paths are case-sensitive which is the case on, for example, Ubuntu, but not on Windows.To that end the following PR has been opened.