浏览代码

cmake: Provide a clear error

- No folder with module_name found
- No CMakeLists.txt file found in said folder
Xenofon Karamanos 1 月之前
父节点
当前提交
ba693314e4
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3 1
      src/modules/CMakeLists.txt

+ 3 - 1
src/modules/CMakeLists.txt

@@ -126,7 +126,9 @@ function(add_module_group group_name group_modules)
         endif()
 
       else()
-        message(FATAL_ERROR "Module directory ${module_path} does not exist.")
+        message(
+          FATAL_ERROR "Module directory ${module_path} does not exist or CMakeLists.txt is missing."
+        )
       endif()
     endif()
   endforeach()